You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/DependencyInjection/Configuration.php
+5
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,11 @@ public function getConfigTreeBuilder(): TreeBuilder
73
73
->max(1.0)
74
74
->info('The sampling factor to apply to transactions. A value of 0 will deny sending any transaction, and a value of 1 will send all transactions.')
75
75
->end()
76
+
->floatNode('profiles_sample_rate')
77
+
->min(0.0)
78
+
->max(1.0)
79
+
->info('The sampling factor to apply to profiles. A value of 0 will deny sending any profiles, and a value of 1 will send all profiles. Profiles are sampled in relation to traces_sample_rate')
0 commit comments