Interface for all metric provider implementations. More...
Instance Methods | |
| (void) | - gaugeWithEventName:value:tags: |
| Log a value to a gauge metric. More... | |
| (void) | - histogramWithEventName:value:tags: |
| Log a value to a histogram metric. More... | |
| (void) | - incrementWithEventName:tags: |
| Increment the count of a metric by 1. More... | |
| (void) | - incrementWithEventName:value:tags: |
| Increment the count of a metric. More... | |
Interface for all metric provider implementations.
| - (void) gaugeWithEventName: | (NSString *) | eventName | |
| value: | (double) | value | |
| tags: | (NSMutableArray *) | tags | |
Log a value to a gauge metric.
| eventName | The name of this metric. |
| value | The current value of the guage. |
| tags | Tags to apply to the event if the provider supports it. |
| - (void) histogramWithEventName: | (NSString *) | eventName | |
| value: | (double) | value | |
| tags: | (NSMutableArray *) | tags | |
Log a value to a histogram metric.
| eventName | |
| value | |
| tags |
| - (void) incrementWithEventName: | (NSString *) | eventName | |
| tags: | (NSMutableArray *) | tags | |
Increment the count of a metric by 1.
| eventName | The name of this metric. |
| tags | Tags to apply to the event. |
| - (void) incrementWithEventName: | (NSString *) | eventName | |
| value: | (long long) | value | |
| tags: | (NSMutableArray *) | tags | |
Increment the count of a metric.
| eventName | The name of this metric. |
| value | The amount to increment the count by. |
| tags | Tags to apply to the event if the provider supports it. |