1
0
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:
znerol 2023-11-05 15:32:36 +01:00 committed by GitHub
parent ded9219dc7
commit a99b4b3f0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 7 deletions

View File

@ -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

View File

@ -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``

View File

@ -1,4 +1,4 @@
default:
user: prometheus@pve
password: sEcr3T!
verify_ssl: false
token_name: prompve-scraper
token_value: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX

View File

@ -3,7 +3,7 @@ from setuptools import setup
setup(
name="prometheus-pve-exporter",
version="3.0.0b1",
version="3.0.0",
author="Lorenz Schori",
author_email="lo@znerol.ch",
description=("Proxmox VE exporter for the Prometheus monitoring system."),