Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix empty stacked bar chart for topN hosts
When grouping items into top N buckets, we relied on the existence of two keys (key and key_as_string) to provide the topN value to the chart. If "key" was a string type, then we returned the value of "key_as_string". Otherwise, we returned the value of "key". However, this assumption no longer applies. The HostID value is an unsigned long, but only is available in "key" and the "key_as_string" does not exist.
- Loading branch information