jovo-analytics-onedash
v3.6.1
Published
Learn how to use OneDash Analytics for your Alexa Skills built with Jovo.
Downloads
6
Readme
OneDash Analytics Integration
Learn how to use OneDash Analytics for your Alexa Skills built with Jovo.
About OneDash
OneDash is an AI-powered chat-bot analytics service with deep analysis of dialogues, search for insights and easy sharing with stakeholders.
Installation
To use OneDash for your voice app, you need to complete the following steps:
- Create a OneDash Bot
- Enable OneDash Analytics in your Jovo voice app
- Download the onedash npm package
- Test your app
Create a OneDash Bot
Create a OneDash account or log in at https://app.onedash.cc/#/auth/login.
Click "Add a Bot" in the Admin panel:
- Copy API Key
Enable OneDash in Jovo
To add OneDash to your voice app, do the following:
- Download the npm package
- Enable the plugin in
app.js
- Add configurations in
config.js
First, download the npm package:
$ npm install --save jovo-analytics-onedash
Enable the plugin like this:
// @language=javascript
// src/app.js
const { OneDashAlexa } = require('jovo-analytics-onedash');
app.use(
new OneDashAlexa()
);
// @language=typescript
// src/app.ts
import { OneDashAlexa } from 'jovo-analytics-onedash';
app.use(
new OneDashAlexa()
);
Add configurations like this:
// @language=javascript
// src/config.js
module.exports = {
analytics: {
OneDashAlexa: {
key: '<key>',
},
},
// ...
};
// @language=typescript
// src/config.ts
const config = {
analytics: {
OneDashAlexa: {
key: '<key>',
},
},
// ...
};
Test OneDash
Test your voice app