summaryrefslogtreecommitdiffstats
path: root/aclk/aclk-schemas/proto/chart/v1/dimension.proto
diff options
context:
space:
mode:
Diffstat (limited to 'aclk/aclk-schemas/proto/chart/v1/dimension.proto')
-rw-r--r--aclk/aclk-schemas/proto/chart/v1/dimension.proto24
1 files changed, 0 insertions, 24 deletions
diff --git a/aclk/aclk-schemas/proto/chart/v1/dimension.proto b/aclk/aclk-schemas/proto/chart/v1/dimension.proto
deleted file mode 100644
index 8bcb564b8..000000000
--- a/aclk/aclk-schemas/proto/chart/v1/dimension.proto
+++ /dev/null
@@ -1,24 +0,0 @@
-syntax = "proto3";
-
-package chart.v1;
-
-import "google/protobuf/timestamp.proto";
-
-import "proto/aclk/v1/lib.proto";
-
-option go_package = "chart/dimension/v1;chartdimension";
-
-// ChartDimensionUpdated is a single event sent from the Agent to the Cloud containing chart dimension data.
-//
-// ChartDimensionUpdated messages are dispatched in bulk to the Cloud wrapped in ChartsAndDimensionsUpdated messages.
-message ChartDimensionUpdated {
- string id = 1;
- string chart_id = 2;
- string node_id = 3;
- string claim_id = 4;
- string name = 5;
- google.protobuf.Timestamp created_at = 6;
- // null value means that the dimension is currently collected (live)
- google.protobuf.Timestamp last_timestamp = 7;
- aclk_lib.v1.ACLKMessagePosition position = 8;
-}