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: core/include/userver/components/manager_controller_component.hpp
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,7 @@ class Manager;
49
49
/// preheat_stacktrace_collector | whether to collect a dummy stacktrace at server start up (usable to avoid loading debug info at random point at runtime) | true
50
50
/// userver_experiments.*NAME* | whether to enable certain userver experiments; these are gradually enabled by userver team, for internal use only | false
51
51
/// graceful_shutdown_interval | at shutdown, first hang for this duration with /ping 5xx to give the balancer a chance to redirect new requests to other hosts | 0s
52
+
/// enable_trx_tracker | Enable checking of heavy operations (like http calls) while having active database transactions. | true
Copy file name to clipboardExpand all lines: otlp/include/userver/otlp/logs/component.hpp
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,9 @@ class Logger;
26
26
/// ## Static options:
27
27
/// Name | Description | Default value
28
28
/// ---- | ----------- | -------------
29
-
/// endpoint | URI of otel collector (e.g. 127.0.0.1:4317) | -
29
+
/// endpoint | URI of otel collector (e.g. 127.0.0.1:4317). This endpoint is used both for logs and traces. If you want separate endpoints, then use below options. | -
30
+
/// logs-endpoint | URI of otel collector (gRPC). This endpoint is used only for logs. | -
31
+
/// tracing-endpoint | URI of otel collector (gRPC). This endpoint is used only for traces. | -
30
32
/// client-factory-name | Name of the grpc client factory | -
31
33
/// max-queue-size | Maximum async queue size | 65535
32
34
/// max-batch-delay | Maximum batch delay | 100ms
@@ -44,6 +46,8 @@ class Logger;
44
46
// clang-format on
45
47
classLoggerComponentfinal : public components::RawComponentBase {
46
48
public:
49
+
/// @ingroup userver_component_names
50
+
/// @brief The default name of otlp::LoggerComponent
0 commit comments