aodhclient(1)

AODHCLIENT(1) aodhclient AODHCLIENT(1)

NAME

aodhclient - aodhclient 2.0.1

This is a client for Aodh API. There's a Python API (the aodhclient module), and a command-line script (installed as aodh). Each implements the entire Aodh API.

WARNING:

This is a new client to interact with Aodh API. There may be differences in functionality, syntax, and command line output when compared with the alarm functionality provided by ceilometerclient.


SEE ALSO:

You may want to read the Aodh Developer Guide -- the overview, at least -- to get an idea of the concepts. By understanding the concepts this library should make more sense.


CONTENTS

Installation

At the command line:

$ pip install aodhclient


The aodh shell utility

The aodh shell utility interacts with Aodh API from the command line. It supports the entirety of the Aodh API.

You'll need to provide aodh with your OpenStack credentials. You can do this with the --os-username, --os-password, --os-tenant-id and --os-auth-url options, but it's easier to just set them as environment variables:

OS_USERNAME
Your OpenStack username.

OS_PASSWORD
Your password.

OS_TENANT_NAME
Project to work on.

OS_AUTH_URL
The OpenStack auth server URL (keystone).

For example, in Bash you would use:

export OS_USERNAME=user
export OS_PASSWORD=pass
export OS_TENANT_NAME=myproject
export OS_AUTH_URL=http://auth.example.com:5000/v2.0


The command line tool will attempt to reauthenticate using your provided credentials for every request. You can override this behavior by manually supplying an auth token using --aodh-endpoint and --os-auth-token. You can alternatively set these environment variables:

export AODH_ENDPOINT=http://aodh.example.org:8041
export OS_AUTH_PLUGIN=token
export OS_AUTH_TOKEN=3bcc3d3a03f44e3d8377f9247b0ad155


Also, if the server doesn't support authentication, you can provide --os-auth-plugin aodh-noauth, --aodh-endpoint, --user-id and --project-id. You can alternatively set these environment variables:

export OS_AUTH_PLUGIN=aodh-noauth
export AODH_ENDPOINT=http://aodh.example.org:8041
export AODH_USER_ID=99aae-4dc2-4fbc-b5b8-9688c470d9cc
export AODH_PROJECT_ID=c8d27445-48af-457c-8e0d-1de7103eae1f


From there, all shell commands take the form:

aodh <command> [arguments...]


Run aodh help to get a full list of all possible commands, and run aodh help <command> to get detailed help for that command.

Examples

Create a Ceilometer threshold alarm:

openstack alarm create --name alarm1 --description 'CPU High Average' \
--type threshold --meter-name cpu_util \
--threshold 5 --comparison-operator gt --statistic avg \
--period 60 --evaluation-periods 3 \
--query "metadata.user_metadata.stack=$heat_stack_id" \
--alarm-action 'log://'


Create a Gnocchi threshold alarm:

openstack alarm create -t gnocchi_resources_threshold --name alarm1 \
--metric cpu_util --threshold 5 --resource_id <RES_ID> \
--resource_type generic --aggregation_method mean --project-id <PROJ_ID>


List alarms:

openstack alarm list


List alarm with query parameters:

openstack alarm list --query "state=alarm and type=gnocchi_resources_threshold"


Show an alarm's history:

openstack alarm-history show <ALARM_ID>


Search alarm history data:

openstack alarm-history search --query 'timestamp>"2016-03-09T01:22:35"'


The aodhclient Python API

Usage

To use aodhclient in a project:

>>> from aodhclient.v2 import client
>>> aodh = client.Client(...)
>>> aodh.alarm.list()


Reference

For more information, see the reference:

Version 2 API

Client

class aodhclient.v2.client.Client(session=None, service_type='alarming', **kwargs)
Bases: object

Client for the Aodh v2 API.

Parameters
session (keystoneauth.adapter.Adapter) -- session


Contributing

If you would like to contribute to the development of OpenStack, you must follow the steps in this page:

https://docs.openstack.org/infra/manual/developers.html


If you already have a good understanding of how the system works and your OpenStack accounts are set up, you can skip to the development workflow section of this documentation to learn how changes to OpenStack should be submitted for review via the Gerrit tool:

https://docs.openstack.org/infra/manual/developers.html#development-workflow


Pull requests submitted through GitHub will be ignored.

Bugs should be filed on Launchpad, not GitHub:

https://storyboard.openstack.org/#!/project/openstack/python-aodhclient


INDICES AND TABLES

  • genindex
  • modindex
  • search

AUTHOR

unknown

COPYRIGHT

2020, OpenStack Foundation

June 19, 2020 2.0.1