xingyingone commented on issue #30563: URL: https://github.com/apache/doris/issues/30563#issuecomment-1916190449
select query_time AS time, path, (total_count / 60000) * 1000 AS qps from ( SELECT (time DIV 60000) * 60000 AS query_time, path, count() total_count FROM envoy_log WHERE time >= 1706585467* 1000 AND time <= 1706596267* 1000 AND apiName = "sirius-auth-server" group by query_time,path) temp ORDER by time asc; -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org