Skip to content

[Do Not Merge] Bump stolostron/prometheus to v3.5.0#190

Merged
coleenquadros merged 2119 commits intostolostron:release-2.15from
rhobs:automated-updates-acm-release-2.15
Sep 10, 2025
Merged

[Do Not Merge] Bump stolostron/prometheus to v3.5.0#190
coleenquadros merged 2119 commits intostolostron:release-2.15from
rhobs:automated-updates-acm-release-2.15

Conversation

@acm-observability-bot
Copy link
Copy Markdown

Description

This is an automated version bump from CI.
The logs for this run can be found in the syncbot repo actions.
If you wish to perform this manually, execute the following commands from stolostron/prometheus repo:

git fetch https://github.com/prometheus/prometheus --tags
if ! git merge refs/tags/v3.5.0 --no-edit; then
  git checkout --theirs CHANGELOG.md VERSION go.mod go.sum .golangci.yml
  git checkout --ours plugins.yml plugins
  git add CHANGELOG.md VERSION go.mod go.sum .golangci.yml plugins.yml plugins
  git merge --continue
fi
go mod tidy
go mod vendor
# Only compress assets if assets actually changed
# The git diff relies on gits remote naming. The merge-flow checks out
# $downstream as origin at the time of writing this code.
if ! git diff --exit-code origin/main web/ui; then
  make assets-compress
  find web/ui/static -type f -name '*.gz' -exec git add {} \;
  git add web/ui/embed.go
  git diff --cached --exit-code || git commit -s -m "[bot] assets: generate"
fi

if [ -f scripts/rh-manifest.sh ]; then
  bash scripts/rh-manifest.sh
  git add rh-manifest.txt
  git diff --cached --exit-code || git commit -s -m "[bot] update rh-manifest.txt"
fi

github-actions bot and others added 30 commits April 18, 2025 01:35
…ules/google.golang.org/api-0.228.0

chore(deps): bump google.golang.org/api from 0.227.0 to 0.228.0
)

* DRY stddev and stdvar

---------

Signed-off-by: Neeraj Gartia <[email protected]>
PromQL: allow arithmetic operations in durations in PromQL parser
…rror

remote: Allow unwrapping of errors when reading from remote client
MAINTAINERS: add Jan-Otto Kröpke as an discovery/azure maintainer
…adwls

[TESTS] TSDB: Faster WAL benchmarks
* feat: Support 'NoTranslation' mode in OTLP endpoint

Signed-off-by: Arthur Silva Sens <[email protected]>

---------

Signed-off-by: Arthur Silva Sens <[email protected]>
* promql: histogram_fraction for bucket histograms

This PR extends the histogram_fraction function to also work with classic bucket histograms. This is beneficial because it allows expressions like sum(increase(my_bucket{le="0.5"}[10m]))/sum(increase(my_total[10m])) to be written without knowing the actual values of the "le" label, easing the transition to native histograms later on.
It also feels natural since histogram_quantile also can deal with classic histograms.

Signed-off-by: Michael Hoffmann <[email protected]>

* promql: histogram_fraction for bucket histograms

* Add documentation and reduce code duplication
* Fix a bug in linear interpolation between bucket boundaries
* Add more PromQL tests

Signed-off-by: Michael Hoffmann <[email protected]>

* Update docs/querying/functions.md

Co-authored-by: Björn Rabenstein <[email protected]>
Signed-off-by: Michael Hoffmann <[email protected]>

---------

Signed-off-by: Michael Hoffmann <[email protected]>
Signed-off-by: Michael Hoffmann <[email protected]>
Co-authored-by: Björn Rabenstein <[email protected]>
…heus#16360)

* Add simple delta support

Signed-off-by: Fiona Liao <[email protected]>

* Rename delta2cumulative part

Signed-off-by: Fiona Liao <[email protected]>

* Whoops bad refactor

Signed-off-by: Fiona Liao <[email protected]>

* Add example yml

Signed-off-by: Fiona Liao <[email protected]>

* Feature flag instead and histogram hint handling

Signed-off-by: Fiona Liao <[email protected]>

* Delete otel_delta.yml - outdated

Signed-off-by: Fiona Liao <[email protected]>

* Renaming to native delta support

Signed-off-by: Fiona Liao <[email protected]>

* Add more explanatory comments

Signed-off-by: Fiona Liao <[email protected]>

* Add more explanation to histograms

Signed-off-by: Fiona Liao <[email protected]>

* Correct comment on d2c consumer

Signed-off-by: Fiona Liao <[email protected]>

* Add tests for counters and fix bug

Signed-off-by: Fiona Liao <[email protected]>

* Add histogram tests

Signed-off-by: Fiona Liao <[email protected]>

* Add docs

Signed-off-by: Fiona Liao <[email protected]>

* Sort series to make test deterministic

Signed-off-by: Fiona Liao <[email protected]>

* More formatting

Signed-off-by: Fiona Liao <[email protected]>

* Change flag name to ingestion

Signed-off-by: Fiona Liao <[email protected]>

* Explain where rate calculation can go wrong

Signed-off-by: Fiona Liao <[email protected]>

* Add warning about duplicate timestamps

Signed-off-by: Fiona Liao <[email protected]>

* Update docs/feature_flags.md

