Custom Analytics Dashboard for Microsoft Bot Framework and other applications as well
Перейти к файлу
Tomer Rosenthal 7878645cc0 Update README.md 2017-07-02 13:22:23 +03:00
.vscode remove additional linting errors 2017-05-21 12:36:49 +03:00
build fixing setup authentication 2017-05-25 17:04:13 +03:00
docs Merged data source connections 2017-05-23 12:47:33 +01:00
public dynamic creation of dashboard E2E 2017-04-28 16:20:16 -07:00
scripts/deployment Update azuredeploy.json 2017-07-02 13:17:49 +03:00
server update auth to post 2017-05-25 17:29:09 +03:00
src fixing setup authentication 2017-05-25 17:04:13 +03:00
.editorconfig Split panel dialog with errors groups 2017-04-07 19:59:51 +01:00
.gitignore adding generated css files 2017-05-17 16:44:12 +03:00
Dockerfile Update Dockerfile 2017-07-02 09:32:46 +03:00
README.md Update README.md 2017-07-02 13:22:23 +03:00
package.json Merge remote-tracking branch 'origin/ibex-version-1.0' into dev-azure-dashboard 2017-05-21 12:40:25 +03:00
tsconfig.json loading configuration dynamically + edit 2017-03-27 21:01:53 +03:00
tslint.json Animated drop down menu and ts linting 2017-04-24 13:14:13 +01:00
yarn.lock Merge remote-tracking branch 'origin/ibex-version-1.0' into dev-azure-dashboard 2017-05-21 12:40:25 +03:00

README.md

Bot Framedash

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

There are 3 ways to deploy to Azure:

1. Web App - Automated

  1. Fork this repo (to be able to automatically create github deployment key)
  2. Clone & Deploy:

2. Web App On Linux - Automated with Docker Hub

3. Manual

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

Important Note

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

Used Repos Technologies

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?