Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mem_available is deprecated and not used anymore #12

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion dbaas_prometheus_exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ def format(self, record):
'load_average': Gauge('dbaas_load_average', 'Load average (5 min)', ['database','node']),
'mem_usage': Gauge('dbaas_memory_usage', 'Memory usage percentage', ['database','node']),
'diskio_writes': Gauge('dbaas_disk_io_writes', 'Disk IOPS (writes)', ['database','node']),
'mem_available': Gauge('dbaas_memory_available', 'Memory available percentage', ['database','node']),
'cpu_usage': Gauge('dbaas_cpu_usage', 'CPU usage percentage', ['database','node']),
'diskio_read': Gauge('dbaas_disk_io_reads', 'Disk IOPS (reads)', ['database','node']),
'net_send': Gauge('dbaas_network_transmit_bytes_per_sec', 'Network transmit (bytes/s)', ['database','node']),
Expand Down