Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
35
rated 0 times [  40] [ 5]  / answers: 1 / hits: 23625  / 11 Years ago, tue, january 28, 2014, 12:00:00

I am a web and iOS developer. On mobile we have famous tools to collect all the exceptions and errors that application thorws.



There's Crashlytics (and others) that with few lines of code to install the sdk, start tracking everything automatically. Then them display the error and useful informations on their website with priority and other stats.



Exists something like that for web applications? Or explicitly for php or js apps?



Thanks ;)


More From » php

 Answers
16

www.exceptional.io is exactly what you're asking for. It costs $9 per month after a free trial.



Integration with PHP is done by including a wrapper and a couple of lines of code:
https://github.com/ankane/exceptional-php/



It can also be integrated with javascript with a couple of lines:



<script type=text/javascript src=http://js.exceptional.io/exceptional.js></script>
<script type=text/javascript>
Exceptional.setKey('your_api_key');
</script>


Another option is New Relic, although it does a lot more than purely error logging - it provides all kinds of server monitoring metrics.
https://docs.newrelic.com/docs/applications-menu/errors-dashboard


[#72897] Monday, January 27, 2014, 11 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
cruzs

Total Points: 710
Total Questions: 113
Total Answers: 100

Location: Nepal
Member since Sat, Jul 18, 2020
4 Years ago
cruzs questions
Thu, Nov 26, 20, 00:00, 4 Years ago
Wed, Oct 28, 20, 00:00, 4 Years ago
Wed, Aug 19, 20, 00:00, 4 Years ago
Sun, Aug 2, 20, 00:00, 4 Years ago
;