Demo App

Clone

git clone https://github.com/ObserveRTC/demo-app.git

Install and Build

  1. Install the server
cd server && yarn
  1. Install the webapp
cd webapp && yarn

Run

  1. Start server
cd server
npm run build

node dist/main.js
  1. Start the webapp
cd webapp

yarn start

Add your monitoring in the webapp

To see how for example you can use the client-monitor and develop something on top of it, you can open webapp/src/components/Stats/MySandbox.tsx.

Access the observed samples at the server

To evaluate stats, see: server/src/monitor.ts

To export reports to database see: server/src/exports.ts

Edit this page on GitHub