代码拉取完成,页面将自动刷新
// +build darwin,cgo freebsd linux windows
package diskio
import (
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/metricbeat/mb"
"github.com/elastic/beats/metricbeat/mb/parse"
"github.com/pkg/errors"
"github.com/shirou/gopsutil/disk"
)
func init() {
if err := mb.Registry.AddMetricSet("system", "diskio", New, parse.EmptyHostParser); err != nil {
panic(err)
}
}
// MetricSet for fetching system disk IO metrics.
type MetricSet struct {
mb.BaseMetricSet
statistics *DiskIOStat
}
// New is a mb.MetricSetFactory that returns a new MetricSet.
func New(base mb.BaseMetricSet) (mb.MetricSet, error) {
ms := &MetricSet{
BaseMetricSet: base,
statistics: NewDiskIOStat(),
}
return ms, nil
}
// Fetch fetches disk IO metrics from the OS.
func (m *MetricSet) Fetch() ([]common.MapStr, error) {
stats, err := disk.IOCounters()
if err != nil {
return nil, errors.Wrap(err, "disk io counters")
}
// open a sampling means sample the current cpu counter
m.statistics.OpenSampling()
events := make([]common.MapStr, 0, len(stats))
for _, counters := range stats {
event := common.MapStr{
"name": counters.Name,
"read": common.MapStr{
"count": counters.ReadCount,
"time": counters.ReadTime,
"bytes": counters.ReadBytes,
},
"write": common.MapStr{
"count": counters.WriteCount,
"time": counters.WriteTime,
"bytes": counters.WriteBytes,
},
"io": common.MapStr{
"time": counters.IoTime,
},
}
extraMetrics, err := m.statistics.CalIOStatistics(counters)
if err == nil {
event["iostat"] = common.MapStr{
"read": common.MapStr{
"request": common.MapStr{
"merges_per_sec": extraMetrics.ReadRequestMergeCountPerSec,
"per_sec": extraMetrics.ReadRequestCountPerSec,
},
"per_sec": common.MapStr{
"bytes": extraMetrics.ReadBytesPerSec,
},
},
"write": common.MapStr{
"request": common.MapStr{
"merges_per_sec": extraMetrics.WriteRequestMergeCountPerSec,
"per_sec": extraMetrics.WriteRequestCountPerSec,
},
"per_sec": common.MapStr{
"bytes": extraMetrics.WriteBytesPerSec,
},
},
"queue": common.MapStr{
"avg_size": extraMetrics.AvgQueueSize,
},
"request": common.MapStr{
"avg_size": extraMetrics.AvgRequestSize,
},
"await": extraMetrics.AvgAwaitTime,
"service_time": extraMetrics.AvgServiceTime,
"busy": extraMetrics.BusyPct,
}
}
events = append(events, event)
if counters.SerialNumber != "" {
event["serial_number"] = counters.SerialNumber
}
}
// open a sampling means store the last cpu counter
m.statistics.CloseSampling()
return events, nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。