github.com/thanos-io/thanos@v0.32.5/internal/cortex/querier/stats/stats.proto (about)

     1  // Copyright (c) The Cortex Authors.
     2  // Licensed under the Apache License 2.0.
     3  
     4  syntax = "proto3";
     5  
     6  package stats;
     7  
     8  option go_package = "stats";
     9  
    10  import "github.com/gogo/protobuf/gogoproto/gogo.proto";
    11  import "google/protobuf/duration.proto";
    12  
    13  option (gogoproto.marshaler_all) = true;
    14  option (gogoproto.unmarshaler_all) = true;
    15  
    16  message Stats {
    17    // The sum of all wall time spent in the querier to execute the query.
    18    google.protobuf.Duration wall_time = 1 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false];
    19    // The number of series fetched for the query
    20    uint64 fetched_series_count = 2;
    21    // The number of bytes of the chunks fetched for the query
    22    uint64 fetched_chunk_bytes = 3;
    23  }