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
Now you can deploy your application and it will send information to Kadira. Wait up to one minute and you'll see data appearing in the Kadira Dashboard.
Auto Connect
Your app can connect to Kadira using environment variables or using Meteor.settings.
Using Meteor.settings
Use the followng settings.json file with your app:
Kadira comes with built in error tracking solution for Meteor apps. It has been enabled by default.
For more information, please visit the meteor docs.
By default, Kadira tracks all the errors for you. But you may need to handle errors yourself. For those situations, you may need to report the error back to kadira as well. Here are the some of the options you can do.
Option 1 - Throw a new Error
Easiest option is try capture errors and handle them yourself. Then throw another error. Then kadira will capture that and you can see that error from in the UI.
try{// your code which may throw some errors}catch(ex){// handle your error and throw againthrowex;}
Option 2 - Use Kadira.trackError
Other option is to use Kadira.trackError API. Which is available on both client and the server. See how it can used.
try{// your code }catch(ex){vartype='my-error-type';varmessage=ex.message;Kadira.trackError(type,message);}
When you are tracking custom errors, do not use following types:
client
method
sub
server-crash
server-internal
We use above types to track errors automatically. If you also send errors with above types, things may not works as they used to.