Если метрика и счетчик изначально определены с определенными метками.Можно ли переименовать их позже?
Например, например: Ниже приведено первоначальное определение:
auto& counter_family = BuildCounter()
.Name("time_running_seconds")
.Help("How many seconds is this server running?")
.Labels({{"label", "value"}})
.Register(*registry);
// add a counter to the metric family
auto& second_counter = counter_family.Add(
{{"another_label", "value"}, {"yet_another_label", "value"}});
Можно ли изменить another_label на new_label в second_counter?