You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
315 B
20 lines
315 B
7 years ago
|
syntax = "proto3";
|
||
|
|
||
|
package envoy.admin.v2alpha;
|
||
|
|
||
|
// [#protodoc-title: Metrics]
|
||
|
|
||
|
// Proto representation of an Envoy Counter or Gauge value.
|
||
|
message SimpleMetric {
|
||
|
enum Type {
|
||
|
COUNTER = 0;
|
||
|
GAUGE = 1;
|
||
|
}
|
||
|
|
||
|
// Type of metric represented.
|
||
|
Type type = 1;
|
||
|
|
||
|
// Current metric value.
|
||
|
uint64 value = 2;
|
||
|
}
|