Instance Methodswift-metrics 2.6.1CoreMetrics
destroyRecorder(_:)
Metrics.swift:1137func destroyRecorder(_ handler: RecorderHandler)
func destroyRecorder(_ handler: RecorderHandler)
s11CoreMetrics09MultiplexB7HandlerC15destroyRecorderyyAA0fD0_pF
What are these?811K2
import CoreMetrics
A Metrics API package for Swift.
final class MultiplexMetricsHandler
A pseudo-metrics handler that can be used to send messages to multiple other metrics handlers.
protocol RecorderHandler : AnyObject, _SwiftMetricsSendableProtocol
A RecorderHandler
represents a backend implementation of a Recorder
.
init(factories: [MetricsFactory])
func destroyCounter(_ handler: CounterHandler)
func destroyFloatingPointCounter(_ handler: FloatingPointCounterHandler)
func destroyMeter(_ handler: MeterHandler)
func destroyTimer(_ handler: TimerHandler)
func makeCounter(label: String, dimensions: [(String, String)]) -> CounterHandler
func makeFloatingPointCounter(label: String, dimensions: [(String, String)]) -> FloatingPointCounterHandler
func makeMeter(label: String, dimensions: [(String, String)]) -> MeterHandler
func makeRecorder(label: String, dimensions: [(String, String)], aggregate: Bool) -> RecorderHandler
func makeTimer(label: String, dimensions: [(String, String)]) -> TimerHandler