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

Enable probes measuring in-cluster network latency. #635

Merged
merged 1 commit into from
Jul 15, 2019
Merged
Show file tree
Hide file tree
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
14 changes: 14 additions & 0 deletions clusterloader2/testing/density/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ steps:
Method: APIResponsivenessPrometheus
Params:
action: start
{{if $ENABLE_PROBES}}
# TODO(oxddr): figure out how many probers to run in function of cluster
- Identifier: Probes
Method: Probes
Params:
action: start
replicasPerProbe: {{DivideInt .Nodes 100}}
{{end}}
- Identifier: TestMetrics
Method: TestMetrics
Params:
Expand Down Expand Up @@ -199,6 +207,12 @@ steps:
{{if $ENABLE_PROMETHEUS_API_RESPONSIVENESS}}
enableViolations: true
{{end}}
{{if $ENABLE_PROBES}}
- Identifier: Probes
Method: Probes
Params:
action: gather
{{end}}
- Identifier: TestMetrics
Method: TestMetrics
Params:
Expand Down
13 changes: 13 additions & 0 deletions clusterloader2/testing/load/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,13 @@ steps:
action: start
labelSelector: group = load
threshold: 1h
{{if $ENABLE_PROBES}}
- Identifier: Probes
Method: Probes
Params:
action: start
replicasPerProbe: {{DivideInt .Nodes 100}}
{{end}}
{{if $PROMETHEUS_SCRAPE_KUBE_PROXY}}
- Identifier: NetworkProgrammingLatency
Method: NetworkProgrammingLatency
Expand Down Expand Up @@ -278,6 +285,12 @@ steps:
Method: PodStartupLatency
Params:
action: gather
{{if $ENABLE_PROBES}}
- Identifier: Probes
Method: Probes
Params:
action: gather
{{end}}
{{if $PROMETHEUS_SCRAPE_KUBE_PROXY}}
- Identifier: NetworkProgrammingLatency
Method: NetworkProgrammingLatency
Expand Down