├── .github └── workflows │ ├── codeql.yml │ └── pylint.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── collector.py ├── collectors ├── __init__.py ├── certificate_collector.py ├── firmware_collector.py ├── health_collector.py └── performance_collector.py ├── config.yml ├── dockerbuild.ps1 ├── handler.py ├── main.py ├── redfish-exporter.sh ├── renovate.json └── requirements.txt /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .vscode/* 3 | env_* 4 | hosts_*.txt 5 | *.ps1 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/README.md -------------------------------------------------------------------------------- /collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/collector.py -------------------------------------------------------------------------------- /collectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectors/certificate_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/collectors/certificate_collector.py -------------------------------------------------------------------------------- /collectors/firmware_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/collectors/firmware_collector.py -------------------------------------------------------------------------------- /collectors/health_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/collectors/health_collector.py -------------------------------------------------------------------------------- /collectors/performance_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/collectors/performance_collector.py -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/config.yml -------------------------------------------------------------------------------- /dockerbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/dockerbuild.ps1 -------------------------------------------------------------------------------- /handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/handler.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/main.py -------------------------------------------------------------------------------- /redfish-exporter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/redfish-exporter.sh -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/renovate.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapcc/redfish-exporter/HEAD/requirements.txt --------------------------------------------------------------------------------