io.prometheus.metrics.model.registry.PrometheusScrapeRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmx_prometheus_httpserver Show documentation
Show all versions of jmx_prometheus_httpserver Show documentation
See https://github.com/prometheus/jmx_exporter/blob/master/README.md
package io.prometheus.metrics.model.registry;
/**
* Infos extracted from the request received by the endpoint
*/
public interface PrometheusScrapeRequest {
/**
* Absolute path of the HTTP request.
*/
String getRequestPath();
/**
* See {@code jakarta.servlet.ServletRequest.getParameterValues(String name)}
*/
String[] getParameterValues(String name);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy