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.
31 lines
640 B
31 lines
640 B
5 years ago
|
syntax = "proto3";
|
||
|
|
||
5 years ago
|
package envoy.admin.v3;
|
||
5 years ago
|
|
||
5 years ago
|
import "udpa/annotations/versioning.proto";
|
||
|
|
||
5 years ago
|
option java_package = "io.envoyproxy.envoy.admin.v3";
|
||
5 years ago
|
option java_outer_classname = "MetricsProto";
|
||
|
option java_multiple_files = true;
|
||
|
|
||
|
// [#protodoc-title: Metrics]
|
||
|
|
||
|
// Proto representation of an Envoy Counter or Gauge value.
|
||
|
message SimpleMetric {
|
||
5 years ago
|
option (udpa.annotations.versioning).previous_message_type = "envoy.admin.v2alpha.SimpleMetric";
|
||
5 years ago
|
|
||
5 years ago
|
enum Type {
|
||
|
COUNTER = 0;
|
||
|
GAUGE = 1;
|
||
|
}
|
||
|
|
||
|
// Type of the metric represented.
|
||
|
Type type = 1;
|
||
|
|
||
|
// Current metric value.
|
||
|
uint64 value = 2;
|
||
|
|
||
|
// Name of the metric.
|
||
|
string name = 3;
|
||
|
}
|