-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
310 lines (277 loc) · 6.71 KB
/
main.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
package main
import (
"encoding/json"
"fmt"
"os"
"runtime"
"syscall"
"time"
"github.com/c9s/goprocinfo/linux"
)
type segment struct {
Text string `json:"full_text"`
Color string `json:"color,omitempty"`
Urgent bool `json:"urgent"`
SeperateAfter bool `json:"separator"`
}
const (
red = "#C83737"
orange = "#DA7D3E"
green = "#A5CB76"
white = "#E6E6E6"
)
func main() {
// i3bar expects an infinitely expanding JSON array as output from this
// program. First we tell i3bar which protocol we want to use
println(`{"version":1}`)
// Then initialize the array
println("[")
// And print an empty array so we can start the next line with a comma while
// perserving valid JSON syntax
println("[]")
// == Recurring variables ==
// Used for measuring the duration of information gathering. We'll subtract
// the difference from the final sleep duration
var startTime time.Time
var sleepDur = time.Second // Interval at which the status gets printed
var err error
var segments []segment
var out []byte
var color string
// Disk
var statfs = &syscall.Statfs_t{}
var dused, dtotal uint64
var dpercent float64
// Memory
var meminfo *linux.MemInfo
var mused, mtotal uint64
var mpercent float64
// Network
var netstat *linux.NetStat
var oldRx, newRx, oldTx, newTx uint64
// CPU usage
var stat *linux.Stat
var oldBusy, newBusy, newIdle, oldIdle uint64
var cpercent float64
// System load
var loadAvg *linux.LoadAvg
for {
startTime = time.Now()
// Clear the bar
segments = []segment{}
// Disk
err = syscall.Statfs("/", statfs)
if err != nil {
segments = append(segments, segment{
Text: "fs: " + err.Error(),
Color: red,
SeperateAfter: true,
})
} else {
dused = (statfs.Blocks - statfs.Bavail) * uint64(statfs.Bsize)
dtotal = statfs.Blocks * uint64(statfs.Bsize)
dpercent = float64(dused) / float64(dtotal)
if dpercent > .9 {
color = red
} else if dpercent > .75 {
color = orange
} else {
color = green
}
segments = append(segments,
segment{
Text: "fs",
Color: white,
SeperateAfter: false,
},
segment{
Text: fmt.Sprintf(
"%9s / %-9s",
formatData(dused),
formatData(dtotal),
),
Color: color,
SeperateAfter: true,
},
)
}
// Memory
meminfo, err = linux.ReadMemInfo("/proc/meminfo")
if err != nil {
segments = append(segments, segment{
Text: "mem: " + err.Error(),
Color: red,
SeperateAfter: true,
})
} else {
mused = (meminfo.MemTotal * 1024) - (meminfo.MemAvailable * 1024)
mtotal = meminfo.MemTotal * 1024
mpercent = float64(mused) / float64(mtotal)
if mpercent > .9 {
color = red
} else if mpercent > .75 {
color = orange
} else {
color = green
}
segments = append(segments,
segment{
Text: "mem",
Color: white,
SeperateAfter: false,
},
segment{
Text: fmt.Sprintf(
"%9s / %-9s",
formatData((meminfo.MemTotal*1024)-(meminfo.MemAvailable*1024)),
formatData(meminfo.MemTotal*1024),
),
Color: color,
SeperateAfter: true,
},
)
}
// Network speed
netstat, err = linux.ReadNetStat("/proc/net/netstat")
if err != nil {
segments = append(segments, segment{
Text: "net: " + err.Error(),
Color: red,
SeperateAfter: true,
})
} else {
newRx = netstat.InOctets
newTx = netstat.OutOctets
segments = append(segments,
segment{
Text: "net",
Color: white,
SeperateAfter: false,
},
segment{
Text: fmt.Sprintf("↓ %s ↑ %s",
formatData((newRx-oldRx)/uint64(sleepDur.Seconds()))+"/s",
formatData((newTx-oldTx)/uint64(sleepDur.Seconds()))+"/s",
),
Color: white,
SeperateAfter: true,
},
)
oldRx = newRx
oldTx = newTx
}
// CPU usage
stat, err = linux.ReadStat("/proc/stat")
if err != nil {
segments = append(segments, segment{
Text: "cpu: " + err.Error(),
Color: red,
SeperateAfter: true,
})
} else {
newBusy = (stat.CPUStatAll.User +
stat.CPUStatAll.Nice +
stat.CPUStatAll.System +
stat.CPUStatAll.IOWait) - oldBusy
newIdle = stat.CPUStatAll.Idle - oldIdle
cpercent = float64(newBusy) / float64(newBusy+newIdle)
if cpercent > .9 {
color = red
} else if cpercent > .75 {
color = orange
} else {
color = green
}
segments = append(segments,
segment{
Text: "cpu",
Color: white,
SeperateAfter: false,
},
segment{
Text: fmt.Sprintf("%5.1f%%", cpercent*100),
Color: color,
SeperateAfter: true,
},
)
oldBusy = stat.CPUStatAll.User +
stat.CPUStatAll.Nice +
stat.CPUStatAll.System +
stat.CPUStatAll.IOWait
oldIdle = stat.CPUStatAll.Idle
}
// System load
loadAvg, err = linux.ReadLoadAvg("/proc/loadavg")
if err != nil {
segments = append(segments, segment{
Text: "load: " + err.Error(),
Color: red,
SeperateAfter: true,
})
} else {
if loadAvg.Last1Min > float64(runtime.NumCPU()) {
color = red
} else if loadAvg.Last1Min > float64(runtime.NumCPU())/2 {
color = orange
} else {
color = green
}
segments = append(segments,
segment{
Text: "load",
Color: white,
SeperateAfter: false,
},
segment{
Text: fmt.Sprintf(
"%.2f %.2f %.2f",
loadAvg.Last1Min, loadAvg.Last5Min, loadAvg.Last15Min,
),
Color: color,
SeperateAfter: true,
},
)
}
// Clock
segments = append(segments, segment{
Text: time.Now().Format("2006-01-02 15:04:05"),
Color: white,
SeperateAfter: true,
})
// Print the array
out, err = json.Marshal(segments)
if err != nil {
println(`,[{"full_text":"error: ` + err.Error() + `"}]`)
}
println("," + string(out))
time.Sleep(sleepDur - time.Since(startTime))
}
}
// For some reason the default println prints to stderr, so we override it
func println(s string) {
os.Stdout.Write(append([]byte(s), byte('\n')))
}
// FormatData converts a raw amount of bytes to an easily readable string
func formatData(v uint64) string {
var fmtSize = func(n float64, u string) string {
var f string
if n > 100 {
f = "%5.1f"
} else if n > 10 {
f = "%5.2f"
} else {
f = "%5.3f"
}
return fmt.Sprintf(f+" "+u, n)
}
if v > 1e12 {
return fmtSize(float64(v)/1e12, "TB")
} else if v > 1e9 {
return fmtSize(float64(v)/1e9, "GB")
} else if v > 1e6 {
return fmtSize(float64(v)/1e6, "MB")
} else if v > 1e3 {
return fmtSize(float64(v)/1e3, "kB")
}
return fmt.Sprintf("%5d B", v)
}