userver: userver/components/common_component_list.hpp Source File
⚠️ This is the documentation for an old userver version. Click here to switch to the latest version.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
common_component_list.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/components/common_component_list.hpp
4/// @brief @copybrief components::CommonComponentList()
5
6#include <userver/components/component_list.hpp>
7
8USERVER_NAMESPACE_BEGIN
9
10namespace components {
11
12/// @ingroup userver_components
13///
14/// @brief Returns the most common list of components with runtime config
15/// updates and HTTP client.
16///
17/// The list contains:
18/// * os_signals::ProcessorComponent
19/// * components::Logging
20/// * components::Tracer
21/// * components::ManagerControllerComponent
22/// * components::StatisticsStorage
23/// * components::DynamicConfig
24/// * components::LoggingConfigurator
25/// * components::DumpConfigurator
26/// * components::TestsuiteSupport
27/// * components::SystemStatisticsCollector
28/// * components::HttpClient (default and "http-client-statistics")
29/// * clients::dns::Component
30/// * components::DynamicConfigClient
31/// * components::DynamicConfigClientUpdater
32/// * engine::TaskProcessorsLoadMonitor
33ComponentList CommonComponentList();
34
35} // namespace components
36
37USERVER_NAMESPACE_END