Compare commits
No commits in common. "factory" and "factory" have entirely different histories.
@ -1,4 +1,4 @@
|
|||||||
From 1c355d58cf9c1d9d6aba110a61cea4a56c9c03a2 Mon Sep 17 00:00:00 2001
|
From abe26292de2c69a14aa223d2ba866779e63d79cd Mon Sep 17 00:00:00 2001
|
||||||
From: Jan Fajerski <jfajerski@suse.com>
|
From: Jan Fajerski <jfajerski@suse.com>
|
||||||
Date: Fri, 8 Feb 2019 09:17:06 +0100
|
Date: Fri, 8 Feb 2019 09:17:06 +0100
|
||||||
Subject: [PATCH] Do not force the pure Go name resolver
|
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(-)
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
diff --git a/.promu.yml b/.promu.yml
|
diff --git a/.promu.yml b/.promu.yml
|
||||||
index 699a7fa58..bbf32c87a 100644
|
index 0aa51d6d3..06c9c579d 100644
|
||||||
--- a/.promu.yml
|
--- a/.promu.yml
|
||||||
+++ b/.promu.yml
|
+++ b/.promu.yml
|
||||||
@@ -12,12 +12,12 @@ build:
|
@@ -12,12 +12,12 @@ build:
|
||||||
|
@ -1,29 +1,28 @@
|
|||||||
From 0c77e3c8a690decb726f92d363a8aadae6a1a0a2 Mon Sep 17 00:00:00 2001
|
From 5d505396f2a4e1a9f5fd3ea57113fa58c968518e Mon Sep 17 00:00:00 2001
|
||||||
From: Jan Fajerski <jfajerski@suse.com>
|
From: Jan Fajerski <jfajerski@suse.com>
|
||||||
Date: Fri, 8 Feb 2019 09:28:12 +0100
|
Date: Fri, 8 Feb 2019 09:28:12 +0100
|
||||||
Subject: [PATCH] Default settings
|
Subject: [PATCH] Default settings
|
||||||
|
|
||||||
Signed-off-by: Jan Fajerski <jfajerski@suse.com>
|
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>
|
Signed-off-by: Johannes Kastl <git@johannes-kastl.de>
|
||||||
---
|
---
|
||||||
cmd/prometheus/main.go | 8 ++++----
|
cmd/prometheus/main.go | 8 ++++----
|
||||||
1 file changed, 4 insertions(+), 4 deletions(-)
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
||||||
|
|
||||||
diff --git a/cmd/prometheus/main.go b/cmd/prometheus/main.go
|
diff --git a/cmd/prometheus/main.go b/cmd/prometheus/main.go
|
||||||
index b3bcb78b7..9a5a77a4d 100644
|
index 1d844ddba..5580dfa57 100644
|
||||||
--- a/cmd/prometheus/main.go
|
--- a/cmd/prometheus/main.go
|
||||||
+++ b/cmd/prometheus/main.go
|
+++ b/cmd/prometheus/main.go
|
||||||
@@ -300,7 +300,7 @@ func main() {
|
@@ -288,7 +288,7 @@ func main() {
|
||||||
a.HelpFlag.Short('h')
|
a.HelpFlag.Short('h')
|
||||||
|
|
||||||
a.Flag("config.file", "Prometheus configuration file path.").
|
a.Flag("config.file", "Prometheus configuration file path.").
|
||||||
- Default("prometheus.yml").StringVar(&cfg.configFile)
|
- Default("prometheus.yml").StringVar(&cfg.configFile)
|
||||||
+ Default("/etc/prometheus/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. Can be repeated.").
|
a.Flag("web.listen-address", "Address to listen on for UI, API, and telemetry.").
|
||||||
Default("0.0.0.0:9090").StringsVar(&cfg.web.ListenAddresses)
|
Default("0.0.0.0:9090").StringVar(&cfg.web.ListenAddress)
|
||||||
@@ -347,10 +347,10 @@ func main() {
|
@@ -335,10 +335,10 @@ func main() {
|
||||||
Default(supportedRemoteWriteProtoMsgs.Strings()...).SetValue(rwProtoMsgFlagValue(&cfg.web.AcceptRemoteWriteProtoMsgs))
|
Default(supportedRemoteWriteProtoMsgs.Strings()...).SetValue(rwProtoMsgFlagValue(&cfg.web.AcceptRemoteWriteProtoMsgs))
|
||||||
|
|
||||||
a.Flag("web.console.templates", "Path to the console template directory, available at /consoles.").
|
a.Flag("web.console.templates", "Path to the console template directory, available at /consoles.").
|
||||||
@ -36,7 +35,7 @@ index b3bcb78b7..9a5a77a4d 100644
|
|||||||
|
|
||||||
a.Flag("web.page-title", "Document title of Prometheus instance.").
|
a.Flag("web.page-title", "Document title of Prometheus instance.").
|
||||||
Default("Prometheus Time Series Collection and Processing Server").StringVar(&cfg.web.PageTitle)
|
Default("Prometheus Time Series Collection and Processing Server").StringVar(&cfg.web.PageTitle)
|
||||||
@@ -359,7 +359,7 @@ func main() {
|
@@ -347,7 +347,7 @@ func main() {
|
||||||
Default(".*").StringVar(&cfg.corsRegexString)
|
Default(".*").StringVar(&cfg.corsRegexString)
|
||||||
|
|
||||||
serverOnlyFlag(a, "storage.tsdb.path", "Base path for metrics storage.").
|
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="scm">git</param>
|
||||||
<param name="exclude">.git</param>
|
<param name="exclude">.git</param>
|
||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="revision">v2.55.1</param>
|
<param name="revision">v2.54.0</param>
|
||||||
<param name="versionrewrite-pattern">v(.*)</param>
|
<param name="versionrewrite-pattern">v(.*)</param>
|
||||||
<param name="match-tag">v2*</param>
|
<param name="match-tag">v2*</param>
|
||||||
</service>
|
</service>
|
||||||
@ -13,6 +13,6 @@
|
|||||||
<param name="compression">gz</param>
|
<param name="compression">gz</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="go_modules" mode="manual">
|
<service name="go_modules" mode="manual">
|
||||||
<param name="archive">prometheus-2.55.1.tar.gz</param>
|
<param name="archive">prometheus-2.54.0.tar.gz</param>
|
||||||
</service>
|
</service>
|
||||||
</services>
|
</services>
|
||||||
|
@ -1,95 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Thu Nov 14 13:20:04 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
|
||||||
|
|
||||||
- update to 2.55.1:
|
|
||||||
* [BUGFIX] round() function did not remove __name__ label. #15250
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
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>
|
|
||||||
|
|
||||||
- update to 2.54.1:
|
|
||||||
* [BUGFIX] Scraping: allow multiple samples on same series, with
|
|
||||||
explicit timestamps. #14685
|
|
||||||
* [BUGFIX] Docker SD: fix crash in match_first_network mode when
|
|
||||||
container is reconnected to a new network. #14654
|
|
||||||
* [BUGFIX] PromQL: fix experimental native histogram counter
|
|
||||||
reset detection on stale samples. #14514
|
|
||||||
* [BUGFIX] PromQL: fix experimental native histograms getting
|
|
||||||
corrupted due to vector selector bug in range queries. #14538
|
|
||||||
* [BUGFIX] PromQL: fix experimental native histogram memory
|
|
||||||
corruption when using histogram_count or histogram_sum. #14605
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 16 18:49:21 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
Fri Aug 16 18:49:21 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: golang-github-prometheus-prometheus
|
Name: golang-github-prometheus-prometheus
|
||||||
Version: 2.55.1
|
Version: 2.54.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The Prometheus monitoring system and time series database
|
Summary: The Prometheus monitoring system and time series database
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:3bf63c3eba167750f7fdb27f227370fd5df91394c972ed566f56f778735208e2
|
oid sha256:1253e3a02d6a6c774686cb414d69f17b52f6e1b8cd2ca47cd3690cf522061251
|
||||||
size 168005
|
size 168914
|
||||||
|
3
prometheus-2.54.0.tar.gz
Normal file
3
prometheus-2.54.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:3425b96304551b524854f9d08d4dbaa70df3e04343b772373040b7217c81b2c7
|
||||||
|
size 6411184
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:e38829677b422fa39716e6c8d6d0e3976f83968fa0ed62668f55957f9df805ed
|
|
||||||
size 6481896
|
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:8dc140b0988f1f00c681fd2b91977f0caad83914ea975b6f9b4436492579ec83
|
oid sha256:2d85b4fb98ec75410384d4d270de0f83554f41ecfe448c2f1c061f975161025c
|
||||||
size 15033006
|
size 14596283
|
||||||
|
3
web-ui-2.54.0.tar.gz
Normal file
3
web-ui-2.54.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:986a7cd4b5ed99f051b5406e27b1e5d2262fcb3dfad2efa356a3ebaad3800351
|
||||||
|
size 3679048
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:e329421232a317910a58842f2e1a87a58ac6ef0c62ff6e39514e3aca253ce46d
|
|
||||||
size 3680690
|
|
Loading…
Reference in New Issue
Block a user