UrlMetricType
public class UrlMetricType
This implements the developer facing API for recording URL metrics.
Instances of this class type are automatically generated by the parsers at build time, allowing developers to record values that were previously registered in the metrics.yaml file.
The URL API only exposes the UrlMetricType.set(_:)
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)
-
Set a URL value.
Declaration
Swift
public func set(url: URL)
-
Set a URL value.
Declaration
Swift
public func set(_ value: String)
-
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.
Throws a
Missing value
exception if no value is storedDeclaration
Swift
public func testGetValue(_ pingName: String? = nil) -> String?
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
-
Returns the number of errors recorded for the given metric.
Declaration
Swift
public func testGetNumRecordedErrors(_ error: ErrorType) -> Int32
Parameters
errorType
The type of error recorded.
Return Value
The number of errors recorded for the metric for the given error type.