rawfile-localpv/metrics.py

13 lines
280 B
Python
Raw Normal View History

from prometheus_client.core import REGISTRY
2020-04-25 19:39:16 +00:00
from prometheus_client.exposition import start_http_server
class VolumeStatsCollector(object):
def collect(self):
return []
def expose_metrics():
REGISTRY.register(VolumeStatsCollector())
2020-04-25 19:39:16 +00:00
start_http_server(9100)