{"id":16096368,"url":"https://github.com/sio/munin_plugin_fdcount","last_synced_at":"2025-08-18T09:09:08.139Z","repository":{"id":101312915,"uuid":"182984730","full_name":"sio/munin_plugin_fdcount","owner":"sio","description":"Munin plugin for monitoring number of open file descriptors","archived":false,"fork":false,"pushed_at":"2020-09-10T19:16:14.000Z","size":53,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-05T20:31:59.013Z","etag":null,"topics":["monitoring","munin","munin-plugins","plugin"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sio.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":"2019-04-23T09:47:36.000Z","updated_at":"2023-01-29T22:05:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"ccdc4734-c72c-4d44-9940-05379ef76245","html_url":"https://github.com/sio/munin_plugin_fdcount","commit_stats":{"total_commits":14,"total_committers":1,"mean_commits":14.0,"dds":0.0,"last_synced_commit":"26bfe89036ec651f9fbe7fba7674dcbabf0c0063"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sio/munin_plugin_fdcount","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sio%2Fmunin_plugin_fdcount","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sio%2Fmunin_plugin_fdcount/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sio%2Fmunin_plugin_fdcount/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sio%2Fmunin_plugin_fdcount/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sio","download_url":"https://codeload.github.com/sio/munin_plugin_fdcount/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sio%2Fmunin_plugin_fdcount/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270968669,"owners_count":24677149,"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","status":"online","status_checked_at":"2025-08-18T02:00:08.743Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["monitoring","munin","munin-plugins","plugin"],"created_at":"2024-10-09T17:13:49.064Z","updated_at":"2025-08-18T09:09:08.118Z","avatar_url":"https://github.com/sio.png","language":"Python","readme":"# Munin plugin for monitoring number of open file descriptors\n\n## Project status\n\nThis plugin is used daily on a couple of machines and causes no headaches.\nTested on Debian Stable, other setups should work fine but were not tried yet.\n\n\n## Overview\n\nThis plugin tracks number of open files for all processes of the specified\nprogram. Each process is represented by its own line in the chart.\n\n![Graph example](example.png)\n\n\n## Installation and usage\n\nTo install this plugin you need to copy/symlink [fdcount.py](fdcount.py) to\nMunin's plugin directory (usually `/etc/munin/plugins/`) and make that file\nexecutable (`chmod +x`).\n\nThis plugin MUST be configured before use:\n- `env.fdcount_target` - executable name for processes to monitor\n  (required)\n- `env.fdcount_strict` - if this variable is set, `env.fdcount_target` must\n  contain full executable path instead of just the filename\n- `env.fdcount_track_pids` - if this variable is set, processes will be\n  distinguished based on their PID instead of just command line\n- `user` - either `root` or the user that started the processes in\n  question\n\nMore information on installation and configuration of plugins is available in\nthe [Munin Guide](http://guide.munin-monitoring.org/en/latest/plugin/use.html)\n\n\n## Configuration example (`/etc/munin/plugin-conf.d/fdcount`)\n\nShort version with just the filename:\n\n```\n[fdcount.py]\nenv.fdcount_target transmission-daemon\nuser root\n```\n\nMore specific target:\n\n```\n[fdcount.py]\nenv.fdcount_target /usr/bin/transmission-daemon\nenv.fdcount_strict 1\nuser transmission\n```\n\n\n## Support and contributing\n\nIf you need help with using this plugin please create [**an\nissue**](https://github.com/sio/munin_plugin_fdcount/issues). Issues are also\nthe primary venue for reporting bugs and posting feature requests. General\ndiscussion related to this project is also acceptable and very welcome!\n\nIn case you wish to contribute code or documentation, feel free to open [**a\npull request**](https://github.com/sio/munin_plugin_fdcount/pulls). That would\ncertainly make my day!\n\nI'm open to dialog and I promise to behave responsibly and treat all\ncontributors with respect. Please try to do the same, and treat others the way\nyou want to be treated.\n\nIf for some reason you'd rather not use the issue tracker, contacting me via\nemail is OK too. Please use a descriptive subject line to enhance visibility\nof your message. Also please keep in mind that public discussion channels are\npreferable because that way many other people may benefit from reading past\nconversations. My email is visible under the GitHub profile and in the commit\nlog.\n\n\n## License and copyright\n\nCopyright 2019 Vitaly Potyarkin\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n        http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsio%2Fmunin_plugin_fdcount","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsio%2Fmunin_plugin_fdcount","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsio%2Fmunin_plugin_fdcount/lists"}