std::unique_ptr WithTag()

in spectator/id.h [99:105]


  std::unique_ptr<Id> WithTag(const std::string& key,
                              const std::string& value) const {
    // Create a copy
    Tags tags{GetTags()};
    tags.add(key, value);
    return std::make_unique<Id>(Name(), tags);
  }