mirror of
https://github.com/MaxenceG2M/prometheus-immich-exporter.git
synced 2025-12-08 14:53:23 +00:00
feat: add load average and virtual memory metrics
Added load average and virtual memory metrics Some optimizations
This commit is contained in:
6
setup.py
6
setup.py
@@ -3,10 +3,12 @@ from setuptools import setup
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
version = '1.2.0'
|
||||
|
||||
setup(
|
||||
name='prometheus-immich-exporter',
|
||||
packages=['immich_exporter'],
|
||||
version='1.1.0',
|
||||
version=version,
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
description='Prometheus exporter for immich',
|
||||
@@ -18,7 +20,7 @@ setup(
|
||||
keywords=['prometheus', 'immich'],
|
||||
classifiers=[],
|
||||
python_requires='>=3',
|
||||
install_requires=['attrdict==2.0.1', 'prometheus_client==0.19.0 ', 'requests==2.31.0', 'python-json-logger==2.0.7'],
|
||||
install_requires=['attrdict==2.0.1', 'prometheus_client==0.19.0 ', 'requests==2.31.0', 'python-json-logger==2.0.7', 'psutil==5.9.8'],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'immich_exporter=immich_exporter.exporter:main',
|
||||
|
||||
Reference in New Issue
Block a user