Hi,
Could you help me out? I’ve been searching for a solution in SigNoz but haven’t found an answer to my question.
I have a service that generates and returns tokens.
I’m sending my data to the SigNoz collector.
Here’s the situation: regardless of whether the response is successful or an error, I always return a status code of 200.
However, I have a field called response that indicates whether the response was an error or a success.
Now, I want to use a query in ClickHouse to see the following values on my dashboards:
a. The total number of requests received by the token service.
b. The number of successful responses.
c. The number of error responses (based on the response field).
Is it possible to achieve this with a query in ClickHouse?
Thank you!