001package io.prometheus.metrics.model.registry;
002
003/** Infos extracted from the request received by the endpoint */
004public interface PrometheusScrapeRequest {
005
006  /** Absolute path of the HTTP request. */
007  String getRequestPath();
008
009  /** See {@code jakarta.servlet.ServletRequest.getParameterValues(String name)} */
010  String[] getParameterValues(String name);
011}