List label values
GET
/v1/prometheus/label/{label_name}/values
const url = 'https://example.com/v1/prometheus/label/example/values';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/v1/prometheus/label/example/values \ --header 'Authorization: Bearer <token>'Return values for a specific Prometheus label.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”label_name
required
string
Responses
Section titled “Responses”No response body