You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The internal input plugin uses the wrong units in the field heap_objects_bytes. The field indicates the units are bytes when they are actually number of objects.
// HeapObjects is the number of allocated heap objects.
//
// Like HeapAlloc, this increases as objects are allocated and
// decreases as the heap is swept and unreachable objects are
// freed.
HeapObjects uint64
Bug report
The internal input plugin uses the wrong units in the field
heap_objects_bytes
. The field indicates the units are bytes when they are actually number of objects.From https://golang.org/pkg/runtime/#MemStats:
Fixing this is a breaking change.
Relevant telegraf.conf:
System info:
da5d8e1
Steps to reproduce:
N/A
Expected behavior:
heap_objects
Actual behavior:
heap_objects_bytes
Additional info:
The text was updated successfully, but these errors were encountered: