Skip to content

StErMi/jovo-plugin-sentry

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation

$ npm install jovo-plugin-sentry --save

In your Jovo project:

// src/app.ts
import { SentryErrorPlugin } from 'jovo-plugin-sentry';


app.use(
	// other plugins, platforms, etc.
	new  SentryErrorPlugin()
);

Customize

NOTE: The dsn is a required parameter

You can use the config.ts file to add the changes in the following format:

const config = {
    plugin: {
        SentryErrorPlugin: {
            dsn: '<YOUR_DSN_HERE>'
        }
    }
};

export = config;

License

Apache-2.0

About

Logs errors of your Jovo application to Sentry

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published