We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e013bd commit e2a58c1Copy full SHA for e2a58c1
src/datadog/tags.h
@@ -1,5 +1,8 @@
1
#pragma once
2
3
+// This component provides symbols for all span tag names that have special
4
+// meaning.
5
+
6
#include <string>
7
#include <string_view>
8
@@ -30,6 +33,8 @@ extern const std::string span_sampling_rule_rate;
30
33
extern const std::string span_sampling_limit;
31
34
} // namespace internal
32
35
36
+// Return whether the specified `tag_name` is reserved for use internal to this
37
+// library.
38
bool is_internal(std::string_view tag_name);
39
40
} // namespace tags
0 commit comments