package disk import ( "fmt" "strings" "github.com/influxdata/telegraf" "github.com/influxdata/telegraf/plugins/inputs" "github.com/influxdata/telegraf/plugins/inputs/system" ) type DiskStats struct { ps system.PS // Legacy support LegacyMountPoints []string `toml:"mountpoints"` MountPoints []string `toml:"mount_points"` IgnoreFS []string `toml:"ignore_fs"` Log telegraf.Logger `toml:"-"` } func (ds *DiskStats) Description() string { return "Read metrics about disk usage by mount point" } var diskSampleConfig = ` ## By default stats will be gathered for all mount points. ## Set mount_points will restrict the stats to only the specified mount points. # mount_points = ["/"] ## Ignore mount points by filesystem type. ignore_fs = ["tmpfs", "devtmpfs", "devfs", "iso9660", "overlay", "aufs", "squashfs"] ` func (ds *DiskStats) SampleConfig() string { return diskSampleConfig } func (ds *DiskStats) Init() error { // Legacy support: if len(ds.LegacyMountPoints) != 0 { ds.MountPoints = ds.LegacyMountPoints } ps := system.NewSystemPS() ps.Log = ds.Log ds.ps = ps return nil } func (ds *DiskStats) Gather(acc telegraf.Accumulator) error { disks, partitions, err := ds.ps.DiskUsage(ds.MountPoints, ds.IgnoreFS) if err != nil { return fmt.Errorf("error getting disk usage info: %s", err) } for i, du := range disks { if du.Total == 0 { // Skip dummy filesystem (procfs, cgroupfs, ...) continue } mountOpts := MountOptions(partitions[i].Opts) device := partitions[i].Device if partitions[i].Source != "" { device = partitions[i].Source } tags := map[string]string{ "path": du.Path, "device": strings.Replace(device, "/dev/", "", -1), "fstype": du.Fstype, "mode": mountOpts.Mode(), } var usedPercent float64 if du.Used+du.Free > 0 { usedPercent = float64(du.Used) / (float64(du.Used) + float64(du.Free)) * 100 } fields := map[string]interface{}{ "total": du.Total, "free": du.Free, "used": du.Used, "used_percent": usedPercent, "inodes_total": du.InodesTotal, "inodes_free": du.InodesFree, "inodes_used": du.InodesUsed, } acc.AddGauge("disk", fields, tags) } return nil } type MountOptions []string func (opts MountOptions) Mode() string { if opts.exists("rw") { return "rw" } else if opts.exists("ro") { return "ro" } else { return "unknown" } } func (opts MountOptions) exists(opt string) bool { for _, o := range opts { if o == opt { return true } } return false } func init() { inputs.Add("disk", func() telegraf.Input { return &DiskStats{} }) }