Internal process and deduplication method
Data is collected by setting a start date and by pagination. To eliminate duplicates, the date of the last event sent to Devo and the ids of events with the same date are stored.
Devo categorization and destination
All events of this service are ingested into the table waf.radware.api.security_event
. This service has the following components:
| |
---|
Setup | The setup module is in charge of authenticating the service and managing the token expiration when needed. |
Puller | The setup module is in charge of pulling the data in a organized way and delivering the events via SDK. |
Setup output
A successful run has the following output messages for the setup module:
INFO InputProcess::MainThread -> RadwarePullerSetup(radware_cwaf_collector,radware_input#12345,user_activity#predefined) -> Starting thread
INFO InputProcess::MainThread -> RadwarePuller(radware_input,12345,user_activity,predefined) - Starting thread
WARNING InputProcess::RadwarePullerSetup(radware_cwaf_collector,radware_input#12345,user_activity#predefined) -> The token/header/authentication has not been created yet
INFO InputProcess::RadwarePullerSetup(radware_cwaf_collector,radware_input#12345,user_activity#predefined) -> Setup for module <RadwarePuller> has been successfully executed
Puller output
A successful initial run has the following output messages for the puller module:
Note that the PrePull
action is executed only one time before the first run of the Pull
action.
INFO InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> RadwarePuller(radware_input,12345,security_events,predefined) Starting the execution of pre_pull()
INFO InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> Reading persisted data
INFO InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> Data retrieved from the persistence: None
WARNING InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> start_time_in_utc has not been found in the configuration, the start date will be: 2023-09-26 08:17:08.788699+00:00
WARNING InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> Persistence will be overridden due to the retrieved state is empty
INFO InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> Running the persistence upgrade steps
INFO InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> Running the persistence corrections steps
INFO InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> Running the persistence corrections steps
WARNING InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> Some changes have been detected and the persistence needs to be updated. Previous content: None. New content: {'@persistence_version': 1, 'start_time_epoch': 1695716228788, 'last_event_time_epoch': 1695716228788, 'last_ids': []}
INFO InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> Updating the persistence
WARNING InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> Persistence has been updated successfully
INFO InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> RadwarePuller(radware_input,12345,security_events,predefined) Finalizing the execution of pre_pull()
INFO InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> Starting data collection every 60 seconds
INFO InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> Pull Started
INFO InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> Ingesting events from 2023-09-26 08:17:08.788000+00:00 to 2023-09-26 08:18:08.788699+00:00
INFO InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> Page 0 of 1: Delivered 4 events
INFO InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> (Partial) Statistics for this pull cycle (@devo_pulling_id=1695716288788):Number of requests made: 1; Number of events received: 4; Number of duplicated events filtered out: 0; Number of events generated and sent: 4; Average of events per second: 2.440.
INFO InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> Statistics for this pull cycle (@devo_pulling_id=1695716288788):Number of requests made: 1; Number of events received: 4; Number of duplicated events filtered out: 0; Number of events generated and sent: 4; Average of events per second: 2.439.
INFO InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> The data is up to date!
After a successful collector’s execution (that is, no error logs found), you will see the following log message:
INFO InputProcess::RadwarePuller(radware_input,12345,security_events,predefined) -> Statistics for this pull cycle (@devo_pulling_id=1695716288788):Number of requests made: 1; Number of events received: 4; Number of duplicated events filtered out: 0; Number of events generated and sent: 4; Average of events per second: 2.439.
Restart the persistence
This collector uses persistent storage to download events in an orderly fashion and avoid duplicates. In case you want to re-ingest historical data or recreate the persistence, you can restart the persistence of this collector by following these steps:
Edit the configuration file.
Change the value of the initial_start_time_in_utc_value
parameter to a different one.
Save the changes.
Restart the collector.
The collector will detect this change and will restart the persistence using the parameters of the configuration file or the default configuration in case it has not been provided.
Note that this action clears the persistence and cannot be recovered in any way. Resetting persistence could result in duplicate or lost events.
Troubleshooting
This collector has different security layers that detect both an invalid configuration and abnormal operation. This table will help you detect and resolve the most common errors.
Error type | Error ID | Error message | Cause | Solution |
InitVariablesError
| 1 | initial_start_time_in_utc is not set as per the datetime_format : {datetime_format}
| The date in config is not as per required format | Ensure the date format is correct. |
ApiError
| 400 | HTTP ERROR 400: Bad request: The server could not understand the request. | The API request is malformed. | Contact the Devo team |
ApiError
| 401 | HTTP ERROR 401: Unauthorized: Authentication is required and has failed or has not been provided. | The user is not authorized to access the requested service. | Check the permissions and that the credentials are not expired. |
ApiError
| 402 | HTTP ERROR 500: Server Error: An error occurred on the server. | Unknown server error. | Check that the internet connection works correctly and contact the company that manages the server on which the events are hosted. |
ApiError
| 403 | Request Error: Received status code {status_code} | Unknown API error | Contact the Devo team. |
ApiError
| 404 | HTTP ERROR 429: Too Many Requests: The user has sent too many requests in a given amount of time. | Too many requests have been sent to the resource. | Check:- That there is only one POD running.- That there are no more computers using the same credentials, Wait several minutes before restarting the collector. If nothing works, contact the Devo team. |