How to remove a previous value for a gauge?

Hi there,

I’m trying to find a way to unpublish a value when there are no orders on the market. If I don’t do that then I will get a graph that shows 30K and the best price at 0 so the range will be too big, meaning we cannot see the price very wel.

if best_bid == 0:
    own_price_gauge.remove('bid', symbol, 'BinanceProdUSDM', 0)

It seems like there is no remove function for a prometheus gauge. How would I remove a previous value that shouldnt be there anymore? Thank you.