├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── bbb-mon ├── api_lib.py ├── frontend │ ├── index.html │ └── main.js ├── server.py ├── settings.py └── views.py ├── demo.png ├── docker-compose.yaml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenstatic/bigbluebutton-monitoring/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenstatic/bigbluebutton-monitoring/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenstatic/bigbluebutton-monitoring/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenstatic/bigbluebutton-monitoring/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenstatic/bigbluebutton-monitoring/HEAD/README.md -------------------------------------------------------------------------------- /bbb-mon/api_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenstatic/bigbluebutton-monitoring/HEAD/bbb-mon/api_lib.py -------------------------------------------------------------------------------- /bbb-mon/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenstatic/bigbluebutton-monitoring/HEAD/bbb-mon/frontend/index.html -------------------------------------------------------------------------------- /bbb-mon/frontend/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenstatic/bigbluebutton-monitoring/HEAD/bbb-mon/frontend/main.js -------------------------------------------------------------------------------- /bbb-mon/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenstatic/bigbluebutton-monitoring/HEAD/bbb-mon/server.py -------------------------------------------------------------------------------- /bbb-mon/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenstatic/bigbluebutton-monitoring/HEAD/bbb-mon/settings.py -------------------------------------------------------------------------------- /bbb-mon/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenstatic/bigbluebutton-monitoring/HEAD/bbb-mon/views.py -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenstatic/bigbluebutton-monitoring/HEAD/demo.png -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenstatic/bigbluebutton-monitoring/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenstatic/bigbluebutton-monitoring/HEAD/requirements.txt --------------------------------------------------------------------------------