You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
==== Which fields are used for the metrics on the Infrastructue home page?
91
+
92
+
The metrics listed below are provided by the Beats Shippers. Each system type requires their corresponding identity field to be in the same event document:
93
+
94
+
* Hosts require `host.name`
95
+
* Docker containers require `container.id`
96
+
* Kibernetes pods require `kibernetes.pod.uid`
97
+
98
+
99
+
[float]
100
+
===== Host Metrics
101
+
102
+
*CPU Usage*:: Average of `system.cpu.user.pct` added to the average of `system.cpu.system.pct` divided by `system.cpu.cores`
103
+
104
+
*Memory Usage*:: Average of `system.memory.actual.used.pct`
105
+
106
+
*Load*:: Average of `system.load.5`
107
+
108
+
*Inbound Traffic*:: Derivative of the max of `system.netowrk.in.bytes` scaled to a 1 second rate
109
+
110
+
*Outbound Traffic*:: Derivative of the max of `system.netowrk.out.bytes` scaled to a 1 second rate
111
+
112
+
*Log Rate*:: Derivative of the cumulative sum of the document count scaled to a 1 second rate.
113
+
This metric relies on the same indices as the logs.
114
+
115
+
116
+
[float]
117
+
===== Docker Container Metrics
118
+
119
+
*CPU Usage*:: Average of `docker.cpu.total.pct`
120
+
121
+
*Memory Usage*:: Average of `docker.memory.usage.pct`
122
+
123
+
*Inbound Traffic*:: Derivative of the max of `docker.network.in.bytes` scaled to a 1 second rate
124
+
125
+
*Outbound Traffic*:: Derivative of the max of `docker.network.out.bytes` scaled to a 1 second rate
126
+
127
+
128
+
[float]
129
+
===== Kubernetes Pod Metrics
130
+
131
+
*CPU Usage*:: Average of `kubernetes.pod.cpu.usage.node.pct`
132
+
133
+
*Memory Usage*:: Average of `kubernetes.pod.memory.usage.pct`
134
+
135
+
*Inbound Traffic*:: Derivative of the max of `kubernetes.pod.network.rx.bytes` scaled to a 1 second rate
136
+
137
+
*Outbound Traffic*:: Derivative of the max of `kubernetes.pod.network.tx.bytes` scaled to a 1 second rate
138
+
139
+
140
+
141
+
[float]
142
+
==== More about container monitoring
90
143
91
144
If you're monitoring containers, you can use autodiscover to automatically apply
92
145
configuration changes in response to changes in your containers. To learn how,
0 commit comments