You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Something I forgot to bring up: For doing throughput and latency metrics on the execute_query event it would be nice to be able to distinguish between reads and writes. It is probably cumbersome to try to get this form the query. Maybe as a first step we could allow users to pass in a tag/label when executing a query?
We can support an :extra_metadata option, which we merge into the event's metadata. This way, you can add whatever you want. We do the same thing in Redix, if you want to look for inspiration 👍
Broken out from #138.
[:xandra, :server_warning]
- when the server returns a warning in a frame (Emit Telemetry events for warnings #247)message
- warning messageconnection
- PID of the connectionconnection_name
- name of the connection ornil
host
port
[:xandra, :connection | :disconnection]
- when a Xandra connection process establishes a connection to the server or disconnectsconnection
- PID of the connectionconnection_name
- name of the connection ornil
host
port
:disconnection
)reason
[:xandra, :prepare_query]
span - when Xandra prepares or re-prepares a query:system_time
(on:start
) and:duration
(on:stop
)query
-Xandra.Simple
orXandra.Prepared
queryconnection
- PID of the connectionconnection_name
- name of the connection ornil
:host
/:port
:reprepared
- boolean to tell whether this query was prepared for the first time or reprepared[:xandra, :execute_query]
span - when Xandra executes a query:system_time
(on:start
) and:duration
(on:stop
)query
-Xandra.Simple
orXandra.Prepared
queryconnection
- PID of the connectionconnection_name
- name of the connection ornil
:host
/:port
[:xandra, :prepared_cache, :hit | :miss]
- Xandra looked a query up in the prepared cache:query
-Xandra.Prepared
To be done by @harunzengin
The text was updated successfully, but these errors were encountered: