getsentry / getsentry/sentry-ruby

Log url to errors

Abierto
#1,786 3 comentarios 0 reacciones 1 asignado Reclamado por @sl0thentr0py Ver en GitHub
Errors Feature Ruby sentry-ruby
Lenguaje dominante
Ruby
Estrellas
987
Forks
541
Merge medio
17 h 40 min
PR fusionados (30 d)
19

Descripción

**Describe the idea**
show a clickable url instead of just the event id when logging an error

**Why do you think it's beneficial to most of the users**
they don't need to be a sentry expert to find the error

**Possible implementation**
```
# make events clickable
Sentry::LoggingHelper.prepend(Module.new do
def log_info(message)
super(message.sub(
/\[event\] (\S+) to Sentry/,
"[event] https://sentry.io/organizations//issues/?query=\\1 to Sentry"
))
end
end)
```

to make this reusable a project setting might be needed, or the project could be included in the sentry api reply.

Guía de contribución

Abrir la guía de contribución

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.