@@ -30,7 +30,8 @@ impl InternalEvent for VectorReloaded<'_> {
3030 info ! (
3131 target: "vector" ,
3232 message = "Vector has reloaded." ,
33- path = ?self . config_paths
33+ path = ?self . config_paths,
34+ internal_log_rate_limit = false ,
3435 ) ;
3536 counter ! ( "reloaded_total" ) . increment ( 1 ) ;
3637 }
@@ -43,7 +44,7 @@ impl InternalEvent for VectorStopped {
4344 fn emit ( self ) {
4445 info ! (
4546 target: "vector" ,
46- message = "Vector has stopped."
47+ message = "Vector has stopped." ,
4748 ) ;
4849 counter ! ( "stopped_total" ) . increment ( 1 ) ;
4950 }
@@ -56,7 +57,7 @@ impl InternalEvent for VectorQuit {
5657 fn emit ( self ) {
5758 info ! (
5859 target: "vector" ,
59- message = "Vector has quit."
60+ message = "Vector has quit." ,
6061 ) ;
6162 counter ! ( "quit_total" ) . increment ( 1 ) ;
6263 }
@@ -72,6 +73,7 @@ impl InternalEvent for VectorReloadError {
7273 error_code = "reload" ,
7374 error_type = error_type:: CONFIGURATION_FAILED ,
7475 stage = error_stage:: PROCESSING ,
76+ internal_log_rate_limit = false ,
7577 ) ;
7678 counter ! (
7779 "component_errors_total" ,
@@ -93,6 +95,7 @@ impl InternalEvent for VectorConfigLoadError {
9395 error_code = "config_load" ,
9496 error_type = error_type:: CONFIGURATION_FAILED ,
9597 stage = error_stage:: PROCESSING ,
98+ internal_log_rate_limit = false ,
9699 ) ;
97100 counter ! (
98101 "component_errors_total" ,
@@ -114,6 +117,7 @@ impl InternalEvent for VectorRecoveryError {
114117 error_code = "recovery" ,
115118 error_type = error_type:: CONFIGURATION_FAILED ,
116119 stage = error_stage:: PROCESSING ,
120+ internal_log_rate_limit = false ,
117121 ) ;
118122 counter ! (
119123 "component_errors_total" ,
0 commit comments