| 144 | } |
| 145 | |
| 146 | type PrometheusRequest struct { |
| 147 | Request |
| 148 | Time int64 |
| 149 | Start int64 |
| 150 | End int64 |
| 151 | Step int64 |
| 152 | Timeout time.Duration |
| 153 | Query string |
| 154 | Path string |
| 155 | Headers http.Header |
| 156 | Stats string |
| 157 | CachingOptions CachingOptions |
| 158 | LogicalPlan logicalplan.Plan |
| 159 | } |
| 160 | |
| 161 | func (m *PrometheusRequest) GetPath() string { |
| 162 | if m != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected