Q. What timezone is used for timestamp functions in SigNoz queries?
A. The timestamp for functions like toDate(timestamp) uses the server's timezone, which is currently UTC.
If you want to use a different timezone, you can apply a timezone parameter to the function in your ClickHouse query. For example:
toDate(timestamp, 'Asia/Kolkata')
This allows you to convert timestamps to your desired timezone for proper date grouping and analysis in your queries.
For more details on timezone functions and available timezone options, refer to the ClickHouse documentation.