+ fix missing empty unit (#3384)

This commit is contained in:
Simon Bomm 2022-01-06 17:50:38 +01:00 committed by GitHub
parent 08b8292287
commit 8e246a6c3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 0 deletions

View File

@ -33,6 +33,7 @@ sub get_metrics_mapping {
'output' => 'Blocked by firewall ',
'label' => 'connection-blocked',
'nlabel' => 'sqldatabase.connection.blocked.count',
'unit' => '',
'min' => '0',
'max' => ''
},
@ -40,6 +41,7 @@ sub get_metrics_mapping {
'output' => 'Connection failed ',
'label' => 'connection-failed',
'nlabel' => 'sqldatabase.connection.failed.count',
'unit' => '',
'min' => '0',
'max' => ''
},
@ -47,6 +49,7 @@ sub get_metrics_mapping {
'output' => 'Connection successful ',
'label' => 'connection-successful',
'nlabel' => 'sqldatabase.connection.successful.count',
'unit' => '',
'min' => '0',
'max' => ''
}

View File

@ -33,6 +33,7 @@ sub get_metrics_mapping {
'output' => 'Deadlocks ',
'label' => 'deadlocks',
'nlabel' => 'sqldatabase.deadlocks.count',
'unit' => '',
'min' => '0',
'max' => ''
}

View File

@ -33,6 +33,7 @@ sub get_metrics_mapping {
'output' => 'Sessions ',
'label' => 'sessions',
'nlabel' => 'sqldatabase.sessions.count',
'unit' => '',
'min' => '0',
'max' => ''
}

View File

@ -33,6 +33,7 @@ sub get_metrics_mapping {
'output' => 'Workers ',
'label' => 'workers',
'nlabel' => 'sqldatabase.workers.count',
'unit' => '',
'min' => '0',
'max' => ''
}