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