├── .env-example ├── .env.device-secrets-example ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── build-pages.yml │ ├── check-branch.yml │ ├── deploy-pages.yml │ └── push-image.yml ├── .gitignore ├── COLLECTOR_VERSION ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SUPPORT.md ├── code_of_conduct.md ├── config ├── README.md ├── ast_defaults.yaml └── bigip_receivers.yaml ├── diagrams └── ui.gif ├── docker-compose.yaml ├── https_setup.md ├── pages ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── assets │ ├── BigIP-Device-Pools.png │ ├── BigIP-Device-Profile-HTTP.png │ ├── BigIP-Device-TopN.png │ ├── BigIP-Device-Virtual-Server.png │ ├── BigIP-Device-WAF.png │ ├── BigIP-Device-iRules.png │ ├── BigIP-Fleet-Device-Utilization.png │ ├── BigIP-Fleet-Inventory.png │ ├── BigIP-Fleet-SSL-Certs.png │ ├── BigIP-Fleet-Virtual-Server.png │ ├── BipIP-Device-Overview.png │ ├── Collector-Stats.png │ └── ui.gif ├── components │ ├── components.md │ ├── grafana │ │ ├── dashboard.md │ │ └── grafana.md │ ├── otel_collector │ │ ├── otel_collector.md │ │ ├── receiver_metrics.md │ │ └── receiver_readme.md │ └── prometheus │ │ └── prometheus.md ├── config │ ├── config.md │ ├── config_helper │ │ ├── config_datafabric.md │ │ ├── config_defaults.md │ │ ├── config_dns_gtm.md │ │ ├── config_helper.md │ │ ├── config_receivers.md │ │ ├── config_tls.md │ │ └── metric_obfuscation.md │ ├── config_migration.md │ ├── manual_config │ │ ├── default_otel.md │ │ ├── manual_config.md │ │ └── receivers_pipelines.md │ └── secret_management │ │ ├── env_file_based.md │ │ ├── secret_management.md │ │ └── vault_based.md ├── datafabric │ ├── configuration.md │ └── datafabric.md ├── getting_started.md ├── index.md └── troubleshooting │ └── troubleshooting.md ├── requirements.txt ├── services ├── README.md ├── grafana │ └── provisioning │ │ ├── dashboards │ │ ├── bigip │ │ │ ├── device │ │ │ │ ├── device-gtm.json │ │ │ │ ├── device-irules.json │ │ │ │ ├── device-overview.json │ │ │ │ ├── device-pools-overview.json │ │ │ │ ├── device-ssl.json │ │ │ │ ├── device-virtual-server.json │ │ │ │ ├── device-waf-overview.json │ │ │ │ └── top-n.json │ │ │ ├── fleet │ │ │ │ ├── fleet-apm-session.json │ │ │ │ ├── fleet-cgnat.json │ │ │ │ ├── fleet-device-utilization.json │ │ │ │ ├── fleet-dos.json │ │ │ │ ├── fleet-firewall.json │ │ │ │ ├── fleet-inventory.json │ │ │ │ ├── fleet-virtual-server.json │ │ │ │ └── ssl-certificates.json │ │ │ └── profile │ │ │ │ ├── ltm-dns.json │ │ │ │ └── ltm-http.json │ │ ├── dashboards.yaml │ │ └── otel-collector │ │ │ ├── collector-health.json │ │ │ └── receiver-stats.json │ │ └── datasources │ │ └── datasources.yaml ├── otel_collector │ ├── defaults │ │ └── bigip-scraper-config.yaml │ ├── pipelines.yaml │ └── receivers.yaml └── prometheus │ └── prometheus.yml └── src ├── bin └── init_entrypoint.sh ├── config_helper.py └── config_helper_test.py /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/.env-example -------------------------------------------------------------------------------- /.env.device-secrets-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/.env.device-secrets-example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/build-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/.github/workflows/build-pages.yml -------------------------------------------------------------------------------- /.github/workflows/check-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/.github/workflows/check-branch.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/.github/workflows/deploy-pages.yml -------------------------------------------------------------------------------- /.github/workflows/push-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/.github/workflows/push-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/.gitignore -------------------------------------------------------------------------------- /COLLECTOR_VERSION: -------------------------------------------------------------------------------- 1 | v0.9.6 -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/config/README.md -------------------------------------------------------------------------------- /config/ast_defaults.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/config/ast_defaults.yaml -------------------------------------------------------------------------------- /config/bigip_receivers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/config/bigip_receivers.yaml -------------------------------------------------------------------------------- /diagrams/ui.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/diagrams/ui.gif -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /https_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/https_setup.md -------------------------------------------------------------------------------- /pages/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/.gitignore -------------------------------------------------------------------------------- /pages/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/Gemfile -------------------------------------------------------------------------------- /pages/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/Gemfile.lock -------------------------------------------------------------------------------- /pages/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/_config.yml -------------------------------------------------------------------------------- /pages/assets/BigIP-Device-Pools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/assets/BigIP-Device-Pools.png -------------------------------------------------------------------------------- /pages/assets/BigIP-Device-Profile-HTTP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/assets/BigIP-Device-Profile-HTTP.png -------------------------------------------------------------------------------- /pages/assets/BigIP-Device-TopN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/assets/BigIP-Device-TopN.png -------------------------------------------------------------------------------- /pages/assets/BigIP-Device-Virtual-Server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/assets/BigIP-Device-Virtual-Server.png -------------------------------------------------------------------------------- /pages/assets/BigIP-Device-WAF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/assets/BigIP-Device-WAF.png -------------------------------------------------------------------------------- /pages/assets/BigIP-Device-iRules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/assets/BigIP-Device-iRules.png -------------------------------------------------------------------------------- /pages/assets/BigIP-Fleet-Device-Utilization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/assets/BigIP-Fleet-Device-Utilization.png -------------------------------------------------------------------------------- /pages/assets/BigIP-Fleet-Inventory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/assets/BigIP-Fleet-Inventory.png -------------------------------------------------------------------------------- /pages/assets/BigIP-Fleet-SSL-Certs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/assets/BigIP-Fleet-SSL-Certs.png -------------------------------------------------------------------------------- /pages/assets/BigIP-Fleet-Virtual-Server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/assets/BigIP-Fleet-Virtual-Server.png -------------------------------------------------------------------------------- /pages/assets/BipIP-Device-Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/assets/BipIP-Device-Overview.png -------------------------------------------------------------------------------- /pages/assets/Collector-Stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/assets/Collector-Stats.png -------------------------------------------------------------------------------- /pages/assets/ui.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/assets/ui.gif -------------------------------------------------------------------------------- /pages/components/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/components/components.md -------------------------------------------------------------------------------- /pages/components/grafana/dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/components/grafana/dashboard.md -------------------------------------------------------------------------------- /pages/components/grafana/grafana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/components/grafana/grafana.md -------------------------------------------------------------------------------- /pages/components/otel_collector/otel_collector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/components/otel_collector/otel_collector.md -------------------------------------------------------------------------------- /pages/components/otel_collector/receiver_metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/components/otel_collector/receiver_metrics.md -------------------------------------------------------------------------------- /pages/components/otel_collector/receiver_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/components/otel_collector/receiver_readme.md -------------------------------------------------------------------------------- /pages/components/prometheus/prometheus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/components/prometheus/prometheus.md -------------------------------------------------------------------------------- /pages/config/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/config/config.md -------------------------------------------------------------------------------- /pages/config/config_helper/config_datafabric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/config/config_helper/config_datafabric.md -------------------------------------------------------------------------------- /pages/config/config_helper/config_defaults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/config/config_helper/config_defaults.md -------------------------------------------------------------------------------- /pages/config/config_helper/config_dns_gtm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/config/config_helper/config_dns_gtm.md -------------------------------------------------------------------------------- /pages/config/config_helper/config_helper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/config/config_helper/config_helper.md -------------------------------------------------------------------------------- /pages/config/config_helper/config_receivers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/config/config_helper/config_receivers.md -------------------------------------------------------------------------------- /pages/config/config_helper/config_tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/config/config_helper/config_tls.md -------------------------------------------------------------------------------- /pages/config/config_helper/metric_obfuscation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/config/config_helper/metric_obfuscation.md -------------------------------------------------------------------------------- /pages/config/config_migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/config/config_migration.md -------------------------------------------------------------------------------- /pages/config/manual_config/default_otel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/config/manual_config/default_otel.md -------------------------------------------------------------------------------- /pages/config/manual_config/manual_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/config/manual_config/manual_config.md -------------------------------------------------------------------------------- /pages/config/manual_config/receivers_pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/config/manual_config/receivers_pipelines.md -------------------------------------------------------------------------------- /pages/config/secret_management/env_file_based.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/config/secret_management/env_file_based.md -------------------------------------------------------------------------------- /pages/config/secret_management/secret_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/config/secret_management/secret_management.md -------------------------------------------------------------------------------- /pages/config/secret_management/vault_based.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/config/secret_management/vault_based.md -------------------------------------------------------------------------------- /pages/datafabric/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/datafabric/configuration.md -------------------------------------------------------------------------------- /pages/datafabric/datafabric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/datafabric/datafabric.md -------------------------------------------------------------------------------- /pages/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/getting_started.md -------------------------------------------------------------------------------- /pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/index.md -------------------------------------------------------------------------------- /pages/troubleshooting/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/pages/troubleshooting/troubleshooting.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML==6.0.2 2 | -------------------------------------------------------------------------------- /services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/README.md -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/device/device-gtm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/device/device-gtm.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/device/device-irules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/device/device-irules.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/device/device-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/device/device-overview.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/device/device-pools-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/device/device-pools-overview.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/device/device-ssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/device/device-ssl.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/device/device-virtual-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/device/device-virtual-server.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/device/device-waf-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/device/device-waf-overview.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/device/top-n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/device/top-n.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/fleet/fleet-apm-session.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/fleet/fleet-apm-session.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/fleet/fleet-cgnat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/fleet/fleet-cgnat.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/fleet/fleet-device-utilization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/fleet/fleet-device-utilization.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/fleet/fleet-dos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/fleet/fleet-dos.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/fleet/fleet-firewall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/fleet/fleet-firewall.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/fleet/fleet-inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/fleet/fleet-inventory.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/fleet/fleet-virtual-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/fleet/fleet-virtual-server.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/fleet/ssl-certificates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/fleet/ssl-certificates.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/profile/ltm-dns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/profile/ltm-dns.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/bigip/profile/ltm-http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/bigip/profile/ltm-http.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/dashboards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/dashboards.yaml -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/otel-collector/collector-health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/otel-collector/collector-health.json -------------------------------------------------------------------------------- /services/grafana/provisioning/dashboards/otel-collector/receiver-stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/dashboards/otel-collector/receiver-stats.json -------------------------------------------------------------------------------- /services/grafana/provisioning/datasources/datasources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/grafana/provisioning/datasources/datasources.yaml -------------------------------------------------------------------------------- /services/otel_collector/defaults/bigip-scraper-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/otel_collector/defaults/bigip-scraper-config.yaml -------------------------------------------------------------------------------- /services/otel_collector/pipelines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/otel_collector/pipelines.yaml -------------------------------------------------------------------------------- /services/otel_collector/receivers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/otel_collector/receivers.yaml -------------------------------------------------------------------------------- /services/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/services/prometheus/prometheus.yml -------------------------------------------------------------------------------- /src/bin/init_entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | pip install PyYAML==6.0.2 3 | python /app/src/config_helper.py "$@" -------------------------------------------------------------------------------- /src/config_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/src/config_helper.py -------------------------------------------------------------------------------- /src/config_helper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/application-study-tool/HEAD/src/config_helper_test.py --------------------------------------------------------------------------------