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 e030291 commit 4551f63Copy full SHA for 4551f63
src/datadog/span_config.h
@@ -1,5 +1,18 @@
1
#pragma once
2
3
+// This component provides a `struct`, `SpanConfig`, used to specify span
4
+// properties when a span is created. The following member functions accept a
5
+// `SpanConfig` argument:
6
+//
7
+// - `Tracer::create_span`
8
+// - `Tracer::extract_span`
9
+// - `Span::create_child`
10
11
+// `SpanConfig` contains much of the same information as `SpanDefaults`, but the
12
+// two types have different purposes. `SpanDefaults` are the properties used
13
+// when no corresponding property is specified in a `SpanConfig` argument.
14
+// See `SpanData::apply_config`.
15
+
16
#include <optional>
17
#include <string>
18
#include <unordered_map>
0 commit comments