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