Base class for plugins.
Bases: object
Discover resources to monitor.
The most fine-grained discovery should be preferred, so the work is the most evenly distributed among multiple agents (if they exist).
For example: if the pollster can separately poll individual resources, it should have its own discovery implementation to discover those resources. If it can only poll per-tenant, then the TenantDiscovery should be used. If even that is not possible, use EndpointDiscovery (see their respective docstrings).
Parameters: |
|
---|
Bases: tuple
ExchangeTopics(exchange, topics)
Bases: exceptions.Exception
Error of loading pollster plugin.
PollsterBase provides a hook, setup_environment, called in pollster loading to setup required HW/SW dependency. Any exception from it would be propagated as ExtensionLoadError, then skip loading this pollster.
Bases: object
Use to mark non-measurement meters
There are a number of historical non-measurement meters that should really be captured as events. This common base allows us to disable these invalid meters.
Bases: ceilometer.agent.plugin_base.PluginBase
Base class for plugins that support the notification API.
Return a sequence of oslo.messaging.Target.
Sequence is defining the exchange and topics to be connected for this plugin. :param conf: Configuration.
RPC endpoint for notification messages
When another service sends a notification over the message bus, this method receives it.
Parameters: |
|
---|
Return a sequence of Counter instances for the given message.
Parameters: | message – Message to process. |
---|
Return samples produced by process_notification.
Samples produced for the given notification. :param context: Execution context from the service or RPC call :param notification: The notification to process.
Bases: object
Base class for all plugins.
Bases: ceilometer.agent.plugin_base.PluginBase
Base class for plugins that support the polling API.
Return a sequence of Counter instances from polling the resources.
Parameters: |
|
---|
Setup required environment for pollster.
Each subclass could overwrite it for specific usage. Any exception raised in this function would prevent pollster being loaded.
Bases: exceptions.Exception
Permenant error when polling.
When unrecoverable error happened in polling, pollster can raise this exception with failed resource to prevent itself from polling any more. Resource is one of parameter resources from get_samples that cause polling error.