PrometheusQuery represents parameters for querying Prometheus
| 9 | |
| 10 | // PrometheusQuery represents parameters for querying Prometheus |
| 11 | type PrometheusQuery struct { |
| 12 | host string |
| 13 | port int |
| 14 | client *http.Client |
| 15 | userAgentVersion string |
| 16 | } |
| 17 | |
| 18 | type PrometheusQueryFetcher interface { |
| 19 | Fetch(query string) (*VectorQueryResponse, error) |
nothing calls this directly
no outgoing calls
no test coverage detected