My requirement is similar to the above.
When i use TransformNull(0) i get the graph with lines of 0 and the actual value connected.
Whereas, i require a plot similar to using DISTINCT with influxDB. all points of the metric to be connected
My points for example are
[test.stack.environment.test,product.teststatus.jobnumber]   [testduration]   [currenttime]
echo "test.stacka.pri.pit.product1.pass.j1 10 date +%s" | nc IP 2003
echo "test.stacka.pri.pit.product1.fail.j2 7 date +%s" | nc IP 2003
echo "test.stacka.pri.pit.product1.fail.j10 1 date +%s" | nc IP 2003
echo "test.stacka.pri.pit.product1.pass.j11 3 date +%s" | nc IP 2003
echo "test.stacka.pri.pit.product1.pass.j12 2 date +%s" | nc IP2003
I would like to show a graph on the trend of test duration. No calculation required. Simply the plot of points connected.
When i use metric= test.stacka.pri.pit.product1.pass.* , i get a graph as shown above with distinct point, however, i don’t get a way to connect the points.