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?
97
+
98
+
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:
99
+
100
+
* Hosts require `host.name`
101
+
* Docker containers require `container.id`
102
+
* Kibernetes pods require `kibernetes.pod.uid`
103
+
104
+
105
+
[float]
106
+
===== Host Metrics
107
+
108
+
*CPU Usage*:: Average of `system.cpu.user.pct` added to the average of `system.cpu.system.pct` divided by `system.cpu.cores`
109
+
110
+
*Memory Usage*:: Average of `system.memory.actual.used.pct`
111
+
112
+
*Load*:: Average of `system.load.5`
113
+
114
+
*Inbound Traffic*:: Derivative of the max of `system.netowrk.in.bytes` scaled to a 1 second rate
115
+
116
+
*Outbound Traffic*:: Derivative of the max of `system.netowrk.out.bytes` scaled to a 1 second rate
117
+
118
+
*Log Rate*:: Derivative of the cumulative sum of the document count scaled to a 1 second rate.
119
+
This metric relies on the same indices as the logs.
120
+
121
+
122
+
[float]
123
+
===== Docker Container Metrics
124
+
125
+
*CPU Usage*:: Average of `docker.cpu.total.pct`
126
+
127
+
*Memory Usage*:: Average of `docker.memory.usage.pct`
128
+
129
+
*Inbound Traffic*:: Derivative of the max of `docker.network.in.bytes` scaled to a 1 second rate
130
+
131
+
*Outbound Traffic*:: Derivative of the max of `docker.network.out.bytes` scaled to a 1 second rate
132
+
133
+
134
+
[float]
135
+
===== Kubernetes Pod Metrics
136
+
137
+
*CPU Usage*:: Average of `kubernetes.pod.cpu.usage.node.pct`
138
+
139
+
*Memory Usage*:: Average of `kubernetes.pod.memory.usage.pct`
140
+
141
+
*Inbound Traffic*:: Derivative of the max of `kubernetes.pod.network.rx.bytes` scaled to a 1 second rate
142
+
143
+
*Outbound Traffic*:: Derivative of the max of `kubernetes.pod.network.tx.bytes` scaled to a 1 second rate
0 commit comments