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
I've made changes in my celery app config to push celery logs on the cloudwatch but I'm interested in only task related logs and nothing else. But what i can see on the cloud watch, it pushed logs from all celery related logs -
I'm only interested in the celery.app.trace-23-10-10 log or better if i can merge all celery related logs into one.
How can I do that?
Thank you!
The text was updated successfully, but these errors were encountered:
This library is a log handler and does not filter any logs except those related to its own operation. To merge logs into one log group, you can specify the log group name instead of using the default log group name that corresponds to the logger name. The Python logging library natively supports filtering logs using a variety of techniques, including filters (https://docs.python.org/3/library/logging.html#logging.Logger.addFilter), to accomplish what you describe.
I've made changes in my
celery
app config to push celery logs on the cloudwatch but I'm interested in only task related logs and nothing else. But what i can see on the cloud watch, it pushed logs from all celery related logs -I'm only interested in the
celery.app.trace-23-10-10
log or better if i can merge all celery related logs into one.How can I do that?
Thank you!
The text was updated successfully, but these errors were encountered: