in spectator/id.h [113:119]
std::unique_ptr<Id> WithTags(const Tags& extra_tags) const {
Tags tags{GetTags()};
for (const auto& t : extra_tags) {
tags.add(t.first, t.second);
}
return std::make_unique<Id>(Name(), tags);
}