forked from kubernetes-client/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetrics.ts
129 lines (109 loc) · 3.59 KB
/
metrics.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import request = require('request');
import { KubeConfig } from './config';
import { HttpError, ObjectSerializer } from './gen/api';
export interface Usage {
cpu: string;
memory: string;
}
export interface ContainerMetric {
name: string;
usage: Usage;
}
export interface PodMetric {
metadata: {
name: string;
namespace: string;
selfLink?: string;
creationTimestamp: string;
labels?: { [key: string]: string };
};
timestamp: string;
window: string;
containers: ContainerMetric[];
}
export interface NodeMetric {
metadata: {
name: string;
selfLink?: string;
creationTimestamp: string;
};
timestamp: string;
window: string;
usage: Usage;
}
export interface PodMetricsList {
kind: 'PodMetricsList';
apiVersion: 'metrics.k8s.io/v1beta1';
metadata: {
selfLink: string;
};
items: PodMetric[];
}
export interface NodeMetricsList {
kind: 'NodeMetricsList';
apiVersion: 'metrics.k8s.io/v1beta1';
metadata: {
selfLink: string;
};
items: NodeMetric[];
}
export interface SinglePodMetrics extends PodMetric {
kind: 'PodMetrics';
apiVersion: 'metrics.k8s.io/v1beta1';
}
export class Metrics {
private config: KubeConfig;
public constructor(config: KubeConfig) {
this.config = config;
}
public async getNodeMetrics(): Promise<NodeMetricsList> {
return this.metricsApiRequest<NodeMetricsList>('/apis/metrics.k8s.io/v1beta1/nodes');
}
public async getPodMetrics(namespace?: string): Promise<PodMetricsList>;
public async getPodMetrics(namespace: string, name: string): Promise<SinglePodMetrics>;
public async getPodMetrics(
namespace?: string,
name?: string,
): Promise<SinglePodMetrics | PodMetricsList> {
let path: string;
if (namespace !== undefined && namespace.length > 0 && name !== undefined && name.length > 0) {
path = `/apis/metrics.k8s.io/v1beta1/namespaces/${namespace}/pods/${name}`;
return this.metricsApiRequest<SinglePodMetrics>(path);
}
if (namespace !== undefined && namespace.length > 0) {
path = `/apis/metrics.k8s.io/v1beta1/namespaces/${namespace}/pods`;
} else {
path = '/apis/metrics.k8s.io/v1beta1/pods';
}
return this.metricsApiRequest<PodMetricsList>(path);
}
private async metricsApiRequest<T extends PodMetricsList | NodeMetricsList | SinglePodMetrics>(
path: string,
): Promise<T> {
const cluster = this.config.getCurrentCluster();
if (!cluster) {
throw new Error('No currently active cluster');
}
const requestOptions: request.Options = {
method: 'GET',
uri: cluster.server + path,
};
await this.config.applyToRequest(requestOptions);
return new Promise((resolve, reject) => {
const req = request(requestOptions, (error, response, body) => {
if (error) {
reject(error);
} else if (response.statusCode !== 200) {
try {
const deserializedBody = ObjectSerializer.deserialize(JSON.parse(body), 'V1Status');
reject(new HttpError(response, deserializedBody, response.statusCode));
} catch (e) {
reject(new HttpError(response, body, response.statusCode));
}
} else {
resolve(JSON.parse(body) as T);
}
});
});
}
}