Skip to content

owit tail

Stream results continuously from configured backends as they arrive — analogous to tail -f for logs.

Terminal window
owit tail <signal-type> [filters] [flags]
Terminal window
# Stream all incoming error logs
owit tail logs level=error
# Stream errors from a specific service
owit tail logs level=error service=payments
# Stream slow traces in real time
owit tail traces duration gt 500ms
# From specific backends only
owit tail logs level=error --backends loki,datadog
  • Results appear as they arrive from each backend — no waiting for all backends to respond.
  • Results are not sorted by timestamp. Rows from fast backends appear before rows from slow backends.
  • The stream continues until interrupted with Ctrl+C.
  • Backend failures appear as inline warnings and do not stop the stream.
owit logsowit tail
Result orderSorted by timestampArrival order
CompletesYes (buffered)No (continuous stream)
Use caseQuerying past dataFollowing live activity