Skip to content
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
133 changes: 133 additions & 0 deletions examples/stackrox-cluster-density.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
tests :
- name : 24-node-scale-cdv2
index: {{ es_metadata_index }}
benchmarkIndex: {{ es_benchmark_index }}
metadata:
platform: AWS
clusterType: self-managed
masterNodesType: m6a.xlarge
masterNodesCount: 3
workerNodesType: m6a.xlarge
workerNodesCount: 24
benchmark.keyword: cluster-density-v2
ocpVersion: {{ version }}
networkType: OVNKubernetes
jobType: {{ jobtype | default('periodic') }}
not:
stream: okd

metrics :
- name: collector-cpu
metricName: stackrox_container_cpu
labels.container: collector
direction: 1
threshold: 5
metric_of_interest: value
not:
jobConfig.name: "garbage-collection"
agg:
value: cpu
agg_type: avg
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spacing

- name: collector-mem
metricName: stackrox_container_memory_working_set_bytes
labels.container: collector
direction: 1
threshold: 5
metric_of_interest: value
not:
jobConfig.name: "garbage-collection"
agg:
value: mem
agg_type: avg

- name: admission-cpu
metricName: stackrox_container_cpu
labels.container: admission-control
direction: 1
threshold: 5
metric_of_interest: value
not:
jobConfig.name: "garbage-collection"
agg:
value: cpu
agg_type: avg
- name: admission-mem
metricName: stackrox_container_memory_working_set_bytes
labels.container: admission-control
direction: 1
threshold: 5
metric_of_interest: value
not:
jobConfig.name: "garbage-collection"
agg:
value: mem
agg_type: avg

- name: central-cpu
metricName: stackrox_container_cpu
labels.container: central
direction: 1
threshold: 5
metric_of_interest: value
not:
jobConfig.name: "garbage-collection"
agg:
value: cpu
agg_type: avg
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

spacing

- name: central-mem
metricName: stackrox_container_memory_working_set_bytes
labels.container: central
direction: 1
threshold: 5
metric_of_interest: value
not:
jobConfig.name: "garbage-collection"
agg:
value: mem
agg_type: avg

- name: central-db-cpu
metricName: stackrox_container_cpu
labels.container: central-db
direction: 1
threshold: 5
metric_of_interest: value
not:
jobConfig.name: "garbage-collection"
agg:
value: cpu
agg_type: avg
- name: central-db-mem
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

spacing is different here.

metricName: stackrox_container_memory_working_set_bytes
labels.container: central-db
direction: 1
threshold: 5
metric_of_interest: value
not:
jobConfig.name: "garbage-collection"
agg:
value: mem
agg_type: avg

- name: sensor-cpu
metricName: stackrox_container_cpu
labels.container: sensor
direction: 1
threshold: 5
metric_of_interest: value
not:
jobConfig.name: "garbage-collection"
agg:
value: cpu
agg_type: avg
- name: sensor-mem
metricName: stackrox_container_memory_working_set_bytes
labels.container: sensor
direction: 1
threshold: 5
metric_of_interest: value
not:
jobConfig.name: "garbage-collection"
agg:
value: mem
agg_type: avg
Loading