@k8slens/extensions 5.3.1-git.a6763391ee.0 → 5.3.1-git.b3723de3ec.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -55,6 +55,8 @@ export interface IResourceMetrics<T extends IMetrics> {
55
55
  cpuUsage: T;
56
56
  memoryUsage: T;
57
57
  fsUsage: T;
58
+ fsWrites: T;
59
+ fsReads: T;
58
60
  networkReceive: T;
59
61
  networkTransmit: T;
60
62
  }
@@ -34,6 +34,8 @@ export interface IPodMetrics<T = IMetrics> {
34
34
  cpuUsage: T;
35
35
  memoryUsage: T;
36
36
  fsUsage: T;
37
+ fsWrites: T;
38
+ fsReads: T;
37
39
  networkReceive: T;
38
40
  networkTransmit: T;
39
41
  cpuRequests?: T;