forked from pool/golang-github-prometheus-prometheus
Accepting request 1109282 from home:ojkastl_buildservice:Branch_server_monitoring
update to 2.47.0 OBS-URL: https://build.opensuse.org/request/show/1109282 OBS-URL: https://build.opensuse.org/package/show/server:monitoring/golang-github-prometheus-prometheus?expand=0&rev=85
This commit is contained in:
parent
75c0c77ba8
commit
440efff619
2
Makefile
2
Makefile
@ -7,7 +7,7 @@ clean:
|
|||||||
rm -f $(NAME)-*.tar $(NAME)-*.tar.gz web-ui-*.tar.gz npm_licenses.tar.bz2 vendor.tar.gz
|
rm -f $(NAME)-*.tar $(NAME)-*.tar.gz web-ui-*.tar.gz npm_licenses.tar.bz2 vendor.tar.gz
|
||||||
|
|
||||||
tar:
|
tar:
|
||||||
osc service disabledrun
|
osc service manualrun
|
||||||
@version=$$( awk '/^Version:/ {print $$2;exit;}' $(SPEC) ) && \
|
@version=$$( awk '/^Version:/ {print $$2;exit;}' $(SPEC) ) && \
|
||||||
echo "Package version is $$version" && \
|
echo "Package version is $$version" && \
|
||||||
basename=$(NAME)-$$version && \
|
basename=$(NAME)-$$version && \
|
||||||
|
10
_service
10
_service
@ -1,18 +1,18 @@
|
|||||||
<services>
|
<services>
|
||||||
<service name="tar_scm" mode="disabled">
|
<service name="tar_scm" mode="manual">
|
||||||
<param name="url">https://github.com/prometheus/prometheus.git</param>
|
<param name="url">https://github.com/prometheus/prometheus.git</param>
|
||||||
<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.46.0</param>
|
<param name="revision">v2.47.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>
|
||||||
<service name="recompress" mode="disabled">
|
<service name="recompress" mode="manual">
|
||||||
<param name="file">*.tar</param>
|
<param name="file">*.tar</param>
|
||||||
<param name="compression">gz</param>
|
<param name="compression">gz</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="go_modules" mode="disabled">
|
<service name="go_modules" mode="manual">
|
||||||
<param name="archive">prometheus-2.46.0.tar.gz</param>
|
<param name="archive">prometheus-2.47.0.tar.gz</param>
|
||||||
</service>
|
</service>
|
||||||
</services>
|
</services>
|
||||||
|
@ -1,3 +1,41 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 6 15:05:28 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>
|
||||||
|
|
||||||
|
- use "manual" service instead of "disabled"
|
||||||
|
- update to 2.47.0:
|
||||||
|
This release adds an experimental OpenTelemetry (OTLP) Ingestion
|
||||||
|
feature, and also new setting `keep_dropped_targets` to limit the
|
||||||
|
amount of dropped targets held in memory. This defaults to 0
|
||||||
|
meaning 'no limit', so we encourage users with large Prometheus
|
||||||
|
to try setting a limit such as 100.
|
||||||
|
* [FEATURE] Web: Add OpenTelemetry (OTLP) Ingestion endpoint.
|
||||||
|
#12571 #12643
|
||||||
|
* [FEATURE] Scraping: Optionally limit detail on dropped targets,
|
||||||
|
to save memory. #12647
|
||||||
|
* [ENHANCEMENT] TSDB: Write head chunks to disk in the background
|
||||||
|
to reduce blocking. #11818
|
||||||
|
* [ENHANCEMENT] PromQL: Speed up aggregate and function queries.
|
||||||
|
#12682
|
||||||
|
* [ENHANCEMENT] PromQL: More efficient evaluation of query with
|
||||||
|
`timestamp()`. #12579
|
||||||
|
* [ENHANCEMENT] API: Faster streaming of Labels to JSON. #12598
|
||||||
|
* [ENHANCEMENT] Agent: Memory pooling optimisation. #12651
|
||||||
|
* [ENHANCEMENT] TSDB: Prevent storage space leaks due to
|
||||||
|
terminated snapshots on shutdown. #12664
|
||||||
|
* [ENHANCEMENT] Histograms: Refactoring and optimisations. #12352
|
||||||
|
#12584 #12596 #12711 #12054
|
||||||
|
* [ENHANCEMENT] Histograms: Add `histogram_stdvar` and
|
||||||
|
`histogram_stddev` functions. #12614
|
||||||
|
* [ENHANCEMENT] Remote-write: add http.resend_count tracing
|
||||||
|
attribute. #12676
|
||||||
|
* [ENHANCEMENT] TSDB: Support native histograms in snapshot on
|
||||||
|
shutdown. #12722
|
||||||
|
* [BUGFIX] TSDB/Agent: ensure that new series get written to WAL
|
||||||
|
on rollback. #12592
|
||||||
|
* [BUGFIX] Scraping: fix infinite loop on exemplar in protobuf
|
||||||
|
format. #12737
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 25 13:42:13 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>
|
Tue Jul 25 13:42:13 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: golang-github-prometheus-prometheus
|
Name: golang-github-prometheus-prometheus
|
||||||
Version: 2.46.0
|
Version: 2.47.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:3e9400ea5e3d04e5e4fdab34c96b44b297a526b8fd97e7eee53358a368948cd3
|
oid sha256:b55ccb1feef25107d13a4bd70bf1d67fd4ba39fe3f9a75878427404fdeb72e6e
|
||||||
size 159002
|
size 156173
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:088eb4d90e16d271d5834a3342484c32fa9b674c3337996e04a302f124865d2a
|
|
||||||
size 6413036
|
|
3
prometheus-2.47.0.tar.gz
Normal file
3
prometheus-2.47.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d9fefab50a9b348236209476b2514e5a74d4e0102f865298ccfe6c785bae0a2a
|
||||||
|
size 6451476
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:e0fdad646a9dc9ed74bc422a49263aa3ebe1e2e24e267dccb5a6939bf17a7a41
|
oid sha256:faeb96883e19b87ad9361de9143b6cc1e237688b9d56bea25ff3685f9ddebd21
|
||||||
size 13095466
|
size 13229182
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:fd6028e56bf19295cf0863a9ff19673910418d928fe7eb730e7aded3b2487146
|
|
||||||
size 3568981
|
|
3
web-ui-2.47.0.tar.gz
Normal file
3
web-ui-2.47.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2144db3d574829676a6fc1f341dd19d438afcf5461d7cd404a3c7761929d8f96
|
||||||
|
size 3569124
|
Loading…
Reference in New Issue
Block a user