axiomhq / axiom-grafana

The official Axiom datasource plugin for Grafana.
https://axiom.co
Apache License 2.0
6 stars 3 forks source link

fix handling of nil aggregation values #16

Closed mschoch closed 1 year ago

mschoch commented 1 year ago

previously we used []float64 and crashed passing a nil value now we use []*float64, passing nil for any non-float64 value

fixes #12

mschoch commented 1 year ago

This should get more testing to make sure it doesn't break anything else that is already working, I just wanted to get the code up.