Custom Analytics Dashboard for Microsoft Bot Framework and other applications as well
Перейти к файлу
Elad Iwanir b681596f59 Import dashboard:
Added an 'import dashboard' feature to load a text file into IBEX
2017-06-28 16:10:21 +03:00
.travis Remove no longer needed warning supression 2017-06-15 10:18:27 +02:00
.vscode
build Travis build: 169 2017-06-27 14:51:44 +00:00
docs Docs formatting 2017-06-24 12:25:49 +01:00
public
scripts/deployment install in production with yarn 2017-06-07 17:43:47 +03:00
server Import dashboard: 2017-06-28 16:10:21 +03:00
src Import dashboard: 2017-06-28 16:10:21 +03:00
.deployment install in production with yarn 2017-06-07 17:43:47 +03:00
.editorconfig
.gitignore added the basic sample which was accidently deleted 2017-06-27 12:25:51 +03:00
.travis.yml Add test coverage check to CI 2017-06-13 16:55:32 +02:00
Dockerfile Added support for Azure Web Apps On Linux 2017-06-26 15:32:54 +03:00
README.md update documentation to use yarn instead of npm 2017-06-27 18:13:39 +03:00
package-lock.json Fix Query Tester in AI Connection Settings 2017-06-27 10:15:30 +03:00
package.json Fix Query Tester in AI Connection Settings 2017-06-27 10:15:30 +03:00
tsconfig.json
tslint.json Fix no getStart on undefined warning 2017-06-15 10:03:40 +02:00
yarn.lock updating query tester dialog location 2017-06-27 17:45:13 +03:00

README.md

Ibex Dashboard

This is an application insights based project that displays a bots analytics dashboard.

Preview

Preview Preview

Show With Your Own Data

  1. Clone

  2. Get an Application Insights App ID and Api Key

  3. Run yarn start:dev

  4. Open http://localhost:3000/

  5. Run through setup and afterwards, fill in API Key and Application ID

Deploy To Azure

  1. Fork this repo (to be able to automatically create github deployment key)
  2. Clone & Deploy:
  3. Create a new Web App in Azure

Since application insights API doesn't support ARM yet, we need to manually create an API Key for the application insights service. Once you created the api key, copy and paste it into the Dashboard settings screen.

Deploy With Docker

  1. docker build -t **image name** .
  2. docker run -d -e PORT=80 **image name**
  3. Docker image is also available at Docker Hub - docker pull catalystcode/ibex-dashboard

Create new API Key and Application ID

The following steps explain how to connect Application Insights bot with your bot and your dashboard: [you can also follow the official Application Insights article].

  1. Go to azure portal
  2. Select: Resource Groups > [new resource group] > App Insights Service
  3. Copy Instrumentation Key and paste into your bot registration page (on the bottom)
  4. Click: API Access > Create New Key > + Read Telemetry
  5. Copy Application ID + API Key
  6. Open the URL of your web app
  7. Under AppId/ApiKey set the values you created.

Resources

Technologies In Use

Resources

This project is built using:

The server approach was added using:

Thinking about integrating with:

Assumptions

  1. Running node version 4.5 or above.

Installation

git clone https://github.com/CatalystCode/ibex-dashboard.git
cd ibex-dashboard
npm install -g yarn
yarn

Dev

yarn start:dev

Test Watcher

Runs the test watcher in an interactive mode. By default, runs tests related to files changes since the last commit.

yarn test

Build for Production

yarn build

Whats Inside?