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'd just like to say thank you for maintaining this library! So far my experience with it has been great!
Is your feature request related to a problem? Please describe.
From what I can see, error reporting is handled via cowboy telemetry events which means that handled errors are never sent to New Relic to be seen in the UI.
I've seen that some of the other agents support this via e.g. in Python:
Describe alternatives you've considered
So far our work around is to send a custom event with the stacktrace and create an alert in the UI. But this is a non-optimal solution.
I may also be able to find some time to work on this.
The text was updated successfully, but these errors were encountered:
hi @JamieMaclean. May I ask you how have you implemented the workaround you described using this elixir agent ? Thx!
Hey @ivanfrias, sure thing. It is something along the lines of:
trydoraise("Raise for some reason")rescuee->NewRelic.report_custom_event("MyHandledError",%{exception: inspect(e),stacktrace: inspect(__STACKTRACE__)})continue_as_if_nothing_ever_happened()end
Then, in the UI, you can create alerts based on this custom event.
I think Sentry has this one implemented, but they have to parse the log to achieve this. It looks like BEAM is that easy to instrument to catch all unhandled exceptions
I'd just like to say thank you for maintaining this library! So far my experience with it has been great!
Is your feature request related to a problem? Please describe.
From what I can see, error reporting is handled via cowboy telemetry events which means that handled errors are never sent to New Relic to be seen in the UI.
I've seen that some of the other agents support this via e.g. in Python:
It would be good to have similar functionality in Elixir.
Describe the solution you'd like
Creation of something similar to:
Describe alternatives you've considered
So far our work around is to send a custom event with the stacktrace and create an alert in the UI. But this is a non-optimal solution.
I may also be able to find some time to work on this.
The text was updated successfully, but these errors were encountered: