#include <userver/congestion_control/component.hpp>
Component to limit too active requests, also known as CC.
| Name | Description | Default value | 
|---|---|---|
| fake-mode | if set, an actual throttling is skipped, but FSM is still working and producing informational logs | false | 
| min-cpu | force fake-mode if the current cpu number is less than the specified value | 1 | 
| only-rtc | if set to true and hostinfo::IsInRtc() returns false then forces the fake-mode | true | 
| status-code | HTTP status code for ratelimited responses | 429 | 
Definition at line 41 of file component.hpp.
 Inheritance diagram for congestion_control::Component:
 Collaboration diagram for congestion_control::Component:Public Member Functions | |
| Component (const components::ComponentConfig &, const components::ComponentContext &) | |
| server::congestion_control::Limiter & | GetServerLimiter () | 
| server::congestion_control::Sensor & | GetServerSensor () | 
  Public Member Functions inherited from components::LoggableComponentBase | |
| LoggableComponentBase (const ComponentConfig &, const ComponentContext &) | |
| LoggableComponentBase (LoggableComponentBase &&)=delete | |
| LoggableComponentBase (const LoggableComponentBase &)=delete | |
| ~LoggableComponentBase () override=default | |
| ComponentHealth | GetComponentHealth () const override | 
| void | OnLoadingCancelled () override | 
| void | OnAllComponentsLoaded () override | 
| void | OnAllComponentsAreStopping () override | 
Static Public Member Functions | |
| static yaml_config::Schema | GetStaticConfigSchema () | 
  Static Public Member Functions inherited from components::LoggableComponentBase | |
| static yaml_config::Schema | GetStaticConfigSchema () | 
Static Public Attributes | |
| static constexpr std::string_view | kName = "congestion-control" | 
| The default name of congestion_control::Component component.   | |