{"id":15354617,"url":"https://github.com/jtsage/muncollapse","last_synced_at":"2026-05-08T15:42:21.262Z","repository":{"id":140199884,"uuid":"253398870","full_name":"jtsage/muncollapse","owner":"jtsage","description":"Spiritual Successor to the munstrap Munin template (using bootstrap 4, fixing some things I didn't like)","archived":false,"fork":false,"pushed_at":"2020-04-16T02:43:26.000Z","size":1111,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-27T14:53:12.362Z","etag":null,"topics":["bootstrap4","munin","munin-graphs","munin-monitoring","munin-plugins"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jtsage.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":"2020-04-06T04:58:40.000Z","updated_at":"2020-04-16T02:43:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"ffb2f798-57ae-4e89-b34c-11a6296fe72e","html_url":"https://github.com/jtsage/muncollapse","commit_stats":{"total_commits":31,"total_committers":1,"mean_commits":31.0,"dds":0.0,"last_synced_commit":"e4e880e08fe33e999c2ba5c8c4f68d5548c8341f"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/jtsage/muncollapse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jtsage%2Fmuncollapse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jtsage%2Fmuncollapse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jtsage%2Fmuncollapse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jtsage%2Fmuncollapse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jtsage","download_url":"https://codeload.github.com/jtsage/muncollapse/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jtsage%2Fmuncollapse/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260399157,"owners_count":23003112,"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":["bootstrap4","munin","munin-graphs","munin-monitoring","munin-plugins"],"created_at":"2024-10-01T12:20:03.924Z","updated_at":"2026-05-08T15:42:16.240Z","avatar_url":"https://github.com/jtsage.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MunCollapse\n\nAlternative Munin 2.x templates based on Twitter Bootstrap using collapsibles.\n\nBased on some of the work of \"Munstrap\" by [Jonny McCullagh](https://github.com/jonnymccullagh), [munin-monitoring/contrib](https://github.com/munin-monitoring/contrib/tree/master/templates/munstrap) repo.\n\n#### Overview Sample Image\n\u003ca href=\"sample-image/sample-home.png\"\u003e\u003cimg src=\"sample-image/sample-home.png\" style=\"max-width: 1229px; display:block; margin-left: auto; margin-right: auto; width: 75%\" /\u003e\u003c/a\u003e\n\n[Semi-Live Demo](https://jtsage.dev/munin-demo/) - For the purposes of this demo only, the data is static and the zoom functionality is disabled.\n\n---\n\n## Installation\n\n### 1. Clone the munin-monitoring/contrib repo to a temporary location:\n\n```\n$ cd /opt\n$ git clone https://github.com/munin-monitoring/contrib.git\n```\n\n### 2. Fetch the template libraries\n\n```\n$ cd /opt/contrib/templates/muncollapse/\n$ make\n```\n\n### 3. Place the template in an appropriate safe place\n\nUbuntu shown - other distros may prefer ```/usr/local/share/munin/...```\n\n```\n$ mkdir /usr/share/munin/template\n$ mkdir /usr/share/munin/template/muncollapse\n```\n__NOTE__: If this step fails, your munin installation may use ```/usr/local/share/munin/...``` instead!\n\n```\n$ cp -r /opt/contrib/templates/muncollapse/templates /usr/share/munin/template/muncollapse/\n$ cp -r /opt/contrib/templates/muncollapse/static /usr/share/munin/template/muncollapse/\n```\n\n### 4. Edit your ```munin.conf``` file.\n\nTypically located at ```/etc/munin.conf```\n\n__FIND AND CHANGE:__ (near the top of the file)\n\n```\n# Where to look for the HTML templates\n#\n#tmpldir        /etc/munin/templates\n\n# Where to look for the static www files\n#\n#staticdir /etc/munin/static\n```\n\n__TO:__\n```\n# Where to look for the HTML templates\n#\ntmpldir /usr/share/munin/template/muncollapse/templates\n\n# Where to look for the static www files\n#\nstaticdir /usr/share/munin/template/muncollapse/static\n```\n\n### 5. [Optional / Recommended] Clean out the old generated files.\n\nThis isn't really required, but there will likely be orphaned files.  The location of these files can be found in your ```munin.conf``` file, with the ```htmldir``` directive.\n\n__NOTE:__ Ubuntu shown, other distributions may be in ```/var/www/munin/```\n\n```\n$ rm -rf /var/cache/munin/www/*\n```\n\n### 6. Wait Patiently\n\n```munin-update``` will regenerate the files the next time it runs.  By default, this is on the :05 minute tick for most installations. If you do not have new files within 10 minutes, be sure to check ```munin-update.log``` and find out what went wrong.\n\n---\n\n## Revert to Official Munin Template\n\n### 1. Edit your ```munin.conf``` file.\n\nTypically located at ```/etc/munin.conf```\n\n__FIND AND CHANGE:__ (near the top of the file - comment these lines out!)\n\n# Where to look for the HTML templates\n#\n#tmpldir /usr/share/munin/template/muncollapse/templates\n\n# Where to look for the static www files\n#\n#staticdir /usr/share/munin/template/muncollapse/static\n\n### 2. [Optional / Recommended] Clean up\n\nRemove the files from step #1 \u0026 #3 above, and repeat step #5 \u0026 #6.\n\n---\n\n## Samples\n\n#### View of a group:\n\u003ca href=\"sample-image/sample-group.png\"\u003e\u003cimg src=\"sample-image/sample-group.png\" style=\"max-width: 1229px; display:block; margin-left: auto; margin-right: auto; width: 75%\" /\u003e\u003c/a\u003e\n\n#### View of a specific node:\n\u003ca href=\"sample-image/sample-node.png\"\u003e\u003cimg src=\"sample-image/sample-node.png\" style=\"max-width: 1229px; display:block; margin-left: auto; margin-right: auto; width: 75%\" /\u003e\u003c/a\u003e\n\n\n#### Zoom feature:\n\u003ca href=\"sample-image/sample-zoom.png\"\u003e\u003cimg src=\"sample-image/sample-zoom.png\" style=\"max-width: 1229px; display:block; margin-left: auto; margin-right: auto; width: 75%\" /\u003e\u003c/a\u003e\n\n\n---\n\n## Munin Compatibility\n\na/n: I am unsure of the compatibility with Munin 3. Most things will work from what I've read, but the navigation may be slightly funky.\n\n---\n\n### Browser Compatibility\n\nFor this template set, Internet Explorer support has been dropped for the dynamic zoom functions. Everything else should work across all browsers.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjtsage%2Fmuncollapse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjtsage%2Fmuncollapse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjtsage%2Fmuncollapse/lists"}