TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Errorship, use datadog as an error tracker

47 pointsby RabbitmqGuyabout 5 years ago

10 comments

kcmastrpcabout 5 years ago
Why not use distributed tracing? You get the context of entire request in addition to the exception.
评论 #22920628 未加载
MastrChefRocksabout 5 years ago
How does this compare to Datadog&#x27;s APM[0]? APM looks like it has far more features and is already integrated with Datadog.<p>[0] <a href="https:&#x2F;&#x2F;www.datadoghq.com&#x2F;apm&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.datadoghq.com&#x2F;apm&#x2F;</a>
评论 #22918298 未加载
karmakazeabout 5 years ago
For Java I&#x27;d written a Logback exception sender[0] that creates metrics tagged by level, class, exception class, cause classes. I&#x27;ll say that it is a quick and convenient way to see changes in system error characteristics. I had used a similar setup for Graphite but didn&#x27;t work as well without tags.<p>Since DataDog charges by number of metrics and each tag combination counts as one, actual exception messages should only be included in tags if they don&#x27;t have instance-varying text.<p>[0] <a href="https:&#x2F;&#x2F;github.com&#x2F;karmakaze&#x2F;logback-metrics-datadog" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;karmakaze&#x2F;logback-metrics-datadog</a>
RabbitmqGuyabout 5 years ago
Hey HN!<p>errorShip is a python library that sends exceptions&#x2F;errors generated by your application to your datadog account.<p>Are you tired of looking at metrics in datadog and then switching over to another website to track your applications exceptions? errorship exists to solve that context-switching problem, among others. It&#x27;s a bit like sentry, bugsnag, rollbar etc; except implemented in your own datadog account.<p>I&#x27;m happy to receive any feedback or just chat about it.
评论 #22915237 未加载
jereabout 5 years ago
Incredibly dumb question, but doesn&#x27;t datadog monitor errors out of the box?
评论 #22916720 未加载
sa46about 5 years ago
I’m going to make the classic engineer mistake and assume that it’s almost as easy to implement this myself. My understanding is that errorship does something like:<p>- register a global exception handler, probably tweaked to hook into framework specific exception mechanisms.<p>- make the exceptions “pretty”<p>- send the exceptions to the datadog event log.<p>The benefits of rolling my own is avoiding a soft dependency on errorship and that I can tweak exception aggregation and reporting. Is the primary defense that errorship only costs $10 per month or is there additional complexity I’ve missed?
评论 #22918643 未加载
oefrhaabout 5 years ago
Can you resolve exceptions like in Sentry? Having to look at the list of all exceptions and figure out which ones are of interest wouldn’t be ideal. (In the demo I did notice the level&#x2F;priorities filters, but nothing resembling an unresolved filter.)<p>Also, nitpick: it’s 2020, maybe update the front page screenshot to Python 3? My immediate reaction seeing that py27 screenshot: is this even maintained?
评论 #22915795 未加载
reinkaosabout 5 years ago
Doesn&#x27;t sending the exception as tags increase metrics cardinality slowing down other queries?
ohnoesjmrabout 5 years ago
Benefits over sentry?
评论 #22915483 未加载
AtroxDevabout 5 years ago
The library calls back home to validate the key (URL: <a href="https:&#x2F;&#x2F;errorship.com&#x2F;api&#x2F;?errorshipLicensekey={errorship_license_key}" rel="nofollow">https:&#x2F;&#x2F;errorship.com&#x2F;api&#x2F;?errorshipLicensekey={errorship_li...</a>). If it fails it raises an Exception. I don&#x27;t think that this is the correct way to do this.<p>If your server is down, my application would crash too. Just cut the license validation out of the library. If I wanted to use the library without an license I could do so anyway.<p>edit: as noted by the author below, this is not the case :). If the server is not available, it won&#x27;t raise an exception. I did miss that part somehow.
评论 #22915854 未加载
评论 #22915521 未加载