Skip to content

Commit

Permalink
Fix file conflicts (#4421)
Browse files Browse the repository at this point in the history
Co-authored-by: DeDe Morton <[email protected]>
  • Loading branch information
mergify[bot] and dedemorton authored Oct 22, 2024
1 parent 7114f01 commit 574e240
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
Binary file modified docs/en/observability/images/metrics-overlay-containers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.*Overview*
====

The *Overview* tab displays key metrics about the selected container, such as CPU usage and memory usage.
The *Overview* tab displays key metrics about the selected container, such as CPU, memory, network, and disk usage.
The metrics shown may vary depending on the type of container you're monitoring.

Change the time range to view metrics over a specific period of time.
Expand Down
22 changes: 22 additions & 0 deletions docs/en/observability/monitor-infra/container-metrics.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,29 @@ These are the key metrics displayed for Docker containers.

| **Inbound Traffic (RX)** | Derivative of the maximum of `docker.network.in.bytes` scaled to a 1 second rate.

**Field Calculation:** `average(docker.network.inbound.bytes) * 8 / (max(metricset.period, kql='docker.network.inbound.bytes: *') / 1000)`

| **Outbound Traffic (TX)** | Derivative of the maximum of `docker.network.out.bytes` scaled to a 1 second rate.

**Field Calculation:** `average(docker.network.outbound.bytes) * 8 / (max(metricset.period, kql='docker.network.outbound.bytes: *') / 1000)`
|===

[discrete]
[[key-metrics-disk-network]]
=== Disk metrics

[options="header"]
|===
| Metric | Description

| **Disk Read IOPS** | Average count of read operations from the device per second.

**Field Calculation:** `counter_rate(max(docker.diskio.read.ops), kql='docker.diskio.read.ops: *')`

| **Disk Write IOPS** | Average count of write operations from the device per second.

**Field Calculation:** `counter_rate(max(docker.diskio.write.ops), kql='docker.diskio.write.ops: *')`

|===

[discrete]
Expand Down

0 comments on commit 574e240

Please sign in to comment.