-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Benchmark comparison refactor Signed-off-by: Raul Sevilla <[email protected]> * Output CSV to file Signed-off-by: Raul Sevilla <[email protected]> * Increment size to get more than 10 aggregations Signed-off-by: Raul Sevilla <[email protected]> * Remove collate Signed-off-by: Raul Sevilla <[email protected]> * Fix exclude and kubeburner comparison Signed-off-by: Raul Sevilla <[email protected]> * Generate stdout using tabulate Signed-off-by: Raul Sevilla <[email protected]> * Remove emit_compare_map Signed-off-by: Raul Sevilla <[email protected]> * Deprecate print_metadata_dict Signed-off-by: Raul Sevilla <[email protected]> * Remove compute and provide configuration file option Signed-off-by: Raul Sevilla <[email protected]> * Update docs Signed-off-by: Raul Sevilla <[email protected]> * Rebase scale Signed-off-by: Raul Sevilla <[email protected]> * README typo Signed-off-by: Raul Sevilla <[email protected]> * replace write_message_size Signed-off-by: Raul Sevilla <[email protected]>
- Loading branch information
1 parent
d3c5dc4
commit 3b7b8f2
Showing
27 changed files
with
1,270 additions
and
1,024 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"elasticsearch": { | ||
"metadata": {}, | ||
"ripsaw": { | ||
"ripsaw-kube-burner": [ | ||
{ | ||
"filter": { | ||
"metricName.keyword": "podLatencyQuantilesMeasurement" | ||
}, | ||
"buckets": [ | ||
"quantileName.keyword" | ||
], | ||
"aggregations": { | ||
"P99": [ | ||
"avg" | ||
] | ||
} | ||
}, | ||
{ | ||
"filter": {}, | ||
"exclude": [ | ||
{ | ||
"metricName.keyword": "podLatencyMeasurement" | ||
}, | ||
{ | ||
"metricName.keyword": "podLatencyQuantilesMeasurement" | ||
}, | ||
{ | ||
"metricName.keyword": "jobSummary" | ||
}, | ||
{ | ||
"metricName.keyword": "nodeRoles" | ||
} | ||
], | ||
"buckets": [ | ||
"metricName.keyword" | ||
], | ||
"aggregations": { | ||
"value": [ | ||
"avg" | ||
] | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
{ | ||
"elasticsearch": { | ||
"metadata": { | ||
"cpuinfo-metadata": { | ||
"element": "pod_name", | ||
"compare": [ | ||
"value.Model name", | ||
"value.Architecture", | ||
"value.CPU(s)" | ||
] | ||
}, | ||
"meminfo-metadata": { | ||
"element": "pod_name", | ||
"compare": [ | ||
"value.MemTotal", | ||
"value.Active" | ||
] | ||
} | ||
}, | ||
"ripsaw": { | ||
"router-test-results": [ | ||
{ | ||
"filter": { | ||
"test_type": "http" | ||
}, | ||
"buckets": [ | ||
"routes", | ||
"conn_per_targetroute", | ||
"keepalive" | ||
], | ||
"aggregations": { | ||
"requests_per_second": [ | ||
"avg" | ||
], | ||
"latency_95pctl": [ | ||
"avg" | ||
] | ||
} | ||
}, | ||
{ | ||
"filter": { | ||
"test_type": "edge" | ||
}, | ||
"buckets": [ | ||
"routes", | ||
"conn_per_targetroute", | ||
"keepalive" | ||
], | ||
"aggregations": { | ||
"requests_per_second": [ | ||
"avg" | ||
], | ||
"latency_95pctl": [ | ||
"avg" | ||
] | ||
} | ||
}, | ||
{ | ||
"filter": { | ||
"test_type": "passthrough" | ||
}, | ||
"buckets": [ | ||
"routes", | ||
"conn_per_targetroute", | ||
"keepalive" | ||
], | ||
"aggregations": { | ||
"requests_per_second": [ | ||
"avg" | ||
], | ||
"latency_95pctl": [ | ||
"avg" | ||
] | ||
} | ||
}, | ||
{ | ||
"filter": { | ||
"test_type": "reencrypt" | ||
}, | ||
"buckets": [ | ||
"routes", | ||
"conn_per_targetroute", | ||
"keepalive" | ||
], | ||
"aggregations": { | ||
"requests_per_second": [ | ||
"avg" | ||
], | ||
"latency_95pctl": [ | ||
"avg" | ||
] | ||
} | ||
}, | ||
{ | ||
"filter": { | ||
"test_type": "mix" | ||
}, | ||
"buckets": [ | ||
"routes", | ||
"conn_per_targetroute", | ||
"keepalive" | ||
], | ||
"aggregations": { | ||
"requests_per_second": [ | ||
"avg" | ||
], | ||
"latency_95pctl": [ | ||
"avg" | ||
] | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"metadata": { | ||
"cpuinfo-metadata": { | ||
"element": "pod_name", | ||
"compare": ["value.Model name", "value.Architecture", | ||
"value.CPU(s)" | ||
] | ||
} | ||
} | ||
{ | ||
"metadata": { | ||
"cpuinfo-metadata": { | ||
"element": "pod_name", | ||
"compare": ["value.Model name", "value.Architecture", | ||
"value.CPU(s)" | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.