We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 994e24e commit e63450fCopy full SHA for e63450f
Sources/SystemMetrics/SystemMetrics.swift
@@ -68,6 +68,7 @@ extension MetricsSystem {
68
Gauge(label: self.labels.label(for: \.startTimeSeconds), dimensions: self.dimensions).record(metrics.startTimeSeconds)
69
Gauge(label: self.labels.label(for: \.cpuSecondsTotal), dimensions: self.dimensions).record(metrics.cpuSeconds)
70
Gauge(label: self.labels.label(for: \.maxFileDescriptors), dimensions: self.dimensions).record(metrics.maxFileDescriptors)
71
+ Gauge(label: self.labels.label(for: \.openFileDescriptors), dimensions: self.dimensions).record(metrics.openFileDescriptors)
72
}))
73
74
self.timer.schedule(deadline: .now() + self.timeInterval, repeating: self.timeInterval)
0 commit comments