Ana Guerrero 2024-02-01 17:04:14 +00:00 committed by Git OBS Bridge
commit ed3ecaa032
10 changed files with 197 additions and 114 deletions

View File

@ -1,4 +1,4 @@
From de6a642d171890fb0360fed67fd7313f13ea4b37 Mon Sep 17 00:00:00 2001
From e9458dc825ca19e306b1ded6433c5d25a1237c71 Mon Sep 17 00:00:00 2001
From: Jan Fajerski <jfajerski@suse.com>
Date: Fri, 8 Feb 2019 09:17:06 +0100
Subject: [PATCH] Do not force the pure Go name resolver
@ -10,16 +10,16 @@ on OS and environment variables.
This allows, among other things, to use Prometheus to scrape mDNS targets.
Signed-off-by: Jan Fajerski <jfajerski@suse.com>
Signed-off-by: Johannes Kastl <kastl@b1-systems.de>
Signed-off-by: Johannes Kastl <git@johannes-kastl.de>
---
.promu.yml | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
.promu.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.promu.yml b/.promu.yml
index f724dc34f..ccce0d5a2 100644
index e5e01181c..5fbce7825 100644
--- a/.promu.yml
+++ b/.promu.yml
@@ -12,13 +12,12 @@ build:
@@ -12,12 +12,12 @@ build:
path: ./cmd/promtool
tags:
all:
@ -29,11 +29,10 @@ index f724dc34f..ccce0d5a2 100644
windows:
- builtinassets
- stringlabels
- flags: -a
+ flags: -mod=vendor -a
ldflags: |
-X github.com/prometheus/common/version.Version={{.Version}}
-X github.com/prometheus/common/version.Revision={{.Revision}}
--
2.40.1
2.43.0

View File

@ -4,7 +4,7 @@
<param name="scm">git</param>
<param name="exclude">.git</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="revision">v2.48.1</param>
<param name="revision">v2.49.1</param>
<param name="versionrewrite-pattern">v(.*)</param>
<param name="match-tag">v2*</param>
</service>
@ -13,6 +13,6 @@
<param name="compression">gz</param>
</service>
<service name="go_modules" mode="manual">
<param name="archive">prometheus-2.48.1.tar.gz</param>
<param name="archive">prometheus-2.49.1.tar.gz</param>
</service>
</services>

View File

