Active Queries
Hydrolix has an active table where we store query information for the last 5 minutes.
It is available to query like any other table and is deployed in the project hdx.
Example:
SELECT query_start, query_end, query, active, admin_comment, comment, (query_end - query_start) as query_duration
FROM hdx.active_queries
ORDER BY query_start DESC
Columns available in hdx.active_queries:
Column | Description |
---|---|
query_start | timestamp query received |
query_end | timestamp query responded |
query | body of the query |
user | user placing the query request |
comment | text provided by the hdx_comment setting |
admin_comment | text provided by the hdx_admin_comment setting |
active | boolean for if the query running or not |
hydrolix_version | Hydrolix version active when query was received |
turbine_revision | Turbine revision active when query was received |
We provide a query performance monitoring page in our Grafana deployment which uses Active Queries, this allow you to verify and monitor performance in real time for each query and by leveraging comment you can add some business logic in your monitoring.
For example the user running the query, or if it's a scheduled query for XYZ reason.
Updated 29 days ago