forked from cloudfoundry/gosigar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sigar_interface.go
434 lines (376 loc) · 7.92 KB
/
sigar_interface.go
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
package sigar
import (
"errors"
"fmt"
"net"
"time"
)
type Sigar interface {
CollectCpuStats(collectionInterval time.Duration) (<-chan Cpu, chan<- struct{})
GetLoadAverage() (LoadAverage, error)
GetMem() (Mem, error)
GetSwap() (Swap, error)
GetFileSystemUsage(string) (FileSystemUsage, error)
GetSystemInfo() (SystemInfo, error)
GetSystemDistribution() (SystemDistribution, error)
}
var ErrNotImplemented error = errors.New("Collection not implemented for this operating system")
// Simple Get() that returns an error
type Getter interface {
Get() error
}
type Cpu struct {
User uint64
Nice uint64
Sys uint64
Idle uint64
Wait uint64
Irq uint64
SoftIrq uint64
Stolen uint64
Guest uint64
}
func (cpu *Cpu) Total() uint64 {
return cpu.User + cpu.Nice + cpu.Sys + cpu.Idle +
cpu.Wait + cpu.Irq + cpu.SoftIrq + cpu.Stolen + cpu.Guest
}
func (cpu Cpu) Delta(other Cpu) Cpu {
return Cpu{
User: cpu.User - other.User,
Nice: cpu.Nice - other.Nice,
Sys: cpu.Sys - other.Sys,
Idle: cpu.Idle - other.Idle,
Wait: cpu.Wait - other.Wait,
Irq: cpu.Irq - other.Irq,
SoftIrq: cpu.SoftIrq - other.SoftIrq,
Stolen: cpu.Stolen - other.Stolen,
Guest: cpu.Guest - other.Guest,
}
}
type LoadAverage struct {
One, Five, Fifteen float64
}
type Uptime struct {
Length float64
}
type Mem struct {
Total uint64
Used uint64
Free uint64
ActualFree uint64
ActualUsed uint64
}
type Swap struct {
Total uint64
Used uint64
Free uint64
}
type CpuList struct {
List []Cpu
}
type FileSystem struct {
DirName string
DevName string
TypeName string
SysTypeName string
Options string
Flags uint32
}
type FileSystemList struct {
List []FileSystem
}
type FileSystemUsage struct {
Total uint64
Used uint64
Free uint64
Avail uint64
Files uint64
FreeFiles uint64
}
type NetProtoV4Stats struct {
IP IPStats
ICMP ICMPStats
TCP TCPStats
UDP UDPStats
}
type NetProtoV6Stats struct {
IP IPStats
ICMP ICMPStats
TCP TCPStats
UDP UDPStats
}
type IPStats struct {
InReceives uint64
InHdrErrors uint64
InAddrErrors uint64
ForwDatagrams uint64
InDelivers uint64
InDiscards uint64
InUnknownProtos uint64
OutRequests uint64
OutDiscards uint64
OutNoRoutes uint64
}
type ICMPStats struct {
InMsgs uint64
InErrors uint64
InDestUnreachs uint64
OutMsgs uint64
OutErrors uint64 // Not reported by snmp6
OutDestUnreachs uint64
}
type TCPStats struct {
ActiveOpens uint64
PassiveOpens uint64
AttemptFails uint64
EstabResets uint64
CurrEstab uint64 // Instantaneous value of currently established connections
InSegs uint64
OutSegs uint64
RetransSegs uint64
InErrs uint64
OutRsts uint64
}
type UDPStats struct {
InDatagrams uint64
OutDatagrams uint64
InErrors uint64
NoPorts uint64
RcvbufErrors uint64 // Not reported by snmp6
SndbufErrors uint64 // Not reported by snmp6
}
type NetIface struct {
Name string
MTU uint64
Mac string
LinkStatus string
SendBytes uint64
RecvBytes uint64
SendPackets uint64
RecvPackets uint64
SendCompressed uint64
RecvCompressed uint64
RecvMulticast uint64
SendErrors uint64
RecvErrors uint64
SendDropped uint64
RecvDropped uint64
SendFifoErrors uint64
RecvFifoErrors uint64
RecvFramingErrors uint64
SendCarrier uint64
SendCollisions uint64
}
type NetIfaceList struct {
List []NetIface
}
type NetConnProto int
const (
ConnProtoUdp = NetConnProto(iota + 1)
ConnProtoTcp
ConnProtoRaw
)
func (self NetConnProto) String() string {
switch self {
case ConnProtoUdp:
return "udp"
case ConnProtoTcp:
return "tcp"
case ConnProtoRaw:
return "raw"
}
return ""
}
type NetConnState int
const (
ConnStateEstablished = NetConnState(iota + 1)
ConnStateSynSent
ConnStateSynRecv
ConnStateFinWait1
ConnStateFinWait2
ConnStateTimeWait
ConnStateClose
ConnStateCloseWait
ConnStateLastAck
ConnStateListen
ConnStateClosing
)
func (self NetConnState) String() string {
switch self {
case ConnStateEstablished:
return "established"
case ConnStateSynSent:
return "syn_sent"
case ConnStateSynRecv:
return "syn_recv"
case ConnStateFinWait1:
return "fin_wait1"
case ConnStateFinWait2:
return "fin_wait2"
case ConnStateTimeWait:
return "time_wait"
case ConnStateClose:
return "close"
case ConnStateCloseWait:
return "close_wait"
case ConnStateLastAck:
return "last_ack"
case ConnStateListen:
return "listen"
case ConnStateClosing:
return "closing"
}
return ""
}
type NetConn struct {
LocalAddr net.IP
RemoteAddr net.IP
LocalPort uint64
RemotePort uint64
SendQueue uint64
RecvQueue uint64
Status NetConnState
Proto NetConnProto
Inode uint64
Pid int
ProcessName string
}
func (self NetConn) String() string {
str := ""
switch self.Status {
case ConnStateListen:
str = fmt.Sprintf("Listen %s %s:%d", self.Proto, self.LocalAddr, self.LocalPort)
default:
if self.RemoteAddr != nil {
str = fmt.Sprintf("%s %s:%d <-> %s:%d", self.Proto, self.LocalAddr, self.LocalPort, self.RemoteAddr, self.RemotePort)
} else {
// Some sockets (e.g. UDP) are technically not in the LISTEN state, but don't provide the remote address
str = fmt.Sprintf("%s %s:%d", self.Proto, self.LocalAddr, self.LocalPort)
}
}
if self.Pid != 0 && self.ProcessName != "" {
str += fmt.Sprintf(" by pid %d/%s", self.Pid, self.ProcessName)
} else if self.Pid != 0 {
str += fmt.Sprintf(" by pid %d", self.Pid)
}
return str
}
type NetTcpConnList struct {
List []NetConn
}
type NetUdpConnList struct {
List []NetConn
}
type NetRawConnList struct {
List []NetConn
}
type NetTcpV6ConnList struct {
List []NetConn
}
type NetUdpV6ConnList struct {
List []NetConn
}
type NetRawV6ConnList struct {
List []NetConn
}
type ProcessList struct {
List []Process
}
type Process struct {
ProcState
ProcIo
ProcMem
ProcTime
ProcArgs
ProcExe
}
type ProcList struct {
List []int
}
type RunState byte
const (
RunStateSleep = 'S'
RunStateRun = 'R'
RunStateStop = 'T'
RunStateZombie = 'Z'
RunStateIdle = 'D'
RunStateUnknown = '?'
)
type ProcState struct {
Name string
State RunState
Pid int
Ppid int
Tty int
Priority int
Nice int
Processor int
}
type ProcIo struct {
ReadBytes uint64
WriteBytes uint64
ReadOps uint64
WriteOps uint64
}
type ProcMem struct {
Size uint64
Resident uint64
Share uint64
MinorFaults uint64
MajorFaults uint64
PageFaults uint64
PageFileBytes uint64 // Currently only collected on Windows
}
type ProcTime struct {
CollectionTime time.Time
StartTime uint64 // Milliseconds since epoch
User uint64 // User time in milliseconds
Sys uint64 // System time in milliseconds
Total uint64 // Total time in milliseconds
// Not valid until after CalculateCpuPercent()
PercentUserTime uint64
PercentSysTime uint64
PercentTotalTime uint64
}
type ProcArgs struct {
List []string
}
type ProcExe struct {
Name string
Cwd string
Root string
}
type DiskList struct {
List map[string]DiskIo
}
type DiskIo struct {
ReadOps uint64
ReadBytes uint64
ReadTimeMs uint64
WriteOps uint64
WriteBytes uint64
WriteTimeMs uint64
IoTimeMs uint64
}
func (self DiskIo) Delta(other DiskIo) DiskIo {
return DiskIo{
ReadOps: self.ReadOps - other.ReadOps,
ReadBytes: self.ReadBytes - other.ReadBytes,
ReadTimeMs: self.ReadTimeMs - other.ReadTimeMs,
WriteOps: self.WriteOps - other.WriteOps,
WriteBytes: self.WriteBytes - other.WriteBytes,
WriteTimeMs: self.WriteTimeMs - other.WriteTimeMs,
IoTimeMs: self.IoTimeMs - other.IoTimeMs,
}
}
type SystemInfo struct {
Sysname string
Nodename string
Release string
Version string
Machine string
Domainname string
}
type SystemDistribution struct {
Description string
}