flexmetric 0.3.1__tar.gz → 0.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {flexmetric-0.3.1 → flexmetric-0.3.2}/PKG-INFO +3 -1
- {flexmetric-0.3.1 → flexmetric-0.3.2}/README.md +2 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric.egg-info/PKG-INFO +3 -1
- {flexmetric-0.3.1 → flexmetric-0.3.2}/setup.py +1 -1
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric/__init__.py +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric/config/__init__.py +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric/config/configuration.py +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric/file_recognition/__init__.py +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric/file_recognition/exec_file.py +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric/logging_module/__init__.py +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric/logging_module/logger.py +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric/metric_process/__init__.py +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric/metric_process/database_processing.py +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric/metric_process/expiring_queue.py +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric/metric_process/process_commands.py +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric/metric_process/prometheus_agent.py +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric/metric_process/views.py +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric.egg-info/SOURCES.txt +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric.egg-info/dependency_links.txt +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric.egg-info/entry_points.txt +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric.egg-info/requires.txt +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/flexmetric.egg-info/top_level.txt +0 -0
- {flexmetric-0.3.1 → flexmetric-0.3.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: flexmetric
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.2
|
4
4
|
Summary: A secure flexible Prometheus exporter for commands, databases, functions, and scripts.
|
5
5
|
Home-page: https://github.com/nikhillingadhal1999/flexmetric
|
6
6
|
Author: Nikhil Lingadhal
|
@@ -156,6 +156,8 @@ commands:
|
|
156
156
|
- name: disk_usage
|
157
157
|
command: df -h
|
158
158
|
label: path
|
159
|
+
label_column: -1
|
160
|
+
value_column: 4
|
159
161
|
timeout_seconds: 60
|
160
162
|
```
|
161
163
|
```yaml
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: flexmetric
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.2
|
4
4
|
Summary: A secure flexible Prometheus exporter for commands, databases, functions, and scripts.
|
5
5
|
Home-page: https://github.com/nikhillingadhal1999/flexmetric
|
6
6
|
Author: Nikhil Lingadhal
|
@@ -156,6 +156,8 @@ commands:
|
|
156
156
|
- name: disk_usage
|
157
157
|
command: df -h
|
158
158
|
label: path
|
159
|
+
label_column: -1
|
160
|
+
value_column: 4
|
159
161
|
timeout_seconds: 60
|
160
162
|
```
|
161
163
|
```yaml
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="flexmetric",
|
5
|
-
version="0.3.
|
5
|
+
version="0.3.2",
|
6
6
|
author="Nikhil Lingadhal",
|
7
7
|
description="A secure flexible Prometheus exporter for commands, databases, functions, and scripts.",
|
8
8
|
long_description=open("README.md").read(),
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|