ethercrow / opentelemetry-haskell

The OpenTelemetry Haskell Client https://opentelemetry.io
Other
65 stars 6 forks source link

Add metric data to eventlog-summary #28

Closed mpardalos closed 4 years ago

mpardalos commented 4 years ago

Show a rough summary (just maxima for now) of metric data in eventlog-summary.

Example:

...
Max threads: 395
Max allocated: 1814MB
Max live: 276MB
It's fine
ethercrow commented 4 years ago

heap_alloc_bytes is a monotonically increasing counter, so it would be better reported as total allocation, not max allocation.

ethercrow commented 4 years ago

Thanks!