Accepting request 1224203 from server:monitoring
OBS-URL: https://build.opensuse.org/request/show/1224203 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/golang-github-prometheus-prometheus?expand=0&rev=49
This commit is contained in:
commit
ad7fc9402f
@ -1,4 +1,4 @@
|
||||
From abe26292de2c69a14aa223d2ba866779e63d79cd Mon Sep 17 00:00:00 2001
|
||||
From 1c355d58cf9c1d9d6aba110a61cea4a56c9c03a2 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
|
||||
@ -16,7 +16,7 @@ Signed-off-by: Johannes Kastl <git@johannes-kastl.de>
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/.promu.yml b/.promu.yml
|
||||
index 0aa51d6d3..06c9c579d 100644
|
||||
index 699a7fa58..bbf32c87a 100644
|
||||
--- a/.promu.yml
|
||||
+++ b/.promu.yml
|
||||
@@ -12,12 +12,12 @@ build:
|
||||
|
@ -1,28 +1,29 @@
|
||||
From 5d505396f2a4e1a9f5fd3ea57113fa58c968518e Mon Sep 17 00:00:00 2001
|
||||
From 0c77e3c8a690decb726f92d363a8aadae6a1a0a2 Mon Sep 17 00:00:00 2001
|
||||
From: Jan Fajerski <jfajerski@suse.com>
|
||||
Date: Fri, 8 Feb 2019 09:28:12 +0100
|
||||
Subject: [PATCH] Default settings
|
||||
|
||||
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>
|
||||
---
|
||||
cmd/prometheus/main.go | 8 ++++----
|
||||
1 file changed, 4 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/cmd/prometheus/main.go b/cmd/prometheus/main.go
|
||||
index 1d844ddba..5580dfa57 100644
|
||||
index b3bcb78b7..9a5a77a4d 100644
|
||||
--- a/cmd/prometheus/main.go
|
||||
+++ b/cmd/prometheus/main.go
|
||||
@@ -288,7 +288,7 @@ func main() {
|
||||
@@ -300,7 +300,7 @@ func main() {
|
||||
a.HelpFlag.Short('h')
|
||||
|
||||
a.Flag("config.file", "Prometheus configuration file path.").
|
||||
- Default("prometheus.yml").StringVar(&cfg.configFile)
|
||||
+ Default("/etc/prometheus/prometheus.yml").StringVar(&cfg.configFile)
|
||||
|
||||
a.Flag("web.listen-address", "Address to listen on for UI, API, and telemetry.").
|
||||
Default("0.0.0.0:9090").StringVar(&cfg.web.ListenAddress)
|
||||
@@ -335,10 +335,10 @@ func main() {
|
||||
a.Flag("web.listen-address", "Address to listen on for UI, API, and telemetry. Can be repeated.").
|
||||
Default("0.0.0.0:9090").StringsVar(&cfg.web.ListenAddresses)
|
||||
@@ -347,10 +347,10 @@ func main() {
|
||||
Default(supportedRemoteWriteProtoMsgs.Strings()...).SetValue(rwProtoMsgFlagValue(&cfg.web.AcceptRemoteWriteProtoMsgs))
|
||||
|
||||
a.Flag("web.console.templates", "Path to the console template directory, available at /consoles.").
|
||||
@ -35,7 +36,7 @@ index 1d844ddba..5580dfa57 100644
|
||||
|
||||
a.Flag("web.page-title", "Document title of Prometheus instance.").
|
||||
Default("Prometheus Time Series Collection and Processing Server").StringVar(&cfg.web.PageTitle)
|
||||
@@ -347,7 +347,7 @@ func main() {
|
||||
@@ -359,7 +359,7 @@ func main() {
|
||||
Default(".*").StringVar(&cfg.corsRegexString)
|
||||
|
||||
serverOnlyFlag(a, "storage.tsdb.path", "Base path for metrics storage.").
|
||||
|
4
_service
4
_service
@ -4,7 +4,7 @@
|
||||
<param name="scm">git</param>
|
||||
<param name="exclude">.git</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="revision">v2.54.1</param>
|
||||
<param name="revision">v2.55.0</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.54.1.tar.gz</param>
|
||||
<param name="archive">prometheus-2.55.0.tar.gz</param>
|
||||
</service>
|
||||
</services>
|
||||
|
@ -1,3 +1,74 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 23 09:47:24 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||
|
||||
- update to 2.55.0:
|
||||
* [FEATURE] PromQL: Add experimental info function. #14495
|
||||
* [FEATURE] Support UTF-8 characters in label names - feature
|
||||
flag utf8-names. #14482, #14880, #14736, #14727
|
||||
* [FEATURE] Scraping: Add the ability to set custom http_headers
|
||||
in config. #14817
|
||||
* [FEATURE] Scraping: Support feature flag
|
||||
created-timestamp-zero-ingestion in OpenMetrics. #14356, #14815
|
||||
* [FEATURE] Scraping: scrape_failure_log_file option to log
|
||||
failures to a file. #14734
|
||||
* [FEATURE] OTLP receiver: Optional promotion of resource
|
||||
attributes to series labels. #14200
|
||||
* [FEATURE] Remote-Write: Support Google Cloud Monitoring
|
||||
authorization. #14346
|
||||
* [FEATURE] Promtool: tsdb create-blocks new option to add
|
||||
labels. #14403
|
||||
* [FEATURE] Promtool: promtool test adds --junit flag to format
|
||||
results. #14506
|
||||
* [FEATURE] TSDB: Add delayed-compaction feature flag, for people
|
||||
running many Prometheus to randomize timing. #12532
|
||||
* [ENHANCEMENT] OTLP receiver: Warn on exponential histograms
|
||||
with zero count and non-zero sum. #14706
|
||||
* [ENHANCEMENT] OTLP receiver: Interrupt translation on context
|
||||
cancellation/timeout. #14612
|
||||
* [ENHANCEMENT] Remote Read client: Enable streaming remote read
|
||||
if the server supports it. #11379
|
||||
* [ENHANCEMENT] Remote-Write: Don't reshard if we haven't
|
||||
successfully sent a sample since last update. #14450
|
||||
* [ENHANCEMENT] PromQL: Delay deletion of __name__ label to the
|
||||
end of the query evaluation. This is experimental and enabled
|
||||
under the feature-flag promql-delayed-name-removal. #14477
|
||||
* [ENHANCEMENT] PromQL: Experimental sort_by_label and
|
||||
sort_by_label_desc sort by all labels when label is equal.
|
||||
#14655, #14985
|
||||
* [ENHANCEMENT] PromQL: Clarify error message logged when Go
|
||||
runtime panic occurs during query evaluation. #14621
|
||||
* [ENHANCEMENT] PromQL: Use Kahan summation for better accuracy
|
||||
in avg and avg_over_time. #14413
|
||||
* [ENHANCEMENT] Tracing: Improve PromQL tracing, including
|
||||
showing the operation performed for aggregates, operators, and
|
||||
calls. #14816
|
||||
* [ENHANCEMENT] API: Support multiple listening addresses. #14665
|
||||
* [ENHANCEMENT] TSDB: Backward compatibility with upcoming index
|
||||
v3. #14934
|
||||
* [PERF] TSDB: Query in-order and out-of-order series together.
|
||||
#14354, #14693, #14714, #14831, #14874, #14948, #15120
|
||||
* [PERF] TSDB: Streamline reading of overlapping out-of-order
|
||||
head chunks. #14729
|
||||
* [BUGFIX] PromQL: make sort_by_label stable. #14985
|
||||
* [BUGFIX] SD: Fix dropping targets (with feature flag
|
||||
new-service-discovery-manager). #13147
|
||||
* [BUGFIX] SD: Stop storing stale targets (with feature flag
|
||||
new-service-discovery-manager). #13622
|
||||
* [BUGFIX] Scraping: exemplars could be dropped in protobuf
|
||||
scraping. #14810
|
||||
* [BUGFIX] Remote-Write: fix metadata sending for experimental
|
||||
Remote-Write V2. #14766
|
||||
* [BUGFIX] Remote-Write: Return 4xx not 5xx when timeseries has
|
||||
duplicate label. #14716
|
||||
* [BUGFIX] Experimental Native Histograms: many fixes for
|
||||
incorrect results, panics, warnings. #14513, #14575, #14598,
|
||||
#14609, #14611, #14771, #14821
|
||||
* [BUGFIX] TSDB: Only count unknown record types in
|
||||
record_decode_failures_total metric. #14042
|
||||
- rebase patches
|
||||
0001-Do-not-force-the-pure-Go-name-resolver.patch and
|
||||
0002-Default-settings.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Sep 14 15:33:35 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
%endif
|
||||
|
||||
Name: golang-github-prometheus-prometheus
|
||||
Version: 2.54.1
|
||||
Version: 2.55.0
|
||||
Release: 0
|
||||
Summary: The Prometheus monitoring system and time series database
|
||||
License: Apache-2.0
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:18a9d1e6b570d6f34a72986056ba240e1a0af5a66e6a324bc14bbefc6d14ba68
|
||||
size 169753
|
||||
oid sha256:697bd20afe6b9e5f83c976cc13b8eebec6819c12947d32ce30299adcd52bc509
|
||||
size 165854
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e761aade301520adcfc57d5ec2c8d5c6ed53b1cbe7d91a8594393f7e8ad5caf4
|
||||
size 6411851
|
3
prometheus-2.55.0.tar.gz
Normal file
3
prometheus-2.55.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:08aede677137e1539a8b7bedf8841a7a8dd648550965f8377b5b9277d5b73768
|
||||
size 6482244
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:33bc18a15a4972f51290da42c162af0b5db17c23003faa78f062875472d237d6
|
||||
size 14596561
|
||||
oid sha256:513eac21ea08baf2f39c036f76104eedbdd97a743cd5bbb5c90dccb76b8c6298
|
||||
size 15032621
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8d9ab782a54f2bad2613c0661e28fc1a3f54856d45ca7c0ff8519cf5db15c595
|
||||
size 3679107
|
3
web-ui-2.55.0.tar.gz
Normal file
3
web-ui-2.55.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:db06dd805202965b53a439761bb2dfe57f6264a4e1e604bcdbe615f3fca7ebbc
|
||||
size 3680354
|
Loading…
Reference in New Issue
Block a user