github.com/grafana/pyroscope@v1.18.0/pkg/querier/stats/stats.proto (about) 1 // SPDX-License-Identifier: AGPL-3.0-only 2 // Provenance-includes-location: https://github.com/cortexproject/cortex/blob/master/pkg/querier/stats/stats.proto 3 // Provenance-includes-license: Apache-2.0 4 // Provenance-includes-copyright: The Cortex Authors. 5 6 syntax = "proto3"; 7 8 package stats; 9 10 option go_package = "stats"; 11 12 message Stats { 13 // The sum of all wall time spent in the querier to execute the query. 14 int64 wall_time = 1; 15 // The number of series fetched for the query 16 uint64 fetched_series_count = 2; 17 // The number of bytes of the chunks fetched for the query 18 uint64 fetched_chunk_bytes = 3; 19 // The number of chunks fetched for the query 20 uint64 fetched_chunks_count = 4; 21 // The number of sharded queries executed. 0 if sharding is disabled or the query can't be sharded. 22 uint32 sharded_queries = 5; 23 // The number of split partial queries executed. 0 if splitting is disabled or the query can't be split. 24 uint32 split_queries = 6; 25 // The number of index bytes fetched on the store-gateway for the query 26 uint64 fetched_index_bytes = 7; 27 }