public func increment(by amount: Int = 1) {
            self.count.wrappingIncrement(by: amount, ordering: .sequentiallyConsistent)
            self.gauge.record(self.count.load(ordering: .sequentiallyConsistent))
        }