Co-authored-by: Arthur Silva Sens <[email protected]>
Signed-off-by: Fiona Liao <[email protected]>

* Fix tests

Signed-off-by: Fiona Liao <[email protected]>

* Remove unnecessary if

Signed-off-by: Fiona Liao <[email protected]>

* Add warning to d2c section

Signed-off-by: Fiona Liao <[email protected]>

* Make unknown type error when getting temporality

Signed-off-by: Fiona Liao <[email protected]>

* Correct type comment - not planning to add delta metric metadata type

Signed-off-by: Fiona Liao <[email protected]>

* Remove unused param for empty type

Signed-off-by: Fiona Liao <[email protected]>

* Rewrite temporality logic to be clearer

Signed-off-by: Fiona Liao <[email protected]>

* Change spurious to unnecessary - better description

Signed-off-by: Fiona Liao <[email protected]>

---------

Signed-off-by: Fiona Liao <[email protected]>
Co-authored-by: Arthur Silva Sens <[email protected]>
* Add documentation for 'NoTranslation' mode

Signed-off-by: Arthur Silva Sens <[email protected]>

* Update docs/configuration/configuration.md

Co-authored-by: Bartlomiej Plotka <[email protected]>
Signed-off-by: Arthur Silva Sens <[email protected]>

---------

Signed-off-by: Arthur Silva Sens <[email protected]>
Co-authored-by: Bartlomiej Plotka <[email protected]>
Signed-off-by: amanycodes <[email protected]>
Signed-off-by: amanycodes <[email protected]>
…-key

mantine-ui: stable AND definitely unique key for /alerts cards
Signed-off-by: Yuchen Wang <[email protected]>
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.37.0 to 0.38.0.
- [Commits](golang/net@v0.37.0...v0.38.0)

---
updated-dependencies:
- dependency-name: golang.org/x/net
  dependency-version: 0.38.0
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
…ules/documentation/examples/remote_storage/golang.org/x/net-0.38.0

chore(deps): bump golang.org/x/net from 0.37.0 to 0.38.0 in /documentation/examples/remote_storage
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.55.6 to 1.55.7.
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Changelog](https://github.com/aws/aws-sdk-go/blob/main/CHANGELOG_PENDING.md)
- [Commits](aws/aws-sdk-go@v1.55.6...v1.55.7)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go
  dependency-version: 1.55.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps [github.com/docker/docker](https://github.com/docker/docker) from 28.0.4+incompatible to 28.1.1+incompatible.
- [Release notes](https://github.com/docker/docker/releases)
- [Commits](moby/moby@v28.0.4...v28.1.1)

---
updated-dependencies:
- dependency-name: github.com/docker/docker
  dependency-version: 28.1.1+incompatible
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps [github.com/Azure/azure-sdk-for-go/sdk/azidentity](https://github.com/Azure/azure-sdk-for-go) from 1.8.2 to 1.9.0.
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md)
- [Commits](Azure/azure-sdk-for-go@sdk/azidentity/v1.8.2...sdk/azcore/v1.9.0)

---
updated-dependencies:
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azidentity
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps [github.com/prometheus/client_model](https://github.com/prometheus/client_model) from 0.6.1 to 0.6.2.
- [Release notes](https://github.com/prometheus/client_model/releases)
- [Commits](prometheus/client_model@v0.6.1...v0.6.2)

---
updated-dependencies:
- dependency-name: github.com/prometheus/client_model
  dependency-version: 0.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@coleenquadros
Copy link
Copy Markdown

/ok-to-test

@coleenquadros
Copy link
Copy Markdown

/ok-to-test

@coleenquadros
Copy link
Copy Markdown

/ok-to-test

Updated .gitignore to track specific UI assets and exclude others.
Signed-off-by: Coleen Iona Quadros <[email protected]>
@coleenquadros
Copy link
Copy Markdown

/ok-to-test

@coleenquadros
Copy link
Copy Markdown

/ok-to-test

@coleenquadros coleenquadros changed the title [ACM Obs bot] Bump stolostron/prometheus to v3.5.0 [Do Not Merge] Bump stolostron/prometheus to v3.5.0 Sep 3, 2025
@coleenquadros
Copy link
Copy Markdown

/retest

2 similar comments
@coleenquadros
Copy link
Copy Markdown

/retest

@coleenquadros
Copy link
Copy Markdown

/retest

@jacobbaungard
Copy link
Copy Markdown

/test prow/images

@openshift-ci
Copy link
Copy Markdown

openshift-ci bot commented Sep 10, 2025

@jacobbaungard: The specified target(s) for /test were not found.
The following commands are available to trigger required jobs:

/test common-test
/test images
/test pr-image-mirror
/test react-app-test
/test vendor

Use /test all to run all jobs.

Details

In response to this:

/test prow/images

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@jacobbaungard
Copy link
Copy Markdown

/test images

Copy link
Copy Markdown

@jacobbaungard jacobbaungard left a comment

Choose a reason for hiding this comment

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

/lgtm

@openshift-ci
Copy link
Copy Markdown

openshift-ci bot commented Sep 10, 2025

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: acm-observability-bot[bot], jacobbaungard

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@coleenquadros coleenquadros merged commit 8cff371 into stolostron:release-2.15 Sep 10, 2025
10 of 12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.