-
Notifications
You must be signed in to change notification settings - Fork 90
Add tracking of response body-size and header-size #265
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
Changes from all commits
99b7595
7c267eb
88f2e03
6f23597
a8e8f50
aa28310
dbab3b4
5cc8a79
315be10
640ea06
8e93a74
e9306fa
4568133
6076b70
8a6bee0
3a1f428
98b91e0
ba703cb
28f2f38
2acaa34
a8c5c0f
7de573f
08bd9e5
abddf23
716e3f2
576b15b
f7bdbb1
a0f557b
3abd912
d3de072
5bd89b1
6b25f86
ccfe682
20f07d6
6748422
2346949
ce9f3c1
5f28389
24782ea
f7b8eaf
111aee5
cbb70f6
de90843
bc81751
812df3e
8239486
a5fec96
cfcf7bc
7cb8866
23dc8ae
838dcdd
5578d27
2840070
6b341fc
f150f6a
0d69b89
cd00a6b
85df631
9bb43a9
49bf48f
b1cd2c3
f218d70
4303f0c
2ad69d0
fb4e6ce
61c5a9d
ccaa54b
dca3c73
c2f9798
858c232
13b5222
a5dbace
de3fb47
2ac3386
ac675da
d1aee22
77a7eb2
6a79510
95fb0df
5082cfb
9aa9e98
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,17 +14,34 @@ message Counter { | |
| } | ||
|
|
||
| message Percentile { | ||
| google.protobuf.Duration duration = 1; | ||
| oneof duration_type { | ||
| google.protobuf.Duration duration = 1; | ||
| double raw_value = 4; | ||
| } | ||
| double percentile = 2; | ||
| uint64 count = 3; | ||
| } | ||
|
|
||
| message Statistic { | ||
| uint64 count = 1; | ||
| string id = 2; | ||
| google.protobuf.Duration mean = 3; | ||
| google.protobuf.Duration pstdev = 4; | ||
| oneof mean_type { | ||
| google.protobuf.Duration mean = 3; | ||
| double raw_mean = 8; | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure if "raw_" is the best prefix / name. Can we try to document what is the meaning of raw in each one of these cases and then we will see? Is it always bytes? Something else?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The definition of the |
||
| } | ||
| oneof pstdev_type { | ||
| google.protobuf.Duration pstdev = 4; | ||
| double raw_pstdev = 10; | ||
| } | ||
| repeated Percentile percentiles = 5; | ||
| oneof min_type { | ||
| google.protobuf.Duration min = 6; | ||
| uint64 raw_min = 12; | ||
| } | ||
| oneof max_type { | ||
| google.protobuf.Duration max = 7; | ||
| uint64 raw_max = 13; | ||
| } | ||
| } | ||
|
|
||
| message Result { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.