Skip to content
Open
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
1,770 changes: 901 additions & 869 deletions process/agent.pb.go

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions process/agent.proto_builder.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

507 changes: 275 additions & 232 deletions process/connections.pb.go

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions process/connections.proto_builder.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions proto/process/agent.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1983,6 +1983,12 @@ message HTTPStats {
// if the HTTPStats has a single sample, this field will be the latency (in nanoseconds) of the only sample.
// this is purely to avoid the overhead of having single entry sketches.
double firstLatencySample = 4;

// average latency in nanoseconds across all requests in this bucket.
// Populated by discovery service map mode in lieu of DDSketches and
// firstLatencySample, since discovery mode does not retain a sketch
// or per-request samples.
double avgLatency = 5;
}
}

Expand Down
1 change: 1 addition & 0 deletions proto/process/connections.proto
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ message AgentConfiguration {
bool ccmEnabled = 4;
bool csmEnabled = 5;
bool eudmEnabled = 6;
bool discoveryServiceMapEnabled = 7;
}


Expand Down
Loading