-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdisk_unix_openbsd.go
47 lines (40 loc) · 1.54 KB
/
disk_unix_openbsd.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
//
//
// Tencent is pleased to support the open source community by making tRPC available.
//
// Copyright (C) 2023 THL A29 Limited, a Tencent company.
// All rights reserved.
//
// If you have downloaded a copy of the tRPC source code from Tencent,
// please note that tRPC source code is licensed under the Apache 2.0 License,
// A copy of the Apache 2.0 License is included in this file.
//
//
// The "syscall.Statfs_t" structure in OpenBSD is different from other Unix systems, and needs to be handled separately here.
// go:build openbsd
package runtime
import (
"syscall"
"trpc.group/trpc-go/trpc-go/metrics"
)
// getDiskUsage get disk usage metrics
func getDiskUsage(path string) {
fs := syscall.Statfs_t{}
err := syscall.Statfs(path, &fs)
if err != nil {
return
}
diskAll := float64(fs.F_blocks * uint64(fs.F_bsize))
diskFree := float64(fs.F_bfree * uint64(fs.F_bsize))
diskUsed := diskAll - diskFree
diskUsedFraction := diskUsed / diskAll
metrics.Gauge("trpc.DiskFree(GB)").Set(diskFree / float64(GB))
metrics.Gauge("trpc.DiskUsed(GB)").Set(diskUsed / float64(GB))
metrics.Gauge("trpc.DiskUsedFraction(%)").Set(diskUsedFraction)
// The following metrics names have the same meaning as above,
// Since Prometheus and ZhiYan-Platform do not support parentheses and percent signs
// in a metrics name, the following duplicate metrics names have been added.
metrics.Gauge("trpc.DiskFree_GB").Set(diskFree / float64(GB))
metrics.Gauge("trpc.DiskUsed_GB").Set(diskUsed / float64(GB))
metrics.Gauge("trpc.DiskUsedFraction").Set(diskUsedFraction)
}