Skip to content

Commit

Permalink
example proto change
Browse files Browse the repository at this point in the history
  • Loading branch information
dsmith3197 committed Sep 13, 2023
1 parent eec7e2f commit fcf90e6
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions lib/vector-core/proto/event.proto
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,18 @@ message Value {
}
}

message DatadogOriginMetadata {
optional uint32 origin_product = 1;
optional uint32 origin_category = 2;
optional uint32 origin_service = 3;
}

message Metadata {
Value value = 1;
reserved 2,3,4,5,6,7,8;
DatadogOriginMetadata datadog_origin_metadata = 9;
}

message Metric {
string name = 1;
google.protobuf.Timestamp timestamp = 2;
Expand All @@ -95,7 +107,7 @@ message Metric {
}
string namespace = 11;
uint32 interval_ms = 18;
Value metadata = 19;
Metadata metadata = 19;
}

message TagValues {
Expand Down Expand Up @@ -210,4 +222,4 @@ message Sketch {
oneof sketch {
AgentDDSketch agent_dd_sketch = 1;
}
}
}

0 comments on commit fcf90e6

Please sign in to comment.