-
-
Notifications
You must be signed in to change notification settings - Fork 120
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
[Bug] Write failed tests to Influxdb #1878
Comments
@alexjustesen I "solved" this for Prometheus by just sending Something like
And Unknown for the tags
|
@masterwishx I know you're a heavy user of the Influxdb integration. In your opinion if we were to send failed tests to the Influxdb bucket should they be sent as "zero" values or as "null" values? Or should they even be sent at all? |
Good question, do you mean failed when no server found or some other issue? |
i think #1878 (comment) should be good also for Influxdbv2 |
Failed means the speedtest job wasn't able to run either because of the CLI or lost internet or whatever other reason. |
OK got it. Then same values as for Prometheus. |
just for the info from AI :
So if we want to count when failed , we need use From influxdbv2 perspective i can use both like :
or
Or to use some of grafana filters or transformations ... |
Alright so it seems like writing |
Yes, if I understand right the only difference how we like to count the failed values. As I wrote befor in influxdbv2 and grafana, we can work with both null and zero. (maybe in grafana more easily to work with nulls but also zeros not a big problem) |
📃 Description
#1866 fundamentally refactored how we interact with Influxdb when building point tags and fields, as a result when a point has a collection of fields which all values are
null
the point won't be written to Influxdb.This issue is to log this regression and make sure we don't forget to address this.
The text was updated successfully, but these errors were encountered: