Skip to content
Merged
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
458 changes: 246 additions & 212 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.

502 changes: 272 additions & 230 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.

7 changes: 7 additions & 0 deletions proto/process/agent.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1984,6 +1984,13 @@ 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;

// running sum of per-request latencies (in nanoseconds) over the flush
// window. Populated by discovery service map mode in lieu of DDSketches
// and firstLatencySample. The mean is computed at the backend as
// latencySum / count; shipping the raw sum (instead of a precomputed
// mean) preserves correct cross-host aggregation.
double latencySum = 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 @@ -362,6 +362,7 @@ message AgentConfiguration {
bool ccmEnabled = 4;
bool csmEnabled = 5;
bool eudmEnabled = 6;
bool discoveryServiceMapEnabled = 7;
}


Expand Down
Loading