Skip to content

Commit

Permalink
Merge branch 'cloud-bulldozer:master' into kube-burner-report-mode
Browse files Browse the repository at this point in the history
  • Loading branch information
smanda99 authored Jul 8, 2024
2 parents 6e5f9d0 + b85b7ae commit dfb7009
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ jobs:
QUAY_TOKEN: ${{ secrets.QUAY_TOKEN }}

- name: Build & push syncer image
run: make build-syncer-image push-syncer-image
run: make v2 build-syncer-image push-syncer-image
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ $(OUTPUTDIR)/%.json: $(TEMPLATESDIR)/%.jsonnet
v2: all
@echo "Rendered the v2 dashboards with latest grafonnet library"

build-syncer-image: build
build-syncer-image: v2
podman build --platform=${PLATFORM} -f Dockerfile --manifest=${SYNCER_IMG_TAG} .

push-syncer-image:
Expand Down
4 changes: 2 additions & 2 deletions assets/kube-burner-report-ocp-wrapper/queries.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ local elasticsearch = g.query.elasticsearch;
+ elasticsearch.bucketAggs.Terms.settings.withOrder('desc')
+ elasticsearch.bucketAggs.Terms.settings.withOrderBy('1')
+ elasticsearch.bucketAggs.Terms.settings.withMinDocCount('1')
+ elasticsearch.bucketAggs.Terms.settings.withSize("1"),
+ elasticsearch.bucketAggs.Terms.settings.withSize("3"),
elasticsearch.bucketAggs.Terms.withField("labels.container.keyword")
+ elasticsearch.bucketAggs.Terms.withId("4")
+ elasticsearch.bucketAggs.Terms.withType('terms')
Expand Down Expand Up @@ -1581,4 +1581,4 @@ local elasticsearch = g.query.elasticsearch;
+ elasticsearch.withQuery("uuid.keyword: $uuid AND metricName.keyword: containerMemory-AggregatedWorkers")
+ elasticsearch.withTimeField('timestamp')
},
}
}
2 changes: 1 addition & 1 deletion assets/ocp-performance/queries.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ local generateTimeSeriesQuery(query, legend) = [
},
ovnAnnotationLatency: {
query():
generateTimeSeriesQuery('histogram_quantile(0.99, sum(rate(ovnkube_master_pod_creation_latency_seconds_bucket[$interval])) by (pod,le)) > 0', '{{ pod }}')
generateTimeSeriesQuery('histogram_quantile(0.99, sum by (pod, le) (rate(ovnkube_controller_pod_creation_latency_seconds_bucket[$interval]))) > 0', '{{ pod }}')
},
ovnCNIAdd: {
query():
Expand Down
2 changes: 1 addition & 1 deletion assets/ovn-monitoring/queries.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ local generateTimeSeriesQuery(query, legend) = [

ovnAnnotationLatency: {
query():
generateTimeSeriesQuery('histogram_quantile(0.99, sum(rate(ovnkube_master_pod_creation_latency_seconds_bucket[2m])) by (pod,le)) > 0','{{pod}} - Pod Annotation latency')
generateTimeSeriesQuery('histogram_quantile(0.99, sum by (pod, le) (rate(ovnkube_controller_pod_creation_latency_seconds_bucket[2m]))) > 0','{{pod}} - Pod Annotation latency')
},

ovnCNIAdd: {
Expand Down
2 changes: 1 addition & 1 deletion templates/General/ocp-performance.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ local stackroxMem = genericGraphLegendPanel('Top 25 stackrox container RSS bytes
// OVN
local ovnAnnotationLatency = genericGraphPanel('99% Pod Annotation Latency', 's').addTarget(
prometheus.target(
'histogram_quantile(0.99, sum(rate(ovnkube_master_pod_creation_latency_seconds_bucket[$interval])) by (pod,le)) > 0',
'histogram_quantile(0.99, sum by (pod, le) (rate(ovnkube_controller_pod_creation_latency_seconds_bucket[$interval]))) > 0',
legendFormat='{{pod}}',
)
);
Expand Down
2 changes: 1 addition & 1 deletion templates/General/ovn-dashboard.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ local work_queue_unfinished_latency = genericGraphLegendPanel('OVNKube Master wo

local ovnAnnotationLatency = genericGraphLegendPanel('Pod Annotation Latency', 's').addTarget(
prometheus.target(
'histogram_quantile(0.99, sum(rate(ovnkube_master_pod_creation_latency_seconds_bucket[2m])) by (pod,le)) > 0',
'histogram_quantile(0.99, sum by (pod, le) (rate(ovnkube_controller_pod_creation_latency_seconds_bucket[2m]))) > 0',
legendFormat='{{pod}} - Pod Annotation latency',
)
);
Expand Down

0 comments on commit dfb7009

Please sign in to comment.