This message was deleted.
# support
s
This message was deleted.
p
@Upesh Jindal its not organised properly as of now - but you can find some here - https://github.com/SigNoz/benchmark/tree/main/dashboards
🙌 1
u
I understand, @Pranay Thank you for pointing to it! I was trying to build custom dashboard but struggled with queries. The reason I was trying to build a custom dashboard was that I don't want to see "HTTP Send" operations
p
Where are you seeing HTTP send operations currently. If you have a screenshot, would be helpful to understand
u
will send
a
and what are you trying to plot...would definitely love to help and improve docs 🙂
u
Honestly, I had no idea when I started. Was trying to get a clean dashboard which shows me only the endpoints with their respective latency and RPS over a period
p
also, we have added examples on creating custom queries - https://signoz.io/docs/userguide/create-a-custom-query/ Might be helpful. Also,

https://youtu.be/u2PiWKEdjCw?t=673

🙌 1
u
Here is a list of operations having http send.
It has impact on the screenshot below as well. I can of course deselect or select required services but for a system with many endpoints, it will become impractical to do it every time
In this view, we have a very small viewable area
a
you can filter out the operation in the LHS filter options. Only those selected will be used to plot the chart
u
I did that but it's lost when you come back next time
There needs to be a way to save the state or a custom dashboard
a
you can choose just 1 service or 1 operation and the chart should reflect data for the applied filters
u
Nope. That will defeat the purpose of comparative analysis
I would still want all the endpoints on the same chart, save the filter and then if required filter more
But right now, all of the operations are present there and filter cannot be saved
That's when I thought that may be custom dashboard is the way to go
🆗 1
a
giving an option to save the charts in this page should solve the purpose? You can look at the saved charts when needed?
u
I think it would be a great timesaver
a
I get it...
u
For example, when Pranay asked me to give a screenshot of the http send, I had to go all the way back to pulling things from scratch
a
hmm..let me check if that is possible today using CH query in the custom dashboard section
u
sure
thanks!
a
else..having a
save
options on the charts would be good
u
yep
a
👍
Can you please open an issue for the
save
capability? Would help us track publicaly
u
will do
a
thanks
u
a
@Upesh Jindal you should be able to plot it now also using below query applying where clause as required
Copy code
select toDateTime(toStartOfMinute(timestamp)) AS minute, name, toFloat64(count()) as count from signoz_traces.signoz_index_v2 where timestamp > toDateTime64(now() - INTERVAL 30 MINUTE, 0, 'UTC') group by (name, minute) order by minute asc;
above will group by every
operation
and if you want to exclude any operation you can add
and name not in ('aaaaa', 'bbbbb')
clause
u
Thanks Ankit. Let me try
👍 1
I was trying to find out the data model so I can write queries on my own