I have hundreds of customers and I have several metrics I'd like to keep to each one of them.
Let's say I have a metric orders_count
.
I have two possibilities:
- use a label - i.e.
order_count{customer=customer_name}
- have a different counter for every customer - i.e.
order_count_customer_name
What is the preferable way and why?