Pete Woods
09/14/2022, 9:22 PMSrikanth Chekuri
09/15/2022, 1:42 AMIt looks like you can only do that with metrics at the minuteCorrect, the plan is enable this to traces/spans and logs eventually with the unified query builder interface. But if you are comfortable with writing sql queries you can still plot trends of spans/traces/logs using the ClickHouse tab from the options.
SELECT
toDateTime(toStartOfMinute(timestamp)) AS minute,
toFloat64(count()) AS count
FROM signoz_traces.signoz_index_v2
WHERE (durationNano >= 30000000) AND (timestamp > toDateTime64(now() - toIntervalMinute(30), 0, 'UTC'))
GROUP BY minute
Pranay
Pete Woods
09/15/2022, 6:35 AMAnkit Nayan
Which involves grouping spans by e.g. user or org@Pete Woods would you like to create a github issue for this? This should be very much doable with minor changes
Pete Woods
09/15/2022, 6:35 AMAnkit Nayan
Pete Woods
09/15/2022, 9:37 AMAnkit Nayan
Pete Woods
09/15/2022, 9:40 AMAnkit Nayan
Pete Woods
09/15/2022, 9:42 AMAnkit Nayan