├── LICENSE ├── README.md ├── hey_scripts └── hey_kc_perf.sh ├── util ├── get_offline_token.sh └── test-token-endpoint.sh ├── vegeta_scripts ├── body.json ├── generate_reports.sh ├── targets ├── vegeta_entitlement_local.sh └── vegeta_kc_perf.sh └── wrk_scripts ├── script_kc_access_token.lua ├── script_kc_authorization.lua └── wrk-kc-test.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-services/keycloak-performance-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-services/keycloak-performance-scripts/HEAD/README.md -------------------------------------------------------------------------------- /hey_scripts/hey_kc_perf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-services/keycloak-performance-scripts/HEAD/hey_scripts/hey_kc_perf.sh -------------------------------------------------------------------------------- /util/get_offline_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-services/keycloak-performance-scripts/HEAD/util/get_offline_token.sh -------------------------------------------------------------------------------- /util/test-token-endpoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-services/keycloak-performance-scripts/HEAD/util/test-token-endpoint.sh -------------------------------------------------------------------------------- /vegeta_scripts/body.json: -------------------------------------------------------------------------------- 1 | {"permissions":[{"resource_set_name":"MySpace"}]} 2 | -------------------------------------------------------------------------------- /vegeta_scripts/generate_reports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-services/keycloak-performance-scripts/HEAD/vegeta_scripts/generate_reports.sh -------------------------------------------------------------------------------- /vegeta_scripts/targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-services/keycloak-performance-scripts/HEAD/vegeta_scripts/targets -------------------------------------------------------------------------------- /vegeta_scripts/vegeta_entitlement_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-services/keycloak-performance-scripts/HEAD/vegeta_scripts/vegeta_entitlement_local.sh -------------------------------------------------------------------------------- /vegeta_scripts/vegeta_kc_perf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-services/keycloak-performance-scripts/HEAD/vegeta_scripts/vegeta_kc_perf.sh -------------------------------------------------------------------------------- /wrk_scripts/script_kc_access_token.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-services/keycloak-performance-scripts/HEAD/wrk_scripts/script_kc_access_token.lua -------------------------------------------------------------------------------- /wrk_scripts/script_kc_authorization.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-services/keycloak-performance-scripts/HEAD/wrk_scripts/script_kc_authorization.lua -------------------------------------------------------------------------------- /wrk_scripts/wrk-kc-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-services/keycloak-performance-scripts/HEAD/wrk_scripts/wrk-kc-test.sh --------------------------------------------------------------------------------