What im trying to do is filer out numbers between two " , " as you can see in the picture, problem is, those numbers are not in correct time order as how logs are written.
When 38 is filtred out, for some reason it jumps in time.
Doesw anyone have an idea how to fix this?
Hey @weinlicho - you are performing two separate queries on the same data and I think the data is being combined in your panel from the two queries which is why they appear out of order.
You should combine these two queries together in a pipeline: {filename="..."} != ",38," != ",205,"
Also note the use of != instead of |=. != will filter out, while |= will include.