Initialization
The initialization module is in charge of setup and running the input (pulling logic) and output (delivering logic) services and validating the given configuration.
A successful run has the following output messages for the initializer module:
DevoSenderManager(standard_senders,manager,devo_us_1) -> Starting thread
2024-02-16T11:55:03.475 INFO OutputProcess::MainThread -> DevoSender(lookup_senders,devo_sender_0) -> Starting thread
2024-02-16T11:55:03.475 INFO OutputProcess::DevoSenderManager(standard_senders,manager,devo_us_1) -> [EMERGENCY PERSISTENCE SYSTEM] DevoSenderManager(standard_senders,manager,devo_us_1) -> Nothing retrieved from the persistence.
2024-02-16T11:55:03.475 INFO OutputProcess::MainThread -> DevoSenderManagerMonitor(lookup_senders,devo_us_1) -> Starting thread (every 300 seconds)
2024-02-16T11:55:03.475 INFO OutputProcess::OutputStandardConsumer(standard_senders_consumer_0) -> [EMERGENCY PERSISTENCE SYSTEM] OutputStandardConsumer(standard_senders_consumer_0) -> Nothing retrieved from the persistence.
2024-02-16T11:55:03.476 INFO InputProcess::MainThread -> Validating service input config
2024-02-16T11:55:03.476 INFO OutputProcess::MainThread -> DevoSenderManager(lookup_senders,manager,devo_us_1) -> Starting thread
2024-02-16T11:55:03.476 INFO OutputProcess::MainThread -> DevoSender(internal_senders,devo_sender_0) -> Starting thread
2024-02-16T11:55:03.476 INFO OutputProcess::OutputLookupConsumer(lookup_senders_consumer_0) -> [EMERGENCY PERSISTENCE SYSTEM] OutputLookupConsumer(lookup_senders_consumer_0) -> Nothing retrieved from the persistence.
2024-02-16T11:55:03.476 INFO OutputProcess::MainThread -> DevoSenderManagerMonitor(internal_senders,devo_us_1) -> Starting thread (every 300 seconds)
2024-02-16T11:55:03.476 INFO InputProcess::MainThread -> Running overriding rules
2024-02-16T11:55:03.476 INFO OutputProcess::DevoSenderManager(lookup_senders,manager,devo_us_1) -> [EMERGENCY PERSISTENCE SYSTEM] DevoSenderManager(lookup_senders,manager,devo_us_1) -> Nothing retrieved from the persistence.
2024-02-16T11:55:03.476 INFO OutputProcess::MainThread -> DevoSenderManager(internal_senders,manager,devo_us_1) -> Starting thread
2024-02-16T11:55:03.476 INFO InputProcess::MainThread -> Validating the rate limiter config given by the user
2024-02-16T11:55:03.476 INFO InputProcess::MainThread -> <requests_limits> setting has not been defined. The generic settings will be used instead.
2024-02-16T11:55:03.476 INFO InputProcess::MainThread -> Adding raw config to the collector store
2024-02-16T11:55:03.476 INFO InputProcess::MainThread -> Running custom validation rules
2024-02-16T11:55:03.476 INFO InputProcess::MainThread -> Creating API client.
2024-02-16T11:55:03.477 INFO OutputProcess::OutputInternalConsumer(internal_senders_consumer_0) -> [EMERGENCY PERSISTENCE SYSTEM] OutputInternalConsumer(internal_senders_consumer_0) -> Nothing retrieved from the persistence.
2024-02-16T11:55:03.477 INFO InputProcess::MainThread -> Created request client: <agent.modules.extrahop.commons.extrahop_client.ExtraHopClient object at 0x7f39e8cfda00>
2024-02-16T11:55:03.477 INFO InputProcess::MainThread -> ExtraHopPuller(extrahop_revealx,1212345,alerts,predefined) Finalizing the execution of init_variables()Events delivery and Devo ingestion
Events delivery and Devo ingestion
The event delivery module is in charge of receiving the events from the internal queues where all events are injected by the pullers and delivering them using the selected compatible delivery method.
A successful run has the following output messages for the initializer module:
2024-02-16T12:30:03.484 INFO OutputProcess::DevoSenderManagerMonitor(lookup_senders,devo_us_1) -> Number of available senders: 1, sender manager internal queue size: 0
2024-02-16T12:30:03.485 INFO OutputProcess::DevoSenderManagerMonitor(lookup_senders,devo_us_1) -> enqueued_elapsed_times_in_seconds_stats: {}
2024-02-16T12:30:03.485 INFO OutputProcess::DevoSenderManagerMonitor(lookup_senders,devo_us_1) -> Sender: DevoSender(lookup_senders,devo_sender_0), status: {"internal_queue_size": 0, "is_connection_open": False}
2024-02-16T12:30:03.485 INFO OutputProcess::DevoSenderManagerMonitor(lookup_senders,devo_us_1) -> Lookup - Total number of messages sent: 0, messages sent since "2024-02-16 06:55:03.484110+00:00": 0 (elapsed 0.000 seconds)
2024-02-16T12:30:03.535 INFO InputProcess::InputStatsThread -> Input metrics sent: 3
2024-02-16T12:30:03.536 INFO OutputProcess::OutputInternalConsumer(internal_senders_consumer_0) -> Consumed messages: 9, total_bytes: 6919 (60.001823 seconds)
By default, these information traces will be displayed every 10 minutes.
Sender services
The Integrations Factory Collector SDK has 3 different senders services depending on the event type to delivery (internal
, standard
, and lookup
). This collector uses the following Sender Services:
| |
---|
internal_senders
| In charge of delivering internal metrics to Devo such as logging traces or metrics. |
standard_senders
| In charge of delivering pulled events to Devo. |
Sender statistics
Each service displays its own performance statistics that allow checking how many events have been delivered to Devo by type:
| |
---|
Number of available senders: 1
| Displays the number of concurrent senders available for the given Sender Service. |
sender manager internal queue size: 0
| Displays the items available in the internal sender queue. This value helps detect bottlenecks and needs to increase the performance of data delivery to Devo. This last can be made by increasing the concurrent senders. |
Total number of messages sent: 0, messages sent since "2024-02-16 06:55:03.484110+00:00": 0 (elapsed 0.000 seconds)
| Displays the number of events from the last time and following the given example, the following conclusions can be obtained: 44 events were sent to Devo since the collector started. The last checkpoint timestamp was 2024-02-16 06:55:03.484110+00:00 . 0 events where sent to Devo between the last UTC checkpoint and now. Those 0 events required 0.000 seconds to be delivered.
By default these traces will be shown every 10 minutes. |