mirror of
https://github.com/prometheus-pve/prometheus-pve-exporter.git
synced 2025-04-18 19:04:06 +03:00
Update changelog bump release (#191)
This commit is contained in:
parent
ded9219dc7
commit
a99b4b3f0d
@ -9,6 +9,18 @@ The format is based on `Keep a Changelog`_ and this project adheres to
|
||||
`Unreleased`_
|
||||
-------------
|
||||
|
||||
`3.0.0`_ - 2023-11-05
|
||||
---------------------
|
||||
|
||||
Changed (BREAKING)
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
- Use flags instead of positional arguments for config file and listen address
|
||||
(#190)
|
||||
- Scrape /nodes endpoint from current node only (#180)
|
||||
- Remove tini from docker image (#179)
|
||||
- Bump required python version to 3.9 (bullseye) (#162)
|
||||
- Run with a dedicated user in container by default (#182)
|
||||
|
||||
|
||||
`3.0.0b1`_ - 2023-10-16
|
||||
-----------------------
|
||||
@ -265,7 +277,8 @@ Added
|
||||
|
||||
.. _Keep a Changelog: http://keepachangelog.com/en/1.0.0/
|
||||
.. _Semantic Versioning: http://semver.org/spec/v2.0.0.html
|
||||
.. _Unreleased: https://github.com/prometheus-pve/prometheus-pve-exporter/compare/v3.0.0b1...HEAD
|
||||
.. _Unreleased: https://github.com/prometheus-pve/prometheus-pve-exporter/compare/v3.0.0...HEAD
|
||||
.. _3.0.0: https://github.com/prometheus-pve/prometheus-pve-exporter/compare/v3.0.0b1...v3.0.0
|
||||
.. _3.0.0b1: https://github.com/prometheus-pve/prometheus-pve-exporter/compare/v2.3.1...v3.0.0b1
|
||||
.. _2.3.1: https://github.com/prometheus-pve/prometheus-pve-exporter/compare/v2.3.0...v2.3.1
|
||||
.. _2.3.0: https://github.com/prometheus-pve/prometheus-pve-exporter/compare/v2.2.4...v2.3.0
|
||||
|
@ -37,7 +37,7 @@ Example: Run the image with a mounted configuration file and published port:
|
||||
|
||||
.. code:: shell
|
||||
|
||||
docker run --init --name prometheus-pve-exporter -d -p 127.0.0.1:9221:9221 -v /path/to/pve.yml:/etc/pve.yml prompve/prometheus-pve-exporter
|
||||
docker run --init --name prometheus-pve-exporter -d -p 127.0.0.1:9221:9221 -v /path/to/pve.yml:/etc/prometheus/pve.yml prompve/prometheus-pve-exporter
|
||||
|
||||
Prometheus PVE Exporter will now be reachable at http://localhost:9221/.
|
||||
|
||||
@ -92,8 +92,8 @@ Usage
|
||||
Exposes PVE onboot status
|
||||
|
||||
|
||||
Use `[::]` for the `address` argument in order to bind to both IPv6 and IPv4
|
||||
sockets on dual stacked machines.
|
||||
Use `[::]` in the `--web.listen-address` flag in order to bind to both IPv6 and
|
||||
IPv4 sockets on dual stacked machines.
|
||||
|
||||
Visit http://localhost:9221/pve?target=1.2.3.4&cluster=1&node=1 where 1.2.3.4
|
||||
is the IP of the Proxmox VE node to get metrics from. Specify the ``module``
|
||||
|
4
pve.yml
4
pve.yml
@ -1,4 +1,4 @@
|
||||
default:
|
||||
user: prometheus@pve
|
||||
password: sEcr3T!
|
||||
verify_ssl: false
|
||||
token_name: prompve-scraper
|
||||
token_value: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
|
||||
|
Loading…
x
Reference in New Issue
Block a user