flexmetric 0.1.0__tar.gz → 0.1.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.1.0 → flexmetric-0.1.2}/PKG-INFO +3 -3
- {flexmetric-0.1.0 → flexmetric-0.1.2}/README.md +2 -2
- flexmetric-0.1.2/flexmetric/config/configuration.py +4 -0
- flexmetric-0.1.2/flexmetric/metric_process/__init__.py +0 -0
- {flexmetric-0.1.0 → flexmetric-0.1.2}/flexmetric.egg-info/PKG-INFO +3 -3
- {flexmetric-0.1.0 → flexmetric-0.1.2}/flexmetric.egg-info/SOURCES.txt +2 -0
- {flexmetric-0.1.0 → flexmetric-0.1.2}/setup.py +1 -1
- {flexmetric-0.1.0 → flexmetric-0.1.2}/flexmetric/__init__.py +0 -0
- {flexmetric-0.1.0/flexmetric/file_recognition → flexmetric-0.1.2/flexmetric/config}/__init__.py +0 -0
- {flexmetric-0.1.0/flexmetric/logging_module → flexmetric-0.1.2/flexmetric/file_recognition}/__init__.py +0 -0
- {flexmetric-0.1.0 → flexmetric-0.1.2}/flexmetric/file_recognition/exec_file.py +0 -0
- {flexmetric-0.1.0/flexmetric/metric_process → flexmetric-0.1.2/flexmetric/logging_module}/__init__.py +0 -0
- {flexmetric-0.1.0 → flexmetric-0.1.2}/flexmetric/logging_module/logger.py +0 -0
- {flexmetric-0.1.0 → flexmetric-0.1.2}/flexmetric/metric_process/database_processing.py +0 -0
- {flexmetric-0.1.0 → flexmetric-0.1.2}/flexmetric/metric_process/process_commands.py +0 -0
- {flexmetric-0.1.0 → flexmetric-0.1.2}/flexmetric/metric_process/prometheus_agent.py +0 -0
- {flexmetric-0.1.0 → flexmetric-0.1.2}/flexmetric.egg-info/dependency_links.txt +0 -0
- {flexmetric-0.1.0 → flexmetric-0.1.2}/flexmetric.egg-info/entry_points.txt +0 -0
- {flexmetric-0.1.0 → flexmetric-0.1.2}/flexmetric.egg-info/requires.txt +0 -0
- {flexmetric-0.1.0 → flexmetric-0.1.2}/flexmetric.egg-info/top_level.txt +0 -0
- {flexmetric-0.1.0 → flexmetric-0.1.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: flexmetric
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
4
4
|
Summary: A flexible Prometheus exporter for commands, databases, functions, and scripts.
|
5
5
|
Home-page: https://github.com/nikhillingadhal1999/custom_prometheus_agent
|
6
6
|
Author: Nikhil Lingadhal
|
@@ -49,7 +49,7 @@ Install from PyPI:
|
|
49
49
|
|
50
50
|
```bash
|
51
51
|
pip install flexmetric
|
52
|
-
|
52
|
+
```
|
53
53
|
## Usage
|
54
54
|
|
55
55
|
Run FlexMetric from the command line:
|
@@ -130,7 +130,7 @@ The following command-line options are available when running FlexMetric:
|
|
130
130
|
|
131
131
|
```bash
|
132
132
|
flexmetric --commands --commands-config commands.yaml --port 8000
|
133
|
-
|
133
|
+
```
|
134
134
|
## Example Prometheus Output
|
135
135
|
|
136
136
|
Once FlexMetric is running, the `/metrics` endpoint will expose metrics in the Prometheus format.
|
@@ -21,7 +21,7 @@ Install from PyPI:
|
|
21
21
|
|
22
22
|
```bash
|
23
23
|
pip install flexmetric
|
24
|
-
|
24
|
+
```
|
25
25
|
## Usage
|
26
26
|
|
27
27
|
Run FlexMetric from the command line:
|
@@ -102,7 +102,7 @@ The following command-line options are available when running FlexMetric:
|
|
102
102
|
|
103
103
|
```bash
|
104
104
|
flexmetric --commands --commands-config commands.yaml --port 8000
|
105
|
-
|
105
|
+
```
|
106
106
|
## Example Prometheus Output
|
107
107
|
|
108
108
|
Once FlexMetric is running, the `/metrics` endpoint will expose metrics in the Prometheus format.
|
File without changes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: flexmetric
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
4
4
|
Summary: A flexible Prometheus exporter for commands, databases, functions, and scripts.
|
5
5
|
Home-page: https://github.com/nikhillingadhal1999/custom_prometheus_agent
|
6
6
|
Author: Nikhil Lingadhal
|
@@ -49,7 +49,7 @@ Install from PyPI:
|
|
49
49
|
|
50
50
|
```bash
|
51
51
|
pip install flexmetric
|
52
|
-
|
52
|
+
```
|
53
53
|
## Usage
|
54
54
|
|
55
55
|
Run FlexMetric from the command line:
|
@@ -130,7 +130,7 @@ The following command-line options are available when running FlexMetric:
|
|
130
130
|
|
131
131
|
```bash
|
132
132
|
flexmetric --commands --commands-config commands.yaml --port 8000
|
133
|
-
|
133
|
+
```
|
134
134
|
## Example Prometheus Output
|
135
135
|
|
136
136
|
Once FlexMetric is running, the `/metrics` endpoint will expose metrics in the Prometheus format.
|
@@ -7,6 +7,8 @@ flexmetric.egg-info/dependency_links.txt
|
|
7
7
|
flexmetric.egg-info/entry_points.txt
|
8
8
|
flexmetric.egg-info/requires.txt
|
9
9
|
flexmetric.egg-info/top_level.txt
|
10
|
+
flexmetric/config/__init__.py
|
11
|
+
flexmetric/config/configuration.py
|
10
12
|
flexmetric/file_recognition/__init__.py
|
11
13
|
flexmetric/file_recognition/exec_file.py
|
12
14
|
flexmetric/logging_module/__init__.py
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="flexmetric",
|
5
|
-
version="0.1.
|
5
|
+
version="0.1.2",
|
6
6
|
author="Nikhil Lingadhal",
|
7
7
|
description="A flexible Prometheus exporter for commands, databases, functions, and scripts.",
|
8
8
|
long_description=open("README.md").read(),
|
File without changes
|
{flexmetric-0.1.0/flexmetric/file_recognition → flexmetric-0.1.2/flexmetric/config}/__init__.py
RENAMED
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
|