Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: adds metadata support for reporting. #64

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,17 @@ message Reporting {
google.protobuf.BoolValue secure = 2;

// user specific token to access Traceable API
google.protobuf.StringValue token = 3;
google.protobuf.StringValue token = 3 [deprecated = true];

// opa describes the setting related to the Open Policy Agent
Opa opa = 4;

// reporter type for traces.
TraceReporterType trace_reporter_type = 5;

// metadata is a key:value map that is included in the reporting request e.g.
// headers in OTLP reporter or HTTP headers for zipkin.
map<string, string> metadata = 6;
}

// Opa covers the options related to the mechanics for getting Open Policy Agent configuration file.
Expand Down