Last active
February 9, 2026 17:55
-
-
Save wfouche/e1171574fef4fc11a395b75c15194d59 to your computer and use it in GitHub Desktop.
Tulip Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "actions": { | |
| "description": "jsonplaceholder.typicode.com", | |
| "output_filename": "benchmark_output.json", | |
| "report_filename": "benchmark_report.html", | |
| "user_class": "APIUser", | |
| "user_params": { | |
| "url": "http://jsonplaceholder.typicode.com", | |
| "httpVersion": "HTTP_1_1", | |
| "connectTimeoutMillis": 5000, | |
| "readTimeoutMillis": 10000, | |
| "debug": false | |
| }, | |
| "user_actions": { | |
| "1": "GET:Get all posts", | |
| "2": "POST:Create post", | |
| "3": "GET:Get single post" | |
| } | |
| }, | |
| "benchmarks": { | |
| "REST1": { | |
| "enabled": true, | |
| "aps_rate": 40.0, | |
| "scenario_actions": [ | |
| {"id": 1, "weight": 3}, | |
| {"id": 2, "weight": 1}, | |
| {"id": 3, "weight": 2} | |
| ], | |
| "time": { | |
| "warmup_duration1": 30, | |
| "warmup_duration2": 10, | |
| "benchmark_duration": 30, | |
| "benchmark_iterations": 3 | |
| } | |
| } | |
| }, | |
| "contexts": { | |
| "Context-1": { | |
| "enabled": true, | |
| "num_users": 80, | |
| "num_tasks": 10 | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment