query runs a matcher query against the querier and fully expands its data.
(t testing.TB, q storage.Querier, matchers ...*labels.Matcher)
| 144 | |
| 145 | // query runs a matcher query against the querier and fully expands its data. |
| 146 | func query(t testing.TB, q storage.Querier, matchers ...*labels.Matcher) map[string][]chunks.Sample { |
| 147 | return queryHelper(t, q, true, matchers...) |
| 148 | } |
| 149 | |
| 150 | // queryWithoutReplacingNaNs runs a matcher query against the querier and fully expands its data. |
| 151 | func queryWithoutReplacingNaNs(t testing.TB, q storage.Querier, matchers ...*labels.Matcher) map[string][]chunks.Sample { |
no test coverage detected
searching dependent graphs…