| 30 | /// A single remote read query. |
| 31 | #[derive(Clone, PartialEq, prost::Message)] |
| 32 | pub struct Query { |
| 33 | #[prost(int64, tag = "1")] |
| 34 | pub start_timestamp_ms: i64, |
| 35 | #[prost(int64, tag = "2")] |
| 36 | pub end_timestamp_ms: i64, |
| 37 | #[prost(message, repeated, tag = "3")] |
| 38 | pub matchers: Vec<LabelMatcher>, |
| 39 | } |
| 40 | |
| 41 | /// Result of a single query in a read response. |
| 42 | #[derive(Clone, PartialEq, prost::Message)] |
no outgoing calls