Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding ingress metric file #91

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 74 additions & 0 deletions examples/readout-ingress.yaml
Original file line number Diff line number Diff line change
@@ -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
Loading