{"id":19140230,"url":"https://github.com/geraked/bams","last_synced_at":"2025-03-18T17:23:49.112Z","repository":{"id":176725312,"uuid":"360494327","full_name":"geraked/bams","owner":"geraked","description":"BigBlueButton \u0026 AdobeConnect Monitoring Software","archived":false,"fork":false,"pushed_at":"2024-07-21T14:27:58.000Z","size":13458,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-24T20:51:12.361Z","etag":null,"topics":["adobe","adobe-connect","adobeconnect","big-blue-button","bigbluebutton","bigbluebutton-addon","bigbluebutton-plugin","bsc-project","bsc-thesis","geraked","monitor","monitoring","monitoring-tool","online-meeting","rabist","undergraduate-project","undergraduate-thesis","web-conferencing","yazd-university"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/geraked.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-04-22T11:26:31.000Z","updated_at":"2025-01-13T13:38:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"6fd3d97a-b19c-4088-8ae3-f732f5e148bc","html_url":"https://github.com/geraked/bams","commit_stats":null,"previous_names":["geraked/bams"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geraked%2Fbams","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geraked%2Fbams/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geraked%2Fbams/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geraked%2Fbams/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/geraked","download_url":"https://codeload.github.com/geraked/bams/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244267475,"owners_count":20425835,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["adobe","adobe-connect","adobeconnect","big-blue-button","bigbluebutton","bigbluebutton-addon","bigbluebutton-plugin","bsc-project","bsc-thesis","geraked","monitor","monitoring","monitoring-tool","online-meeting","rabist","undergraduate-project","undergraduate-thesis","web-conferencing","yazd-university"],"created_at":"2024-11-09T07:16:46.559Z","updated_at":"2025-03-18T17:23:49.093Z","avatar_url":"https://github.com/geraked.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![catalog](docs/catalog.jpg)\n\n# BAMS\n\n![GitHub release (latest by date)](https://img.shields.io/github/v/release/geraked/bams)\n\nBigBlueButton \u0026 AdobeConnect Monitoring Software\n\nIt shows in progress meetings of both BigBlueButton and AdobeConnect with current usage of server resources in an integrated view. \n\n## Installation\n\nIt can be installed on web hosting control panels or servers that support PHP v7.0 or above.\n\nUpload the contents of `src` folder to your host and open `config.php` file with a text editor.\n\nSet the correct `URL` of the program started with `http(s)://` and followed by a trailing slash.\nFor example:\n```php\ndefine('URL', 'http://localhost/bams/');\n```\n\nDetermine the `SERVERS` parameter. Suppose we have one BigBlueButton server and one AdobeConnect server, the parameter would look like this:\n```php\nconst SERVERS = [\n    [\n        'id'        =\u003e '1',\n        'type'      =\u003e BIGBLUEBUTTON,\n        'domain'    =\u003e 'vc1.example.com',\n        'secret'    =\u003e 'xxxxxxxxxx',\n        'title'     =\u003e 'Server 1',\n    ],\n    [\n        'id'        =\u003e '2',\n        'type'      =\u003e ADOBE_CONNECT,\n        'domain'    =\u003e 'vc2.example.com',\n        'login'     =\u003e 'xxxxxxxxxx',\n        'password'  =\u003e 'xxxxxxxxxx',\n        'title'     =\u003e 'Server 2',\n    ],\n];\n```\n\nDetermine the `USERS` parameter. In the following example, we have `usr1` which can access all of the servers and `usr2` that can only access the server with the id `2`. (If the `acl` property would be empty or not set, the user can access all the servers.)\n```php\nconst USERS = [\n    [\n        'username'  =\u003e 'usr1',\n        'password'  =\u003e 'usr1',\n        'name'      =\u003e 'User 1',\n    ],\n    [\n        'username'  =\u003e 'usr2',\n        'password'  =\u003e 'usr2',\n        'name'      =\u003e 'User 2',\n        'acl'       =\u003e ['2',],\n    ],\n];\n```\n\n### Servers Configuration\n\nThese steps are optional. If you'd like to see the usage of server resources in the Dashboard, follow them.\n\n#### BigBlueButton Server\n\nUpload `bams.php` file located in `tools` folder to the server, in the following directory:\n```\n/var/www/bigbluebutton-default/\n```\n\nRun this command to open the editor:\n```\nsudo nano /etc/nginx/sites-available/bigbluebutton\n```\n\nCopy the following code after `location` block, then save and exit the editor.\n```nginx\nlocation ~ \\.php$ {\n    include /etc/nginx/fastcgi_params;\n    fastcgi_pass unix:/run/php/php-fpm.sock;\n    fastcgi_param SCRIPT_FILENAME /var/www/bigbluebutton-default/$fastcgi_script_name;\n}\n```\n\nMake sure PHP package is installed on the server.\n\nFinally execute this command:\n```\nsudo apt install sysstat\n```\n\n#### AdobeConnect Server\n\nUpload `bams.war` file located in `tools` folder to the server, in the following directory:\n```\nC:\\Connect\\10.8.0\\appserv\\webapps\\\n```\nAccording to the installed version of AdobeConnect and the path, it may be a little different.\n\n## Author\n\n**Rabist** - view on [LinkedIn](https://www.linkedin.com/in/rabist)\n\n## License\n\nLicensed under [MIT](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeraked%2Fbams","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeraked%2Fbams","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeraked%2Fbams/lists"}