@ -1,3 +1,87 @@
-------------------------------------------------------------------
Mon Jan 15 20:33:03 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
- update to 2.49.1:
* [BUGFIX] TSDB: Fixed a wrong q= value in scrape accept header
#13313
- rebase patch 0001-Do-not-force-the-pure-Go-name-resolver.patch
-------------------------------------------------------------------
Mon Jan 15 20:26:09 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
- update to 2.49.0:
* [FEATURE] Promtool: Add --run flag promtool test rules command.
#12206
* [FEATURE] SD: Add support for NS records to DNS SD. #13219
* [FEATURE] UI: Add heatmap visualization setting in the Graph
tab, useful histograms. #13096 #13371
* [FEATURE] Scraping: Add scrape_config.enable_compression
(default true) to disable gzip compression when scraping the
target. #13166
* [FEATURE] PromQL: Add a promql-experimental-functions feature
flag containing some new experimental PromQL functions. #13103
NOTE: More experimental functions might be added behind the
same feature flag in the future. Added functions: experimental
mad_over_time (median absolute deviation around the median)
function. #13059 and experimental sort_by_label and
sort_by_label_desc functions allowing sorting returned series
by labels. #11299
* [FEATURE] SD: Add __meta_linode_gpus label to Linode SD. #13097
* [FEATURE] API: Add exclude_alerts query parameter to
/api/v1/rules to only return recording rules. #12999
* [FEATURE] TSDB: --storage.tsdb.retention.time flag value is now
exposed as a prometheus_tsdb_retention_limit_seconds metric.
#12986
* [FEATURE] Scraping: Add ability to specify priority of scrape
protocols to accept during scrape (e.g. to scrape Prometheus
proto format for certain jobs). This can be changed by setting
global.scrape_protocols and scrape_config.scrape_protocols.
#12738
* [ENHANCEMENT] Scraping: Automated handling of scraping
histograms that violate
scrape_config.native_histogram_bucket_limit setting. #13129
* [ENHANCEMENT] Scraping: Optimized memory allocations when
scraping. #12992
* [ENHANCEMENT] SD: Added cache for Azure SD to avoid
rate-limits. #12622
* [ENHANCEMENT] TSDB: Various improvements to OOO exemplar
scraping. E.g. allowing ingestion of exemplars with the same
timestamp, but with different labels. #13021
* [ENHANCEMENT] API: Optimize /api/v1/labels and
/api/v1/label/<label_name>/values when 1 set of matchers are
used. #12888
* [ENHANCEMENT] TSDB: Various optimizations for TSDB block index,
head mmap chunks and WAL, reducing latency and memory
allocations (improving API calls, compaction queries etc).
#12997 #13058 #13056 #13040
* [ENHANCEMENT] PromQL: Optimize memory allocations and latency
when querying float histograms. #12954
* [ENHANCEMENT] Rules: Instrument TraceID in log lines for rule
evaluations. #13034
* [ENHANCEMENT] PromQL: Optimize memory allocations in
query_range calls. #13043
* [ENHANCEMENT] Promtool: unittest interval now defaults to
evaluation_intervals when not set. #12729
* [BUGFIX] SD: Fixed Azure SD public IP reporting #13241
* [BUGFIX] API: Fix inaccuracies in posting cardinality
statistics. #12653
* [BUGFIX] PromQL: Fix inaccuracies of histogram_quantile with
classic histograms. #13153
* [BUGFIX] TSDB: Fix rare fails or inaccurate queries with OOO
samples. #13115
* [BUGFIX] TSDB: Fix rare panics on append commit when exemplars
are used. #13092
* [BUGFIX] TSDB: Fix exemplar WAL storage, so remote write can
send/receive samples before exemplars. #13113
* [BUGFIX] Mixins: Fix url filter on remote write dashboards.
#10721
* [BUGFIX] PromQL/TSDB: Various fixes to float histogram
operations. #12891 #12977 #12609 #13190 #13189 #13191 #13201
#13212 #13208
* [BUGFIX] Promtool: Fix int32 overflow issues for 32-bit
architectures. #12978
* [BUGFIX] SD: Fix Azure VM Scale Set NIC issue. #13283
-------------------------------------------------------------------
Sat Dec 9 20:04:27 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>

View File

@ -27,7 +27,7 @@
%endif
Name: golang-github-prometheus-prometheus
Version: 2.48.1
Version: 2.49.1
Release: 0
Summary: The Prometheus monitoring system and time series database
License: Apache-2.0

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b2a6cd730a4410a3b263923877bbd02c41446234f98dccc4a1c816ea738ba576
size 162024
oid sha256:0df2b8e5dcc326bed9a92a1a7a4e82a694d211b3d1457e270a142e9a7ec30415
size 166353

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8badf02454bf2f14af5564d1a2ab4ae95208d69c832cca6d28b2151db643249c
size 6470284

3
prometheus-2.49.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b54d1b811dfc229725c90c08195ea057ea4dfa2d574d742b1ff162db3c3324bc
size 6206494

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9a78d7760407fe093f236bfca812fb6bbbefb0590d96b44260cb2e82bf39f2a0
size 13567485
oid sha256:30208d78bc92c8f64f84b6c7ba23341cea5f453448a00a0d5bb7c28f39e0510c
size 13861118

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c3e1676e8c5031cdb9214b8082e129d968306e6181b18ca224c220fe4453af6b
size 3579188

3
web-ui-2.49.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b74e1a495be5a07c4f6c18a1715fa62cab16dbc21d96264a862f41690840c83c
size 3599298