Files
openstack-helm-images/prometheus-openstack-exporter/exporter/nova_services.py
Gage Hugo e9b2ff0c74 Remove OSH Authors copyright
The current copyright refers to a non-existent group
"openstack helm authors" with often out-of-date references that
are confusing when adding a new file to the repo.

This change removes all references to this copyright by the
non-existent group and any blank lines underneath.

Change-Id: Ic78d29883364378cc14b11402f16d99dcec1fc96
2020-05-07 02:11:23 +00:00

86 lines
3.3 KiB
Python

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
from collections import Counter, defaultdict
from prometheus_client import CollectorRegistry, generate_latest, Gauge
from base import OSBase
logger = logging.getLogger(__name__)
class NovaServiceStats(OSBase):
""" Class to report the statistics on Nova services.
status per service broken down by state
"""
def build_cache_data(self):
# Get information of the state per service
# State can be: 'up', 'down' or 'disabled'
aggregated_workers = defaultdict(Counter)
stats = self.osclient.get_workers('nova')
for worker in stats:
service = worker['service']
state = worker['state']
aggregated_workers[service][state] += 1
for service in aggregated_workers:
total = sum(aggregated_workers[service].values())
for state in self.osclient.states:
prct = 0
if total > 0:
prct = (100.0 * aggregated_workers[service][state]) / total
stats.append({
'stat_name': "services_{}_{}_percent".format(service, state),
'stat_value': prct,
'state': state,
'service': service
})
stats.append({
'stat_name': "services_{}_{}_total".format(service, state),
'stat_value': aggregated_workers[service][state],
'state': state,
'service': service
})
return stats
def get_cache_key(self):
return "nova_services_stats"
def get_stats(self):
registry = CollectorRegistry()
labels = ['region', 'host', 'service', 'state']
services_stats_cache = self.get_cache_data()
for services_stat in services_stats_cache:
try:
stat_gauge = Gauge(
self.gauge_name_sanitize(
services_stat['stat_name']),
'Openstack Nova Service statistic',
labels,
registry=registry)
label_values = [self.osclient.region,
services_stat.get('host', ''),
services_stat.get('service', ''),
services_stat.get('state', '')]
stat_gauge.labels(*label_values).set(services_stat['stat_value'])
except ValueError:
logger.debug('Unchanged value for stat {} already present in '
'nova services registry for host {}; ignoring.'
.format(services_stat['stat_name'],
services_stat['host']))
return generate_latest(registry)