Skip to content

Commit

Permalink
strongly type our metrics export keys (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
agavra authored Dec 15, 2023
1 parent 6f5fab5 commit a29ffae
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@ message TenantResource {
string tenant = 1;

// the resource (the entity in the system that reported the
// metrics that are collected)
opentelemetry.proto.resource.v1.Resource resource = 2;
// metrics that are collected) - we use oneof in order to
// allow for different types of resources in the future
oneof resource {
string applicationId = 2;
}
}

// a metric that is reported from Responsive, for now this is
Expand Down

0 comments on commit a29ffae

Please sign in to comment.