forked from open-source-labs/Docketeer
-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
types.d.ts
172 lines (154 loc) · 3.17 KB
/
types.d.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
import { ScanObject, EverythingObj, Top3Obj } from './ui/ui-types';
export interface ContainerPS {
ID: string;
Command?: string;
CreatedAt?: string;
Image?: string;
Labels?: string | string[];
LocalVolumes?: string;
Mounts?: string;
Names?: string;
Networks?: string | string[];
Ports?: string | string[];
RunningFor?: string;
Size?: string;
State?: string; //tells if running
Status?: string;
}
export interface LogObject {
timeStamp: string;
logMsg: string;
containerName: string;
}
export interface VolumeType{
Availability?: string;
Driver?: string;
Group?: string;
Labels?: string;
Links?: string;
Mountpoint?: string;
Name: string;
Scope?: string;
Size?: string;
Status?: string;
}
export interface NetworkType{
CreatedAt?: string;
Driver: string;
ID: string;
IPv6?: string;
Internal?: string;
Labels?: string;
Name: string;
Scope?: string;
}
export interface NetworkContainerType extends ContainerPS{
Name: string;
EndpointID: string;
MacAddress: string;
IPv4Address: string;
IPv6Address: string;
containerName?: string;
containerIP?: string;
}
export interface NetworkInspect{
Name: string;
Id: string;
Created?: string;
Scope?: string;
Driver?: string;
EnableIPv6?: boolean;
IPAM?: {
Driver?: string;
Options: object;
Config?: { Subnet?: string, Gateway?: string }[];
}
Internal?: boolean;
Attachable?: boolean;
Ingress?: boolean;
ConfigFrom?: { Network?: string };
ConfigOnly?: boolean;
Containers: {
[key: string]: NetworkContainerType;
}
Options?: object;
Labels?: object;
}
export interface ImageType {
Containers?: string;
CreatedAt?: string;
CreatedSince?: string;
Digest?: string;
ID: string;
Repository: string;
SharedSize?: string;
ScanName?: string;
Size: string;
Tag: string;
UniqueSize?: string;
VirtualSize?: string;
Vulnerabilities?: ScanObject;
Top3Obj?: Top3Obj;
Everything?: EverythingObj;
}
export interface ImageCardProps {
imgObj: ImageType;
key: number;
runImageAlert: (Image: ImageType) => void;
removeImageAlert: (Image: ImageType) => void;
index: number;
reset: boolean;
setReset: (boolean) => void;
isHovered: string;
highContrast: boolean;
}
export interface NetworkAndContainer{
networkName: string;
containers: NetworkContainerType[];
}
// export interface PromDataSource {
// id?: number;
// type_of?: string;
// type_of_id: number;
// url: string;
// endpoint: string;
// ssh_key?: string;
// match?: string;
// jobname: string;
// }
export interface PromDataSourceType {
id?: number;
jobname?: string;
url?: string;
endpoint?: string;
type_of?: string;
match?: string;
}
export interface EndpointType {
id: number;
type_of: string;
}
export interface Metric {
metricName: string;
metricQuery: string;
}
export interface MetricsEntry{
date?: string;
diskSpace?: string;
swap?: string;
CPU_usage?: string;
available_Memory?: string;
memory?: string;
}
export interface MetricsDB{
'Date': string;
'Disk Space': string;
'Memory': string;
'Swap': string;
'CPU Usage': string;
'Available Memory': string;
}
export interface metricData {
status: string;
data: object;
}