Fix typos in transformer docstrings
Aggregator and accumulator transformers have some typos in their docstrings, this patch fixes this. Change-Id: I0b9773fcd94d3b3fb42ca9182b4de186376a2d03
This commit is contained in:
parent
344a3872e7
commit
0ef869d324
@ -19,9 +19,9 @@ from ceilometer import transformer
|
||||
|
||||
|
||||
class TransformerAccumulator(transformer.TransformerBase):
|
||||
"""Transformer that accumulates sample until a threshold.
|
||||
"""Transformer that accumulates samples until a threshold.
|
||||
|
||||
And then flush them out in the wild.
|
||||
And then flushes them out into the wild.
|
||||
"""
|
||||
|
||||
def __init__(self, size=1, **kwargs):
|
||||
|
@ -143,10 +143,10 @@ class RateOfChangeTransformer(ScalingTransformer):
|
||||
|
||||
|
||||
class AggregatorTransformer(ScalingTransformer):
|
||||
"""Transformer that aggregate sample.
|
||||
"""Transformer that aggregates samples.
|
||||
|
||||
Aggregation goes until a threshold or/and a retention_time, and then flush
|
||||
them out in the wild.
|
||||
Aggregation goes until a threshold or/and a retention_time, and then
|
||||
flushes them out into the wild.
|
||||
|
||||
Example:
|
||||
To aggregate sample by resource_metadata and keep the
|
||||
|
Loading…
Reference in New Issue
Block a user