python-observabilityclient/setup.cfg
Jaromír Wysoglad a580772449
Prometheus interaction (#7)
* Remove old observability client

* Add initial functionality for prometheus querying

* Fix a copy-paste error in get_client()

* Add additional functionality.

This commit adds:
    - commands:
        delete
        clear-tombstones
        snapshot
    - Better rbac injection as well as a possibility
      to disable rbac.
    - Configuration of prometheus_client through
      env variables and /etc/openstack/prometheus.yaml

* Make README up to date

* Implement Martin's PR comments

* Implement better support for label values in rbac

* PEP8
2023-08-03 15:30:19 +02:00

53 lines
1.5 KiB
INI

[metadata]
name = python-observabilityclient
summary = OpenStack Observability Client
description_file =
README.md
license = Apache License, Version 2.0
author = OpenStack
author_email = openstack-discuss@lists.openstack.org
home_page = https://infrawatch.github.io/documentation/
python_requires = >=3.6
classifier =
Environment :: Console
Environment :: OpenStack
Environment :: Infrawatch
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[files]
packages =
observabilityclient
[entry_points]
openstack.cli.extension =
observabilityclient = observabilityclient.plugin
openstack.observabilityclient.v1 =
metric_list = observabilityclient.v1.cli:List
metric_show = observabilityclient.v1.cli:Show
metric_query = observabilityclient.v1.cli:Query
metric_delete = observabilityclient.v1.cli:Delete
metric_clean-tombstones = observabilityclient.v1.cli:CleanTombstones
metric_snapshot = observabilityclient.v1.cli:Snapshot
[flake8]
show-source = True
builtins = _
exclude =
.venv,
.git,
dist