Slackbot
09/14/2022, 9:22 PMPete Woods
09/14/2022, 9:23 PMPete Woods
09/14/2022, 9:23 PMPete Woods
09/14/2022, 9:24 PMPete Woods
09/14/2022, 9:24 PMPete Woods
09/14/2022, 9:25 PMPete Woods
09/14/2022, 9:26 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.
Srikanth Chekuri
09/15/2022, 1:49 AMSELECT
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
Vishal Sharma
09/15/2022, 6:08 AMSomething we do a lot in honeycomb is to try and identify things like “most frequent user”
Which involves grouping spans by e.g. user or orgHey @Pete WoodsYou can send custom tags/attributes with spans and then filter by those tags. https://signoz.io/docs/userguide/traces/#filter-spans-by-tagsattributes
Pete Woods
09/15/2022, 6:35 AMPete Woods
09/15/2022, 6:35 AMPete 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 AMPete Woods
09/15/2022, 6:35 AMAnkit Nayan
Ankit Nayan
Pete Woods
09/15/2022, 9:37 AMPete Woods
09/15/2022, 9:38 AMPete Woods
09/15/2022, 9:38 AMPete Woods
09/15/2022, 9:38 AMPete Woods
09/15/2022, 9:39 AMPete Woods
09/15/2022, 9:39 AMPete Woods
09/15/2022, 9:39 AMPete Woods
09/15/2022, 9:40 AMAnkit Nayan
Pete Woods
09/15/2022, 9:40 AMAnkit Nayan
Ankit Nayan
Pete Woods
09/15/2022, 9:42 AMPete Woods
09/15/2022, 9:43 AMPete Woods
09/15/2022, 9:43 AMPete Woods
09/15/2022, 9:43 AMPete Woods
09/15/2022, 9:44 AMAnkit Nayan
Ankit Nayan
Ankit Nayan