File tree 1 file changed +8
-1
lines changed
src/main/java/org/compuscene/metrics/prometheus
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -1004,7 +1004,14 @@ private void updateOsMetrics(OsStats os) {
1004
1004
catalog .setNodeGauge ("os_cgroup_cpu_cfs_stat_time_throttled" , cgroup .getCpuStat ().getTimeThrottledNanos () / 1E9 );
1005
1005
catalog .setNodeGauge ("os_cgroup_cpu_cfs_period" , cgroup .getCpuCfsPeriodMicros () / 1E6 );
1006
1006
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 );
1008
1015
catalog .setNodeGauge ("os_cgroup_memory_usage" , Double .parseDouble (cgroup .getMemoryUsageInBytes ()));
1009
1016
}
1010
1017
}
You can’t perform that action at this time.
0 commit comments