Resolving Time Series Graph Display Issue in 0.21.0 Frontend
TLDR Rudy had an issue displaying time series graphs after upgrading. Srikanth suggested using reserved names in ClickHouse queries. This solution worked.
1
Jul 04, 2023 (5 months ago)
Rudy
08:07 PMclickhouse query
SELECT quantile(0.5)(durationNano/1e6) as p50, name, toDateTime(toStartOfMinute(timestamp)) AS ts FROM signoz_traces.signoz_index_v2 WHERE serviceName='testapp' AND timestamp>=toDateTime(intDiv({{.SIGNOZ_START_TIME}}, 1000)) AND timestamp<=toDateTime(intDiv({{.SIGNOZ_END_TIME}}, 1000)) AND name like 'GET /%' GROUP BY name,ts ORDER BY p50 DESC LIMIT 1000
Jul 05, 2023 (5 months ago)
Srikanth
01:48 AMvalue
, result
. Use them instead of p50,
and it should work. The reason is you could have another number part of the select clause such as http_status_code so there needs to be some way to distinct between the result column vs the rest.1
Rudy
05:09 PMSigNoz Community
Indexed 1023 threads (61% resolved)
Similar Threads
Clickhouse Query Timeout in SigNoz Dashboard
Daniel experienced query timeouts in SigNoz dashboard. vishal-signoz confirmed it's a non-configurable 60s limit, but created a GitHub issue for adding the feature.
Adjusting Dashboard Details with Clickhouse Query and Time Dropdown
Harshith.R.S asked how to change dashboard details with clickhouse query based on time dropdown. Srikanth provided a solution using time template variables in the query.
Issues with SigNoz Setup and Data Persistence in AKS
Vaibhavi experienced issues setting up SigNoz in AKS, and faced data persistence issues after installation. Srikanth provided guidance on ClickHouse version compatibility and resource requirements, helping Vaibhavi troubleshoot and resolve the issue.