summaryrefslogtreecommitdiffstats
path: root/docker-api/src/main/java/com/yahoo/vespa/hosted/dockerapi/ContainerStats.java
diff options
context:
space:
mode:
Diffstat (limited to 'docker-api/src/main/java/com/yahoo/vespa/hosted/dockerapi/ContainerStats.java')
-rw-r--r--docker-api/src/main/java/com/yahoo/vespa/hosted/dockerapi/ContainerStats.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/docker-api/src/main/java/com/yahoo/vespa/hosted/dockerapi/ContainerStats.java b/docker-api/src/main/java/com/yahoo/vespa/hosted/dockerapi/ContainerStats.java
index abb89c3baf9..7fbe47b011c 100644
--- a/docker-api/src/main/java/com/yahoo/vespa/hosted/dockerapi/ContainerStats.java
+++ b/docker-api/src/main/java/com/yahoo/vespa/hosted/dockerapi/ContainerStats.java
@@ -96,6 +96,8 @@ public class ContainerStats {
private final long totalUsage;
private final long usageInKernelMode;
private final long throttledTime;
+ private final long throttlingActivePeriods;
+ private final long throttledPeriods;
public CpuStats(CpuStatsConfig cpuStats) {
// Added in 1.27
@@ -104,13 +106,23 @@ public class ContainerStats {
this.totalUsage = cpuStats.getCpuUsage().getTotalUsage();
this.usageInKernelMode = cpuStats.getCpuUsage().getUsageInKernelmode();
this.throttledTime = cpuStats.getThrottlingData().getThrottledTime();
+ this.throttlingActivePeriods = cpuStats.getThrottlingData().getPeriods();
+ this.throttledPeriods = cpuStats.getThrottlingData().getThrottledPeriods();
}
public int getOnlineCpus() { return this.onlineCpus; }
public long getSystemCpuUsage() { return this.systemCpuUsage; }
public long getTotalUsage() { return totalUsage; }
public long getUsageInKernelMode() { return usageInKernelMode; }
+
+ /** Total CPU time processes in this container were throttled for */
public long getThrottledTime() { return throttledTime; }
+
+ /** Number of periods when throttling enabled for this container */
+ public long getThrottlingActivePeriods() { return throttlingActivePeriods; }
+
+ /** Number of periods this container hit the throttling limit */
+ public long getThrottledPeriods() { return throttledPeriods; }
}
// For testing only, create ContainerStats from JSON returned by docker daemon stats API