Skip to content

Instantly share code, notes, and snippets.

View rajanim's full-sized avatar

Rajani Maski rajanim

  • New York
View GitHub Profile
@rajanim
rajanim / prom_metrix_to_csv.py
Created February 19, 2021 16:04 — forked from aneeshkp/prom_metrix_to_csv.py
Export data from Prometheus to csv file
import csv
import requests
import sys
def GetMetrixNames(url):
response = requests.get('{0}/api/v1/label/__name__/values'.format(url))
names = response.json()['data']
#Return metrix names
return names