-
Notifications
You must be signed in to change notification settings - Fork 9
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
Support for Daemon mode for orion #26
Changes from 10 commits
8ac467f
cf7d4ef
abf710f
10d2300
3d3c729
994b7ff
1be2071
7be9fcb
8e1b95b
627caaf
33250ac
306515e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
tests : | ||
- name : aws-small-scale-cluster-density-v2 | ||
index: ospst-perf-scale-ci-* | ||
benchmarkIndex: ospst-ripsaw-kube-burner* | ||
metadata: | ||
platform: AWS | ||
masterNodesType: m6a.xlarge | ||
masterNodesCount: 3 | ||
workerNodesType: m6a.xlarge | ||
workerNodesCount: 24 | ||
benchmark.keyword: cluster-density-v2 | ||
ocpVersion: {{ version }} | ||
networkType: OVNKubernetes | ||
# encrypted: true | ||
# fips: false | ||
# ipsec: false | ||
|
||
metrics : | ||
- name: podReadyLatency | ||
metricName: podLatencyQuantilesMeasurement | ||
quantileName: Ready | ||
metric_of_interest: P99 | ||
not: | ||
jobConfig.name: "garbage-collection" | ||
|
||
- name: apiserverCPU | ||
metricName : containerCPU | ||
labels.namespace.keyword: openshift-kube-apiserver | ||
metric_of_interest: value | ||
agg: | ||
value: cpu | ||
agg_type: avg | ||
|
||
- name: ovnCPU | ||
metricName : containerCPU | ||
labels.namespace.keyword: openshift-ovn-kubernetes | ||
metric_of_interest: value | ||
agg: | ||
value: cpu | ||
agg_type: avg | ||
|
||
- name: etcdCPU | ||
metricName : containerCPU | ||
labels.namespace.keyword: openshift-etcd | ||
metric_of_interest: value | ||
agg: | ||
value: cpu | ||
agg_type: avg | ||
|
||
- name: etcdDisk | ||
metricName : 99thEtcdDiskBackendCommitDurationSeconds | ||
metric_of_interest: value | ||
agg: | ||
value: duration | ||
agg_type: avg |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
tests : | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I hit a small issue with the tiny url timing out when trying to run the below, increasing the timeout I was able to successfully run the command
|
||
- name : aws-small-scale-node-density-cni | ||
index: ospst-perf-scale-ci-* | ||
benchmarkIndex: ospst-ripsaw-kube-burner* | ||
metadata: | ||
platform: AWS | ||
masterNodesType: m6a.xlarge | ||
masterNodesCount: 3 | ||
workerNodesType: m6a.xlarge | ||
workerNodesCount: 6 | ||
infraNodesCount: 3 | ||
benchmark.keyword: node-density-cni | ||
ocpVersion: {{ version }} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. could we maybe put in the title template here so that a user doesn't take this file and just try to run as this version is not filled in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, that makes sense, will add a comment mentioning it a template. |
||
networkType: OVNKubernetes | ||
infraNodesType: r5.2xlarge | ||
# encrypted: true | ||
# fips: false | ||
# ipsec: false | ||
|
||
metrics : | ||
- name: podReadyLatency | ||
metricName: podLatencyQuantilesMeasurement | ||
quantileName: Ready | ||
metric_of_interest: P99 | ||
not: | ||
jobConfig.name: "garbage-collection" | ||
|
||
- name: apiserverCPU | ||
metricName : containerCPU | ||
labels.namespace.keyword: openshift-kube-apiserver | ||
metric_of_interest: value | ||
agg: | ||
value: cpu | ||
agg_type: avg | ||
|
||
- name: ovnCPU | ||
metricName : containerCPU | ||
labels.namespace.keyword: openshift-ovn-kubernetes | ||
metric_of_interest: value | ||
agg: | ||
value: cpu | ||
agg_type: avg | ||
|
||
- name: etcdCPU | ||
metricName : containerCPU | ||
labels.namespace.keyword: openshift-etcd | ||
metric_of_interest: value | ||
agg: | ||
value: cpu | ||
agg_type: avg | ||
|
||
- name: etcdDisk | ||
metricName : 99thEtcdDiskBackendCommitDurationSeconds | ||
metric_of_interest: value | ||
agg: | ||
value: duration | ||
agg_type: avg | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This output structure has to align with the remaining open PRs, let get them merged one by one. A reasonable order would be
wdyt?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMHO this would be the cleaner approach.