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 6ae80cb commit d7dc24eCopy full SHA for d7dc24e
src/datadog/sampling_priority.h
@@ -1,5 +1,16 @@
1
#pragma once
2
3
+// This component defines an enumeration of "sampling priority" values.
4
+//
5
+// Sampling priority is a hybrid between a sampling decision ("keep" versus
6
+// "drop") and a sampling reason ("user-specified rule"). Values less than or
7
+// equal to zero indicate a decision to "drop," while positive values indicate
8
+// a decision to "keep."
9
10
+// The "priority" in the term "sampling priority" is a misnomer, since the
11
+// value does not denote any relationship among the different kinds of sampling
12
+// decisions.
13
+
14
#include "sampling_mechanism.h"
15
16
namespace datadog {
0 commit comments