Documentation
¶
Overview ¶
Package filesystem provides a MetricSet implementation that fetches metrics for each of the mounted file systems.
An example event looks as following:
{
"@timestamp": "2016-05-25T20:51:36.813Z",
"beat": {
"hostname": "host.example.com",
"name": "host.example.com"
},
"metricset": {
"module": "system",
"name": "filesystem",
"rtt": 55
},
"system": {
"filesystem": {
"avail": 13838553088,
"device_name": "/dev/disk1",
"files": 60981246,
"free": 14100697088,
"free_files": 3378553,
"mount_point": "/",
"total": 249779191808,
"used": 235678494720,
"used_p": 0.9435
}
},
"type": "metricsets"
}
Index ¶
- func AddFileSystemUsedPercentage(f *FileSystemStat)
- func Filter(in []sigar.FileSystem, p Predicate) []sigar.FileSystem
- func GetFileSystemList() ([]sigar.FileSystem, error)
- func GetFilesystemEvent(fsStat *FileSystemStat) common.MapStr
- func New(base mb.BaseMetricSet) (mb.MetricSet, error)
- type Config
- type FileSystemStat
- type MetricSet
- type Predicate
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AddFileSystemUsedPercentage ¶
func AddFileSystemUsedPercentage(f *FileSystemStat)
func Filter ¶
func Filter(in []sigar.FileSystem, p Predicate) []sigar.FileSystem
Filter returns a filtered list of filesystems. The in parameter is used as the backing storage for the returned slice and is therefore modified in this operation.
func GetFileSystemList ¶
func GetFileSystemList() ([]sigar.FileSystem, error)
func GetFilesystemEvent ¶
func GetFilesystemEvent(fsStat *FileSystemStat) common.MapStr
Types ¶
type FileSystemStat ¶
type FileSystemStat struct {
sigar.FileSystemUsage
DevName string `json:"device_name"`
Mount string `json:"mount_point"`
UsedPercent float64 `json:"used_p"`
// contains filtered or unexported fields
}
func GetFileSystemStat ¶
func GetFileSystemStat(fs sigar.FileSystem) (*FileSystemStat, error)
type MetricSet ¶
type MetricSet struct {
mb.BaseMetricSet
// contains filtered or unexported fields
}
MetricSet for fetching filesystem metrics.
type Predicate ¶
type Predicate func(*sigar.FileSystem) bool
Predicate is a function predicate for use with filesystems. It returns true if the argument matches the predicate.
func BuildTypeFilter ¶
func BuildTypeFilter(ignoreType ...string) Predicate
BuildTypeFilter returns a predicate that returns false if the given filesystem has a type that matches one of the ignoreType values.
Click to show internal directories.
Click to hide internal directories.