netdata-cli 0.1.0__tar.gz → 0.2.0__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.
- {netdata_cli-0.1.0 → netdata_cli-0.2.0}/PKG-INFO +6 -2
- {netdata_cli-0.1.0 → netdata_cli-0.2.0}/README.md +4 -0
- {netdata_cli-0.1.0 → netdata_cli-0.2.0}/netdata_cli/__init__.py +1 -1
- netdata_cli-0.2.0/netdata_cli/cli.py +918 -0
- netdata_cli-0.2.0/netdata_cli/mcp_client.py +263 -0
- {netdata_cli-0.1.0 → netdata_cli-0.2.0}/netdata_cli.egg-info/PKG-INFO +6 -2
- {netdata_cli-0.1.0 → netdata_cli-0.2.0}/netdata_cli.egg-info/SOURCES.txt +1 -0
- {netdata_cli-0.1.0 → netdata_cli-0.2.0}/pyproject.toml +2 -2
- netdata_cli-0.1.0/netdata_cli/cli.py +0 -460
- {netdata_cli-0.1.0 → netdata_cli-0.2.0}/LICENSE +0 -0
- {netdata_cli-0.1.0 → netdata_cli-0.2.0}/netdata_cli/client.py +0 -0
- {netdata_cli-0.1.0 → netdata_cli-0.2.0}/netdata_cli/formatters.py +0 -0
- {netdata_cli-0.1.0 → netdata_cli-0.2.0}/netdata_cli.egg-info/dependency_links.txt +0 -0
- {netdata_cli-0.1.0 → netdata_cli-0.2.0}/netdata_cli.egg-info/entry_points.txt +0 -0
- {netdata_cli-0.1.0 → netdata_cli-0.2.0}/netdata_cli.egg-info/requires.txt +0 -0
- {netdata_cli-0.1.0 → netdata_cli-0.2.0}/netdata_cli.egg-info/top_level.txt +0 -0
- {netdata_cli-0.1.0 → netdata_cli-0.2.0}/setup.cfg +0 -0
- {netdata_cli-0.1.0 → netdata_cli-0.2.0}/tests/test_client.py +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: netdata-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: A powerful CLI for the Netdata Agent REST API — query metrics, charts, alarms, and functions from the terminal.
|
|
5
|
-
Author-email: Sosi <
|
|
5
|
+
Author-email: Sosi <albertotplaza@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/sosiman/netdata-cli
|
|
8
8
|
Project-URL: Repository, https://github.com/sosiman/netdata-cli
|
|
@@ -35,6 +35,10 @@ Dynamic: license-file
|
|
|
35
35
|
|
|
36
36
|
# netdata-cli
|
|
37
37
|
|
|
38
|
+
[](https://pypi.org/project/netdata-cli/)
|
|
39
|
+
[](https://pypi.org/project/netdata-cli/)
|
|
40
|
+
[](LICENSE)
|
|
41
|
+
|
|
38
42
|
A powerful CLI for the [Netdata](https://www.netdata.cloud/) Agent REST API.
|
|
39
43
|
|
|
40
44
|
Query metrics, charts, alarms, functions, and agent info — all from the terminal.
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# netdata-cli
|
|
2
2
|
|
|
3
|
+
[](https://pypi.org/project/netdata-cli/)
|
|
4
|
+
[](https://pypi.org/project/netdata-cli/)
|
|
5
|
+
[](LICENSE)
|
|
6
|
+
|
|
3
7
|
A powerful CLI for the [Netdata](https://www.netdata.cloud/) Agent REST API.
|
|
4
8
|
|
|
5
9
|
Query metrics, charts, alarms, functions, and agent info — all from the terminal.
|