├── .gitignore ├── LICENSE ├── Monitoring.png ├── README.md ├── adhoc-scripts ├── check_safe_bounds.py ├── compare_stats_from_grafana.py ├── control_node_setup.sh ├── get_metrices_from_config.py ├── get_safe_bounds.py ├── get_stats_from_grafana-Minimal.yaml ├── get_stats_from_grafana-Pulp3.yaml ├── get_stats_from_grafana-Sat.yaml ├── get_stats_from_grafana.py └── show_stats_from_grafana_progress.py ├── ansible ├── README.md ├── collectd-generic.yaml ├── dashboard-generic.yaml ├── filter_plugins │ └── satellite_install_filters.py ├── grafana-pcp.yaml ├── grafana.yaml ├── graphite.yaml ├── monitoring-plugins.yaml ├── profile-generic.yaml ├── roles │ ├── collectd-generic │ │ ├── files │ │ │ ├── cfme-http.conf │ │ │ ├── custom-collectd.pp │ │ │ ├── status-passenger.conf │ │ │ └── status.conf │ │ ├── handlers │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── templates │ │ │ ├── capsules.collectd.conf.j2 │ │ │ ├── docker-hosts.collectd.conf.j2 │ │ │ └── satellite6.collectd.conf.j2 │ │ └── vars │ │ │ └── main.yml │ ├── dashboard-generic │ │ ├── tasks │ │ │ └── main.yml │ │ ├── templates │ │ │ └── satellite6_general_system_performance.json.j2 │ │ └── vars │ │ │ └── main.yml │ ├── grafana-quadlet │ │ ├── handlers │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yml │ ├── grafana │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ └── data_source.json.j2 │ ├── graphite │ │ ├── files │ │ │ ├── carbon.conf │ │ │ ├── storage-aggregation.conf │ │ │ └── storage-schemas.conf │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ └── graphite-web.conf.j2 │ ├── monitoring-plugins │ │ ├── files │ │ │ └── satellite-reporter.service │ │ ├── tasks │ │ │ └── main.yaml │ │ └── templates │ │ │ └── satellite_stats.py.j2 │ ├── pcp-quadlet │ │ ├── handlers │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yml │ ├── profile-generic │ │ └── tasks │ │ │ └── main.yml │ ├── pull-images │ │ └── tasks │ │ │ └── main.yml │ ├── rhsm │ │ └── tasks │ │ │ └── main.yaml │ ├── systemd_target │ │ └── tasks │ │ │ └── main.yml │ └── valkey-quadlet │ │ ├── handlers │ │ └── main.yml │ │ └── tasks │ │ └── main.yml └── vars │ ├── images.yml │ └── services.yml ├── conf ├── hosts.ini.sample └── satmon.yaml ├── docs └── faqs.md ├── pcp.yaml └── rel-eng ├── build.sh └── satellite-monitoring.spec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/LICENSE -------------------------------------------------------------------------------- /Monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/Monitoring.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/README.md -------------------------------------------------------------------------------- /adhoc-scripts/check_safe_bounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/adhoc-scripts/check_safe_bounds.py -------------------------------------------------------------------------------- /adhoc-scripts/compare_stats_from_grafana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/adhoc-scripts/compare_stats_from_grafana.py -------------------------------------------------------------------------------- /adhoc-scripts/control_node_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/adhoc-scripts/control_node_setup.sh -------------------------------------------------------------------------------- /adhoc-scripts/get_metrices_from_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/adhoc-scripts/get_metrices_from_config.py -------------------------------------------------------------------------------- /adhoc-scripts/get_safe_bounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/adhoc-scripts/get_safe_bounds.py -------------------------------------------------------------------------------- /adhoc-scripts/get_stats_from_grafana-Minimal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/adhoc-scripts/get_stats_from_grafana-Minimal.yaml -------------------------------------------------------------------------------- /adhoc-scripts/get_stats_from_grafana-Pulp3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/adhoc-scripts/get_stats_from_grafana-Pulp3.yaml -------------------------------------------------------------------------------- /adhoc-scripts/get_stats_from_grafana-Sat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/adhoc-scripts/get_stats_from_grafana-Sat.yaml -------------------------------------------------------------------------------- /adhoc-scripts/get_stats_from_grafana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/adhoc-scripts/get_stats_from_grafana.py -------------------------------------------------------------------------------- /adhoc-scripts/show_stats_from_grafana_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/adhoc-scripts/show_stats_from_grafana_progress.py -------------------------------------------------------------------------------- /ansible/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/collectd-generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/collectd-generic.yaml -------------------------------------------------------------------------------- /ansible/dashboard-generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/dashboard-generic.yaml -------------------------------------------------------------------------------- /ansible/filter_plugins/satellite_install_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/filter_plugins/satellite_install_filters.py -------------------------------------------------------------------------------- /ansible/grafana-pcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/grafana-pcp.yaml -------------------------------------------------------------------------------- /ansible/grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/grafana.yaml -------------------------------------------------------------------------------- /ansible/graphite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/graphite.yaml -------------------------------------------------------------------------------- /ansible/monitoring-plugins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/monitoring-plugins.yaml -------------------------------------------------------------------------------- /ansible/profile-generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/profile-generic.yaml -------------------------------------------------------------------------------- /ansible/roles/collectd-generic/files/cfme-http.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/collectd-generic/files/cfme-http.conf -------------------------------------------------------------------------------- /ansible/roles/collectd-generic/files/custom-collectd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/collectd-generic/files/custom-collectd.pp -------------------------------------------------------------------------------- /ansible/roles/collectd-generic/files/status-passenger.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/collectd-generic/files/status-passenger.conf -------------------------------------------------------------------------------- /ansible/roles/collectd-generic/files/status.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/collectd-generic/files/status.conf -------------------------------------------------------------------------------- /ansible/roles/collectd-generic/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/collectd-generic/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/collectd-generic/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/collectd-generic/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/collectd-generic/templates/capsules.collectd.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/collectd-generic/templates/capsules.collectd.conf.j2 -------------------------------------------------------------------------------- /ansible/roles/collectd-generic/templates/docker-hosts.collectd.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/collectd-generic/templates/docker-hosts.collectd.conf.j2 -------------------------------------------------------------------------------- /ansible/roles/collectd-generic/templates/satellite6.collectd.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/collectd-generic/templates/satellite6.collectd.conf.j2 -------------------------------------------------------------------------------- /ansible/roles/collectd-generic/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/collectd-generic/vars/main.yml -------------------------------------------------------------------------------- /ansible/roles/dashboard-generic/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/dashboard-generic/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/dashboard-generic/templates/satellite6_general_system_performance.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/dashboard-generic/templates/satellite6_general_system_performance.json.j2 -------------------------------------------------------------------------------- /ansible/roles/dashboard-generic/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/dashboard-generic/vars/main.yml -------------------------------------------------------------------------------- /ansible/roles/grafana-quadlet/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/grafana-quadlet/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/grafana-quadlet/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/grafana-quadlet/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/grafana/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/grafana/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/grafana/templates/data_source.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/grafana/templates/data_source.json.j2 -------------------------------------------------------------------------------- /ansible/roles/graphite/files/carbon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/graphite/files/carbon.conf -------------------------------------------------------------------------------- /ansible/roles/graphite/files/storage-aggregation.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/roles/graphite/files/storage-schemas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/graphite/files/storage-schemas.conf -------------------------------------------------------------------------------- /ansible/roles/graphite/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/graphite/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/graphite/templates/graphite-web.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/graphite/templates/graphite-web.conf.j2 -------------------------------------------------------------------------------- /ansible/roles/monitoring-plugins/files/satellite-reporter.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/monitoring-plugins/files/satellite-reporter.service -------------------------------------------------------------------------------- /ansible/roles/monitoring-plugins/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/monitoring-plugins/tasks/main.yaml -------------------------------------------------------------------------------- /ansible/roles/monitoring-plugins/templates/satellite_stats.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/monitoring-plugins/templates/satellite_stats.py.j2 -------------------------------------------------------------------------------- /ansible/roles/pcp-quadlet/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/pcp-quadlet/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/pcp-quadlet/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/pcp-quadlet/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/profile-generic/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/profile-generic/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/pull-images/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/pull-images/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/rhsm/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/rhsm/tasks/main.yaml -------------------------------------------------------------------------------- /ansible/roles/systemd_target/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/systemd_target/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/valkey-quadlet/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/valkey-quadlet/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/valkey-quadlet/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/roles/valkey-quadlet/tasks/main.yml -------------------------------------------------------------------------------- /ansible/vars/images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/vars/images.yml -------------------------------------------------------------------------------- /ansible/vars/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/ansible/vars/services.yml -------------------------------------------------------------------------------- /conf/hosts.ini.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/conf/hosts.ini.sample -------------------------------------------------------------------------------- /conf/satmon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/conf/satmon.yaml -------------------------------------------------------------------------------- /docs/faqs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/pcp.yaml -------------------------------------------------------------------------------- /rel-eng/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/rel-eng/build.sh -------------------------------------------------------------------------------- /rel-eng/satellite-monitoring.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/satellite-monitoring/HEAD/rel-eng/satellite-monitoring.spec --------------------------------------------------------------------------------