Skip to content

Commit

Permalink
Merge pull request kube-burner#425 from vishnuchalla/master
Browse files Browse the repository at this point in the history
Fixing mkdocs and removing v2 latencies logs
  • Loading branch information
vishnuchalla authored Aug 11, 2023
2 parents e253ef1 + 94b046d commit 7c4b409
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions docs/contributing/ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ This documentation provides an overview of the different jobs and their executio

## Pull Request workflow

{% include-markdown "ci/pullrequest.md" %}
{% include-markdown "assets/pullrequest.md" %}

## Release workflow

{% include-markdown "ci/release.md" %}
{% include-markdown "assets/release.md" %}
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ nav:
- contributing/index.md
- Contributing: contributing/index.md
- CI: contributing/ci.md
- Tests: contributing/ci/tests.md
- Tests: contributing/assets/tests.md
site_name: Kube-burner
plugins:
- search
Expand Down Expand Up @@ -97,4 +97,4 @@ markdown_extensions:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.tilde
4 changes: 3 additions & 1 deletion pkg/measurements/pod_latency.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,9 @@ func (p *podLatency) stop() (int, error) {
}
for _, q := range p.latencyQuantiles {
pq := q.(metrics.LatencyQuantiles)
log.Infof("%s: %s 50th: %v 99th: %v max: %v avg: %v", factory.jobConfig.Name, pq.QuantileName, pq.P50, pq.P99, pq.Max, pq.Avg)
if pq.QuantileName != "PodScheduledV2" && pq.QuantileName != "InitializedV2" && pq.QuantileName != "ContainersReadyV2" && pq.QuantileName != "ReadyV2" {
log.Infof("%s: %s 50th: %v 99th: %v max: %v avg: %v", factory.jobConfig.Name, pq.QuantileName, pq.P50, pq.P99, pq.Max, pq.Avg)
}
}
// Reset latency slices, required in multi-job benchmarks
p.latencyQuantiles, p.normLatencies = nil, nil
Expand Down

0 comments on commit 7c4b409

Please sign in to comment.