| 265 | } |
| 266 | |
| 267 | int64_t JvmMetricCache::GetCounterMetric( |
| 268 | int64_t(*accessor)(const TGetJvmMemoryMetricsResponse&)) { |
| 269 | GrabMetricsIfNecessary(); |
| 270 | shared_lock<shared_mutex> shared_l(lock_); |
| 271 | return accessor(last_response_); |
| 272 | } |
| 273 | |
| 274 | int64_t JvmMetricCache::GetPoolMetric(const std::string& mempool_name, |
| 275 | JvmMemoryMetricType type) { |