You are looking at documentation for an older release.
Not what you want? See the
current release documentation.
System Network Metricsetedit
The System network
metricset provides network IO metrics collected from the
operating system. One event is created for each network interface.
By default metrics are reported from all network interfaces. To select which
interfaces metrics are reported from, use the interfaces
configuration
option. The value must be an array of interface names. For example:
metricbeat.modules: - module: system metricsets: [network] interfaces: [eth0]
This metricset is available on:
- Darwin
- Linux
- Windows
- FreeBSD
Fieldsedit
For a description of each field in the metricset, see the exported fields section.
Here is an example document generated by this metricset:
{ "@timestamp": "2016-05-23T08:05:34.853Z", "beat": { "hostname": "host.example.com", "name": "host.example.com" }, "metricset": { "host": "localhost", "module": "system", "name": "network", "rtt": 115 }, "system": { "network": { "in": { "bytes": 0, "dropped": 0, "errors": 0, "packets": 0 }, "name": "sit0", "out": { "bytes": 0, "dropped": 0, "errors": 0, "packets": 0 } } }, "type": "metricsets" }