Registry / database / gnocchiclient

gnocchiclient

JSON →
library7.2.0pypypiunverified

Python client library for Gnocchi, a time series data storage and indexing service. Version 7.2.0 is current; active development, release cadence irregular.

pip install gnocchiclient
INSTALL
IMPORT
SIG · GNOCCHICLIENT
G
gnocchiclient
databasepythonv7.2.0
Install
5.8s avg
Import
Disk
59MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v7.2.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 56.7MB
glibc
py 3.103.95 runs
installs and imports cleanly · install 5.8s · import 0.000s · 54MB
59MB installed
● package 59MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Client
from gnocchiclient import Client
from gnocchiclient.v1 import Client

Create a client and list metrics.

from gnocchiclient.v1 import Client import os # Optionally set auth token via environment variable os.environ.setdefault('GNOCCHI_ENDPOINT', 'http://localhost:8041') os.environ.setdefault('GNOCCHI_AUTH_TOKEN', '') client = Client( endpoint=os.environ['GNOCCHI_ENDPOINT'], auth_token=os.environ.get('GNOCCHI_AUTH_TOKEN', '') ) # List metrics metrics = client.metric.list() print(metrics)
gnocchi --version
Debug
Known issues
breakingIn version 4.x, the API client moved from `gnocchiclient.client.Client` to `gnocchiclient.v1.Client`. Old imports will fail.
fix
Use `from gnocchiclient.v1 import Client` instead of `from gnocchiclient import Client`.
affects: >=4.0.0
deprecatedThe `gnocchiclient.v2` module is deprecated and will be removed in a future release.
fix
Use `gnocchiclient.v1` for all operations.
affects: >=6.0.0
Upgrade
Version history
7.2.0latest on PyPI · released Mar 24, 2025
Audit
Dependencies

No dependency data recorded yet.

Agent activity
26 hits · last 30 days
node
26
Resources
gnocchiclient — pip install gnocchiclient · libregistry