Hi, We have our Deployments on Kubernetes, We use ...
# deployment-kubernetes
b
Hi, We have our Deployments on Kubernetes, We use New Relic for Log Monitoring. What should be done from Dagster logging to capture logs only from
stdout
and
stderr
, I do not want to store logs in any place, What kind of logging manager should be applied in this case ?
c
Hi Binoy. By default, we generate system logs in order to track step events (e.g. if steps have completed, if runs have completed, etc.) that are logged in the default database Dagster uses. If you don't want to generate additional logs, I would say that you should avoid using
context.log
and instead just use compute logs, which will write to stdout/stderr
b
Oh okay, Thank you Claire for the info