EventMetricType
public class EventMetricType<ExtraObject> where ExtraObject : EventExtras
This implements the developer facing API for recording events.
Instances of this class type are automatically generated by the parsers at built time, allowing developers to record events that were previously registered in the metrics.yaml file.
The Events API only exposes the EventMetricType.record(extra:)
method, which takes care of validating the input
data and making sure that limits are enforced.
-
The public constructor used by automatically generated metrics.
Declaration
Swift
public init(_ meta: CommonMetricData, _ allowedExtraKeys: [String]? = nil)
-
Undocumented
Declaration
Swift
public func record(_ properties: ExtraObject? = nil)
-
Returns the stored value for testing purposes only. This function will attempt to await the last task (if any) writing to the the metric’s storage engine before returning a value.
Declaration
Swift
public func testGetValue(_ pingName: String? = nil) -> [RecordedEvent]?
Parameters
pingName
represents the name of the ping to retrieve the metric for. Defaults to the first value in
sendInPings
.Return Value
value of the stored metric or
nil
if nothing was recorded. -
Returns the number of errors recorded for the given metric.
Declaration
Swift
public func testGetNumRecordedErrors(_ errorType: ErrorType) -> Int32
Parameters
errorType
The type of error recorded.
Return Value
The number of errors recorded for the metric for the given error type.