Skip to content

Commit 8450419

Browse files
committed
attempt to tix cgroups v2 exception
1 parent afca2fb commit 8450419

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/main/java/org/compuscene/metrics/prometheus/PrometheusMetricsCollector.java

+8-1
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,14 @@ private void updateOsMetrics(OsStats os) {
10041004
catalog.setNodeGauge("os_cgroup_cpu_cfs_stat_time_throttled", cgroup.getCpuStat().getTimeThrottledNanos() / 1E9);
10051005
catalog.setNodeGauge("os_cgroup_cpu_cfs_period", cgroup.getCpuCfsPeriodMicros() / 1E6);
10061006
catalog.setNodeGauge("os_cgroup_cpu_cfs_quota", cgroup.getCpuCfsQuotaMicros() / 1E6);
1007-
catalog.setNodeGauge("os_cgroup_memory_limit", Double.parseDouble(cgroup.getMemoryLimitInBytes()));
1007+
// limit in CGroupsV2 limit can be a string - "max" so in that case we give it os_mem_total value
1008+
double limit;
1009+
try {
1010+
limit = Double.parseDouble(cgroup.getMemoryLimitInBytes());
1011+
} catch (NumberFormatException e) {
1012+
limit = os.getMem().getTotal().getBytes();
1013+
}
1014+
catalog.setNodeGauge("os_cgroup_memory_limit", limit);
10081015
catalog.setNodeGauge("os_cgroup_memory_usage", Double.parseDouble(cgroup.getMemoryUsageInBytes()));
10091016
}
10101017
}

0 commit comments

Comments
 (0)