-
Notifications
You must be signed in to change notification settings - Fork 3
/
stat.go
210 lines (181 loc) · 6.01 KB
/
stat.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
package statKit
import (
"github.com/richelieu-yang/chimera/v3/src/core/cpuKit"
"github.com/richelieu-yang/chimera/v3/src/core/mathKit"
"github.com/richelieu-yang/chimera/v3/src/core/memoryKit"
"github.com/richelieu-yang/chimera/v3/src/core/osKit"
"github.com/richelieu-yang/chimera/v3/src/dataSizeKit"
"github.com/richelieu-yang/chimera/v3/src/diskKit"
"github.com/richelieu-yang/chimera/v3/src/log/logrusKit"
"github.com/richelieu-yang/chimera/v3/src/processKit"
"github.com/richelieu-yang/chimera/v3/src/serialize/json/jsonKit"
"github.com/sirupsen/logrus"
"os"
"runtime"
"sync"
)
type (
Stats struct {
Program *ProgramStats `json:"program"`
Machine *MachineStats `json:"machine"`
}
ProgramStats struct {
PID int `json:"pid"`
GoroutineCount int `json:"goroutineCount"`
Alloc string `json:"alloc"`
TotalAlloc string `json:"totalAlloc"`
Sys string `json:"sys"`
NumGC uint32 `json:"numGC"`
EnableGC bool `json:"enableGC"`
CpuUsagePercent float64 `json:"cpuUsagePercent"`
CpuUsagePercentError error `json:"cpuUsagePercentError,omitempty"`
}
MachineStats struct {
CpuUsagePercent float64 `json:"cpuUsagePercent"`
CpuUsagePercentError error `json:"cpuUsagePercentError,omitempty"`
DiskPath string `json:"diskPath,omitempty"`
DiskUsagePercent float64 `json:"diskUsagePercent,omitempty"`
DiskUsagePercentError error `json:"diskUsagePercentError,omitempty"`
// ProcessCount 进程数
ProcessCount int `json:"processCount,omitempty"`
ProcessCountError error `json:"processCountError,omitempty"`
// ProcessThreadCount 进程数(包括线程数)
ProcessThreadCount int `json:"processThreadCount,omitempty"`
ProcessThreadCountError error `json:"processThreadCountError,omitempty"`
MemoryStatsError error `json:"memoryStatsError,omitempty"`
Total string `json:"total,omitempty"`
Available string `json:"available,omitempty"`
Used string `json:"used,omitempty"`
UsedPercent float64 `json:"usedPercent,omitempty"`
Free string `json:"free,omitempty"`
MaxProcessThreadCountByUser int `json:"maxProcessThreadCountByUser,omitempty"`
MaxProcessThreadCountByUserError string `json:"maxProcessThreadCountByUserError,omitempty"`
PidMax int `json:"pidMax,omitempty"`
PidMaxError string `json:"pidMaxError,omitempty"`
ThreadsMax int `json:"threadsMax,omitempty"`
ThreadsMaxError string `json:"threadsMaxError,omitempty"`
MaxMapCount int `json:"maxMapCount,omitempty"`
MaxMapCountError string `json:"maxMapCountError,omitempty"`
}
)
// GetStats
/*
PS: 由于获取CPU使用率耗时较长,本函数内部使用 sync.WaitGroup.
*/
func GetStats() *Stats {
pStats := &ProgramStats{}
mStats := &MachineStats{}
rst := &Stats{
Program: pStats,
Machine: mStats,
}
var wg sync.WaitGroup
/* program */
wg.Add(1)
go func() {
defer wg.Done()
pStats.PID = os.Getpid()
pStats.GoroutineCount = runtime.NumGoroutine()
stats := memoryKit.GetProgramMemoryStats()
pStats.Alloc = dataSizeKit.ToReadableIecString(float64(stats.Alloc))
pStats.TotalAlloc = dataSizeKit.ToReadableIecString(float64(stats.TotalAlloc))
pStats.Sys = dataSizeKit.ToReadableIecString(float64(stats.Sys))
pStats.NumGC = stats.NumGC
pStats.EnableGC = stats.EnableGC
if usagePercent, err := cpuKit.GetProcessUsagePercent(int32(pStats.PID)); err != nil {
pStats.CpuUsagePercentError = err
} else {
pStats.CpuUsagePercent = mathKit.Round(usagePercent, 2)
}
}()
/* machine */
// (1) CPU
wg.Add(1)
go func() {
defer wg.Done()
usagePercent, err := cpuKit.GetUsagePercent()
if err != nil {
mStats.CpuUsagePercentError = err
} else {
mStats.CpuUsagePercent = mathKit.Round(usagePercent, 2)
}
}()
// (2) disk
wg.Add(1)
go func() {
defer wg.Done()
stats, err := diskKit.GetDiskUsageStats()
if err != nil {
mStats.DiskUsagePercentError = err
} else {
mStats.DiskPath = stats.Path
mStats.DiskUsagePercent = mathKit.Round(stats.UsedPercent, 2)
}
}()
// (3) others
wg.Add(1)
go func() {
defer wg.Done()
count, err := processKit.GetProcessCount()
if err != nil {
mStats.ProcessCountError = err
} else {
mStats.ProcessCount = count
}
count1, err := processKit.GetProcessThreadCount()
if err != nil {
mStats.ProcessThreadCountError = err
} else {
mStats.ProcessThreadCount = count1
}
stats, err := memoryKit.GetMachineMemoryStats()
if err != nil {
mStats.MemoryStatsError = err
} else {
mStats.Total = dataSizeKit.ToReadableIecString(float64(stats.Total))
mStats.Available = dataSizeKit.ToReadableIecString(float64(stats.Available))
mStats.Used = dataSizeKit.ToReadableIecString(float64(stats.Used))
mStats.UsedPercent = mathKit.Round(stats.UsedPercent, 2)
mStats.Free = dataSizeKit.ToReadableIecString(float64(stats.Free))
}
// ulimit -u
if tmp, err := osKit.GetMaxProcessThreadCountByUser(); err != nil {
mStats.MaxProcessThreadCountByUserError = err.Error()
} else {
mStats.MaxProcessThreadCountByUser = tmp
}
// kernel.pid_max
if tmp, err := osKit.GetPidMax(); err != nil {
mStats.PidMaxError = err.Error()
} else {
mStats.PidMax = tmp
}
// kernel.threads-max
if tmp, err := osKit.GetThreadsMax(); err != nil {
mStats.ThreadsMaxError = err.Error()
} else {
mStats.ThreadsMax = tmp
}
// vm.max_map_count
if tmp, err := osKit.GetMaxMapCount(); err != nil {
mStats.MaxMapCountError = err.Error()
} else {
mStats.MaxMapCount = tmp
}
}()
wg.Wait()
return rst
}
func PrintStats(logger *logrus.Logger) {
if logger == nil {
logger = logrus.StandardLogger()
}
stats := GetStats()
json, err := jsonKit.MarshalIndentToString(stats, "", " ")
if err != nil {
logger.WithError(err).Error("fail to print")
}
logrusKit.DisableQuoteTemporarily(logger, func(logger *logrus.Logger) {
logger.Infof("[CHIMERA] stats:\n%s", json)
})
}