artefactual-sdps / enduro

Designed to automate the processing of transfers in multiple Archivematica pipelines.
https://enduro.readthedocs.io/
Apache License 2.0
4 stars 3 forks source link

Enable tracing in Redis clients #893

Closed sevein closed 3 months ago

sevein commented 3 months ago

This pull request enables tracing instrumentation in our Redis clients using the redisotel package.

TraceQL query examples

Find watcher triggers

This is likely the most interesting outcome of this work. Now watchers start a root span (watcher.poll) representing the interaction with Redis using the blmove command to wait until the notification is delivered by MinIO. In Grafana, search for:

{name=~"watcher.poll"}

image

The gantt chart shows that we remove the notification from the queue using lrem command, but only once we've successfully started the workflow instance. The workflow continues running and recording spans as part of the same trace, including the entire workflow execution, activities, etc...

Find creation of WebSocket auth tickets

We can see how authentication tickets are stored in Redis:

{name="api" && .http.route="/package/monitor"}

image

Find application publishing events

We can also find spans related to the operation of publishing events into the event service, e.g.:

{name="publish"}

Find Redis traces

A more general approach:

{.db.system="redis"}

image

codecov[bot] commented 3 months ago

Codecov Report

Attention: Patch coverage is 45.28302% with 29 lines in your changes are missing coverage. Please review.

Project coverage is 47.34%. Comparing base (7e99584) to head (0fb0243).

:exclamation: Current head 0fb0243 differs from pull request most recent head 39e0299. Consider uploading reports for the commit 39e0299 to get more accurate results

Files Patch % Lines
main.go 0.00% 15 Missing :warning:
internal/watcher/minio.go 71.42% 2 Missing and 2 partials :warning:
cmd/enduro-a3m-worker/main.go 0.00% 2 Missing :warning:
cmd/enduro-am-worker/main.go 0.00% 2 Missing :warning:
internal/api/auth/ticket_store.go 77.77% 1 Missing and 1 partial :warning:
internal/event/redis.go 77.77% 1 Missing and 1 partial :warning:
internal/watcher/watcher.go 0.00% 2 Missing :warning:
Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #893 +/- ## ========================================== + Coverage 47.27% 47.34% +0.07% ========================================== Files 95 95 Lines 5172 5206 +34 ========================================== + Hits 2445 2465 +20 - Misses 2494 2505 +11 - Partials 233 236 +3 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.