From bafa9303e05a8697fcdf193416367f0bb55484d3 Mon Sep 17 00:00:00 2001 From: Paige Patton Date: Thu, 23 Jan 2025 10:51:58 -0500 Subject: [PATCH] adding ingress metric file Signed-off-by: Paige Patton --- examples/readout-ingress.yaml | 74 +++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 examples/readout-ingress.yaml diff --git a/examples/readout-ingress.yaml b/examples/readout-ingress.yaml new file mode 100644 index 0000000..a0a6ed5 --- /dev/null +++ b/examples/readout-ingress.yaml @@ -0,0 +1,74 @@ +tests : + - name : ingress-perf + index: {{ es_metadata_index }} + benchmarkIndex: {{ es_benchmark_index }} + metadata: + ocpVersion: {{ version }} + platform: AWS + clusterType: self-managed + benchmark.keyword: ingress-perf + masterNodesCount: 3 + workerNodesCount: 9 + masterNodesType: m6a.xlarge + workerNodesType: m5.2xlarge + networkType: OVNKubernetes + encrypted: false + fips: false + ipsec: false + + metrics : + - name: passthrough_avg_rps + config.termination: passthrough + metric_of_interest: total_avg_rps + agg: + value: total_avg_rps + agg_type: avg + + - name: passthrough_avg_lat + config.termination: passthrough + metric_of_interest: avg_lat_us + agg: + value: avg_lat_us + agg_type: avg + + - name: http_avg_rps + config.termination: http + metric_of_interest: total_avg_rps + agg: + value: total_avg_rps + agg_type: avg + + - name: http_avg_lat + config.termination: http + metric_of_interest: avg_lat_us + agg: + value: avg_lat_us + agg_type: avg + + - name: reencrypt_avg_rps + config.termination: reencrypt + metric_of_interest: total_avg_rps + agg: + value: total_avg_rps + agg_type: avg + + - name: reencrypt_avg_lat + config.termination: reencrypt + metric_of_interest: avg_lat_us + agg: + value: avg_lat_us + agg_type: avg + + - name: edge_avg_rps + config.termination: edge + metric_of_interest: total_avg_rps + agg: + value: total_avg_rps + agg_type: avg + + - name: edge_avg_lat + config.termination: edge + metric_of_interest: avg_lat_us + agg: + value: avg_lat_us + agg_type: avg \ No newline at end of file