#Getting logs out of a Service?
1 messages · Page 1 of 1 (latest)
@acoustic jungle you can get them programmatically, but they're emitted alongside the engine telemetry, which you cam visualize in one of 4 ways:
-
In the interactive TUI. Use
dagger -Eto stay in the TUI even after execution is complete. You can use up, down, enter, escape, to navigate the trace. Navigate to the execution of your service and you'll see the logs -
In the raw log output. Use
dagger --progress=plainto get the raw logs, then you can sift through that -
Go the web trace view (press
win the TUI while executing. There is an initial setup, for free, then you can visualize all traces this way) --> this is what I use -
If you already have an opentelemetry-compatible trace & log collection system, you can configure dagger to send to that, then inspect the logs that way