summaryrefslogtreecommitdiffstats
path: root/aclk/aclk-schemas/proto/chart/v1/instance.proto
blob: 25c99e7c7783f3143ecc70b7efc1f386e5fc9e57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
syntax = "proto3";

package chart.v1;

import "proto/aclk/v1/lib.proto";

option go_package = "chart/instance/v1;chartinstance";

// ChartInstanceUpdated is a single event sent from the Agent to the Cloud containing chart instance data.
//
// ChartInstanceUpdated messages are dispatched in bulk to the Cloud wrapped in ChartsAndDimensionsUpdated messages.
message ChartInstanceUpdated {
  string id = 1;
  string claim_id = 2;
  string node_id = 3;
  string name = 4;
  map<string, string> chart_labels = 5;
  MemoryMode memory_mode = 6;
  // in seconds
  uint32 update_every_interval = 7;
  string config_hash = 8;
  aclk_lib.v1.ACLKMessagePosition position = 9;
}

enum MemoryMode {
  NONE = 0;
  RAM = 1;
  MAP = 2;
  SAVE = 3;
  ALLOC = 4;
  DB_ENGINE = 5;
}