Does Sentry do logging now with the new Tracing feature? #5468
-
Can I get rid of Graylog now? It's not clear to me if the new tracing features are capable of capturing all of the logging that I normally would send to Graylog. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
The description of what Tracing is seems to conflict with Sentry vs Logging
This sounds exactly like logging to me. |
Beta Was this translation helpful? Give feedback.
-
I guess my question is - can I use |
Beta Was this translation helpful? Give feedback.
-
The log of events here is not as granular as system level logging - and the focus here is on the timing data of those items (duration), to see potential performance problems. To get an idea of what I mean, take a look at the performance view on our sandbox: https://sentry.io/demo/sandbox/ You'll see that tracing data looks something like so: Sentry is not meant to replace your logging tool, but instead augment it.
You can do this if you want, but it's not meant to replace a typical logging tool (used for audit logs and such). Instead you would only capture messages that are the most important to you, instead of everything happening. |
Beta Was this translation helpful? Give feedback.
The log of events here is not as granular as system level logging - and the focus here is on the timing data of those items (duration), to see potential performance problems. To get an idea of what I mean, take a look at the performance view on our sandbox: https://sentry.io/demo/sandbox/
You'll see that tracing data looks something like so:
Sentry is not meant to replace your logging tool, but instead augment it.
You can do this if you…