All Downloads are FREE. Search and download functionalities are using the official Maven repository.

static.koburst.proto Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
syntax = "proto3";

package koburst;

message Message {
  oneof payload {
    Metric metric = 1;
    Metrics metrics = 2;
  }
}

message Metrics {
  repeated Metric metrics = 1;
}

message Metric {
  string name = 1;
  double value = 2;
  map labels = 3;
  int64 timestamp = 4;
  Statistic statistic = 5;
}

enum Statistic {
  TOTAL = 0;
  TOTAL_TIME = 1;
  COUNT = 2;
  MAX = 3;
  VALUE = 4;
  UNKNOWN = 5;
  ACTIVE_TASKS = 6;
  DURATION = 7;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy