Skip to content
Closed
Show file tree
Hide file tree
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
15 changes: 15 additions & 0 deletions gen/go/proto/v1/config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ message Reporting {

// When `true`, modifies grpc resolver to use dns instead of passthrough and configure round robin client side loadbalancing
google.protobuf.BoolValue enable_grpc_loadbalancing = 9;

// Configure the span processor type to be used for exporting
SpanProcessorType span_processor_type = 10;
}

// Message describes what message should be considered for certain DataCapture option
Expand Down Expand Up @@ -173,6 +176,18 @@ enum MetricReporterType {
METRIC_REPORTER_TYPE_NONE = 4;
}

enum SpanProcessorType {

// Default to none. Agent will use it's default reporting type
SPAN_PROCESSOR_TYPE_UNSPECIFIED = 0;

// Simple Span Processor
SPAN_PROCESSOR_TYPE_SIMPLE = 1;

// Batch Span Processor
SPAN_PROCESSOR_TYPE_BATCH = 2;
}

// JavaAgent has the configs specific to javaagent
message JavaAgent {
// filter_jar_paths is the list of path to filter jars, separated by `,`
Expand Down
Loading
Loading