├── .gitignore ├── LICENSE ├── OWNERS ├── README.md ├── __init__.py ├── es_scripts ├── __init__.py ├── chaos_update.py ├── help_find_es.py ├── requirements.txt ├── update_cluster_verison.py ├── update_es_index.py └── update_es_uuid.py ├── get_graphana_link.py ├── perf-dashboard-grafana-crs ├── cleanup-grafana.sh ├── dashboards │ ├── api-perf-dashboard.yaml │ ├── etcd-perf-dashboard.yaml │ ├── kube-burner-aggregated.yaml │ ├── kube-burner-report.yaml │ ├── ocp-perf-dashboard.yaml │ ├── uperf-results.yaml │ └── vegeta-results.yaml ├── datasources │ ├── cluster-prometheus.yaml │ ├── elastic-ripsaw-fio-log.yaml │ ├── elastic-ripsaw-fio.yaml │ ├── elastic-ripsaw-kube-burner.yaml │ ├── elastic-ripsaw-uperf.yaml │ └── elastic-ripsaw-vegeta.yaml ├── grafana-instance.yaml ├── grafana-operator-install.yaml └── launch-grafana.sh ├── prow ├── Dockerfile ├── Dockerfile_test ├── README.md └── generate_jobs_in_gsheet │ ├── get_periodic_jobs.py │ └── requirements.txt └── scripts ├── find_cluster_data.py ├── requirements.txt └── sandman.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | data/ 3 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /es_scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /es_scripts/chaos_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/es_scripts/chaos_update.py -------------------------------------------------------------------------------- /es_scripts/help_find_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/es_scripts/help_find_es.py -------------------------------------------------------------------------------- /es_scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/es_scripts/requirements.txt -------------------------------------------------------------------------------- /es_scripts/update_cluster_verison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/es_scripts/update_cluster_verison.py -------------------------------------------------------------------------------- /es_scripts/update_es_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/es_scripts/update_es_index.py -------------------------------------------------------------------------------- /es_scripts/update_es_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/es_scripts/update_es_uuid.py -------------------------------------------------------------------------------- /get_graphana_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/get_graphana_link.py -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/cleanup-grafana.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/cleanup-grafana.sh -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/dashboards/api-perf-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/dashboards/api-perf-dashboard.yaml -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/dashboards/etcd-perf-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/dashboards/etcd-perf-dashboard.yaml -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/dashboards/kube-burner-aggregated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/dashboards/kube-burner-aggregated.yaml -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/dashboards/kube-burner-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/dashboards/kube-burner-report.yaml -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/dashboards/ocp-perf-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/dashboards/ocp-perf-dashboard.yaml -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/dashboards/uperf-results.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/dashboards/uperf-results.yaml -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/dashboards/vegeta-results.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/dashboards/vegeta-results.yaml -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/datasources/cluster-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/datasources/cluster-prometheus.yaml -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/datasources/elastic-ripsaw-fio-log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/datasources/elastic-ripsaw-fio-log.yaml -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/datasources/elastic-ripsaw-fio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/datasources/elastic-ripsaw-fio.yaml -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/datasources/elastic-ripsaw-kube-burner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/datasources/elastic-ripsaw-kube-burner.yaml -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/datasources/elastic-ripsaw-uperf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/datasources/elastic-ripsaw-uperf.yaml -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/datasources/elastic-ripsaw-vegeta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/datasources/elastic-ripsaw-vegeta.yaml -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/grafana-instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/grafana-instance.yaml -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/grafana-operator-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/grafana-operator-install.yaml -------------------------------------------------------------------------------- /perf-dashboard-grafana-crs/launch-grafana.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/perf-dashboard-grafana-crs/launch-grafana.sh -------------------------------------------------------------------------------- /prow/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/prow/Dockerfile -------------------------------------------------------------------------------- /prow/Dockerfile_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/prow/Dockerfile_test -------------------------------------------------------------------------------- /prow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/prow/README.md -------------------------------------------------------------------------------- /prow/generate_jobs_in_gsheet/get_periodic_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/prow/generate_jobs_in_gsheet/get_periodic_jobs.py -------------------------------------------------------------------------------- /prow/generate_jobs_in_gsheet/requirements.txt: -------------------------------------------------------------------------------- 1 | pyyaml 2 | oauth2client 3 | jq 4 | gspread 5 | -------------------------------------------------------------------------------- /scripts/find_cluster_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/scripts/find_cluster_data.py -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- 1 | argparse>=1.4.0 2 | coloredlogs>=15.0.1 3 | -------------------------------------------------------------------------------- /scripts/sandman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-eng/ocp-qe-perfscale-ci/HEAD/scripts/sandman.py --------------------------------------------------------------------------------