{{ t('PromQL help and example queries') }}
{{ t('Linux memory usage in percent') }}
node_memory_MemAvailable_bytes{uuid="{{ uuid }}"} / node_memory_MemTotal_bytes{uuid="{{ uuid }}"} * 100
{{ t('Average MB/s network traffic (transmit) over the last 2 minutes') }}
rate(node_network_transmit_bytes_total{uuid="{{ uuid }}", device="enp0s8"}[2m]) / 1024 / 1024
{{ t('Average Mbit/s network traffic (transmit) over the last 2 minutes') }}
rate(node_network_transmit_bytes_total{uuid="{{ uuid }}", device="enp0s8"}[2m]) * 8 / 1000 / 1000
{{ t('Average Mbit/s network traffic (transmit) of all network interfaces over the last 2 minutes') }}
sum(rate(node_network_transmit_bytes_total{uuid="{{ uuid }}"}[2m])) * 8 / 1000 / 1000
{{ t('Average MB/s written to disk sda over the last 2 minutes') }}
rate(node_disk_written_bytes_total{uuid="{{ uuid }}", device="sda"}[2m]) / 1024 / 1024
{{ t('Windows CPU usage in percentage') }}
100 - rate(windows_cpu_time_total{uuid="{{ uuid }}",mode="idle"}[5m]) * 100
{{ t('Windows Disk usage in percentage') }}
100 - (windows_logical_disk_free_bytes{uuid="{{ uuid }}", volume="C:"} / 1024 / 1024) / (windows_logical_disk_size_bytes{uuid="{{ uuid }}", volume="C:"} / 1024 / 1024) * 100
{{ t('Windows memory usage in percentage') }}
windows_os_physical_memory_free_bytes{uuid="{{ uuid }}"} /windows_cs_physical_memory_bytes{uuid="{{ uuid }}"} * 100