Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
minLevel2
maxLevel2
typeflat

Devo collector features

Feature

Details

Allow parallel downloading (multipod)

not allowed

Running environments

collector server

Populated Devo events

table

Flattening preprocessing

no

Data sources

Data source

Description

API endpoint

Collector service name

Devo table

Available from release

Alerts

Returns all the alerts sorted by updated time for a specified time interval.

/helix/id/{instance_id}/api/{api_version}/alerts

alerts

siem.trellix.helix.alerts

v1.0.0

For more information on how the events are parsed, visit our page.

Flattening preprocessing

Data source

Collector service

Optional

Flattening details

Alerts

alerts

yes

not required

Minimum configuration required for basic pulling

Although this collector supports advanced configuration, the fields required to retrieve data with basic configuration are defined below.

Info

This minimum configuration refers exclusively to those specific parameters of this integration. There are more required parameters related to the generic behavior of the collector. Check setting sections for details.

Setting

Details

base_url

The fireeye API base url to get list of alerts for Helix.

instance_id

The id of the Helix instance.

api_version

The version of the API that you want to use. (for example v1).

api_key

The fireeye API api key used for authorization.

Info

See the Accepted authentication methods section to verify what settings are required based on the desired authentication method.

Accepted authentication methods

Authentication method

API Key

Instance ID

Base Url

apiKey

Status
colourGreen
titleREQUIRED

Status
colourGreen
titleREQUIRED

Status
colourGreen
titleREQUIRED

Run the collector

Once the data source is configured, you can either send us the required information if you want us to host and manage the collector for you (Cloud collector), or deploy and host the collector in your own machine using a Docker image (On-premise collector).

Rw ui tabs macro
Rw tab
titleOn-premise collector

This data collector can be run in any machine that has the Docker service available because it should be executed as a docker container. The following sections explain how to prepare all the required setup for having the data collector running.

Structure

The following directory structure should be created for being used when running the collector:

Code Block
<any_directory>
└── devo-collectors/
    └── <product_name>/
        ├── certs/
        │   ├── chain.crt
        │   ├── <your_domain>.key
        │   └── <your_domain>.crt
        ├── state/
        └── config/ 
            └── config.yaml 
Note

Replace <product_name> with the proper value.

Devo credentials

In Devo, go to Administration → Credentials → X.509 Certificates, download the Certificate, Private key and Chain CA and save them in <product_name>/certs/. Learn more about security credentials in Devo here.

Note

Replace <product_name> with the proper value.

Editing the config.yaml file

Code Block
globals:
  debug: false
  id: not_used
  name: trellix_helix_collector
  persistence:
    type: filesystem
    config:
      directory_name: state

outputs:
  devo_1:
    type: devo_platform
    config:
      address: <your-ingestion-endpoint>
      port: 443
      type: SSL
      chain: chain.crt
      cert: <your_domain>.crt
      key: <your_domain>.key
inputs:
  trellix_helix:
    id: <short_unique_id>
    enabled: true
    credentials:
      instance_id: <instance_id_value>
      api_key: <api_key_value>
    services:
      alerts:
        initial_start_time_in_utc: <initial_start_time_in_utc_value>
        override_tag: <override_tag_value>
        api_version: <api_version_value>
        requests_limits:
          - period: 1d
            number_of_requests: 5000
Info

All defined service entities will be executed by the collector. If you do not want to run any of them, just remove the entity from the services object.

Replace the placeholders with your required values following the description table below:

Parameter

Data type

Type

Value range / Format

Details

<short_unique_id>

int

Mandatory

Minimum Lenght 1

Maximum Length 5

Use this param to give a unique id to this input service.

Note

This parameter is used to build the persistence address, do not use the same value for multiple collectors. It could cause a collision.

<input_status>

bool

Mandatory

false / true

Use this param to enable or disable the given input logic when running the collector. If the value is true, the input will be run. If the value is false, it will be ignored.

<instance_id_value>

str

Mandatory

Minimum Length 1

Provide the Helix instance value to be used in the API call.

<api_key_value>

str

Mandatory

Minimum Length 1

The apiKey used for authorization during the API call.

<initial_start_time_in_utc_value>

str

Optional

Minimum Length 1

This configuration allows you to set a custom date as the beginning of the period to download. This allows downloading historical data (one month back for example) before downloading new events.

<override_tag_value>

str

Optional

A devo tag

This parameter allows to define a custom devo tag.

<api_version_value>

str

Mandatory

Minimum Length 1

The api version to be used.

Download the Docker image

The collector should be deployed as a Docker container. Download the Docker image of the collector as a .tgz file by clicking the link in the following table:

Collector Docker image

SHA-256 hash

collector-trellix_helix_if-docker-image-1.0.0

1aee12694ba340f6d519756ad571e1d352cb31fe8718bd682dac454eed40bae0

Use the following command to add the Docker image to the system:

Code Block
gunzip -c <image_file>-<version>.tgz | docker load
Note

Once the Docker image is imported, it will show the real name of the Docker image (including version info). Replace <image_file> and <version> with a proper value.

The Docker image can be deployed on the following services:

Docker

Execute the following command on the root directory <any_directory>/devo-collectors/<product_name>/

Code Block
docker run 
--name collector-<product_name> 
--volume $PWD/certs:/devo-collector/certs 
--volume $PWD/config:/devo-collector/config 
--volume $PWD/state:/devo-collector/state 
--env CONFIG_FILE=config.yaml 
--rm 
--interactive 
--tty 
<image_name>:<version>
Note

Replace <product_name>, <image_name> and <version> with the proper values.

Docker Compose

The following Docker Compose file can be used to execute the Docker container. It must be created in the <any_directory>/devo-collectors/<product_name>/ directory.

Code Block
version: '3'
services:
  collector-<product_name>:
    image: <image_name>:${IMAGE_VERSION:-latest}
    container_name: collector-<product_name>
    volumes:
      - ./certs:/devo-collector/certs
      - ./config:/devo-collector/config
      - ./credentials:/devo-collector/credentials
      - ./state:/devo-collector/state
    environment:
      - CONFIG_FILE=${CONFIG_FILE:-config.yaml}

To run the container using docker-compose, execute the following command from the <any_directory>/devo-collectors/<product_name>/ directory:

Code Block
IMAGE_VERSION=<version> docker-compose up -d
Note

Replace <product_name>, <image_name> and <version> with the proper values.

Rw tab
titleCloud collector

We use a piece of software called Collector Server to host and manage all our available collectors. If you want us to host this collector for you, get in touch with us and we will guide you through the configuration.

Collector services detail

This section is intended to explain how to proceed with specific actions for services.

Alerts

Expand
titleVerify data collection

Once the collector has been launched, it is important to check if the ingestion is performed in a proper way. To do so, go to the collector’s logs console.

This service has the following components:

Component

Description

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:

Code Block
2023-11-10T08:50:40.048    INFO OutputProcess::MainThread -> DevoSenderManager(internal_senders,manager,devo_2) -> Starting thread
2023-11-10T08:50:40.048    INFO OutputProcess::DevoSenderManager(internal_senders,manager,devo_2) -> [EMERGENCY PERSISTENCE SYSTEM] DevoSenderManager(internal_senders,manager,devo_2) -> Nothing retrieved from the persistence.
2023-11-10T08:50:40.049    INFO OutputProcess::OutputInternalConsumer(internal_senders_consumer_0) -> [EMERGENCY PERSISTENCE SYSTEM] OutputInternalConsumer(internal_senders_consumer_0) -> Nothing retrieved from the persistence.
2023-11-10T08:50:40.049    INFO InputProcess::MainThread -> Running overriding rules
2023-11-10T08:50:40.049    INFO InputProcess::MainThread -> Overriding rule #1 - service key <override_tag> with value <my.app.trellix_helix.alerts> overrides definition key <tag> with value <None> when the first is not <None>
2023-11-10T08:50:40.049    INFO InputProcess::MainThread -> Validating the rate limiter config given by the user
2023-11-10T08:50:40.050    INFO InputProcess::MainThread -> Adding raw config to the collector store
2023-11-10T08:50:40.050    INFO InputProcess::MainThread -> Running custom validation rules
2023-11-10T08:50:40.051    INFO InputProcess::MainThread -> Creating API client.
2023-11-10T08:50:40.052    INFO InputProcess::MainThread -> Created request client: <agent.modules.trellix_helix.commons.helix_client.HelixClient object at 0x7ff1ff3db7c0>
2023-11-10T08:50:40.052    INFO InputProcess::MainThread -> TrellixHelixPuller(trellix_helix,12345,alerts,predefined) Finalizing the execution of init_variables()
2023-11-10T08:50:40.052    INFO InputProcess::MainThread -> InputThread(trellix_helix,12345) - Starting thread (execution_period=60s)
2023-11-10T08:50:40.052    INFO InputProcess::MainThread -> ServiceThread(trellix_helix,12345,alerts,predefined) - Starting thread (execution_period=60s)
2023-11-10T08:50:40.053    INFO InputProcess::MainThread -> TrellixHelixPullerSetup(trellix_helix_collector,trellix_helix#12345,alerts#predefined) -> Starting thread
2023-11-10T08:50:40.053    INFO InputProcess::MainThread -> TrellixHelixPuller(trellix_helix,12345,alerts,predefined) - Starting thread
2023-11-10T08:50:40.053 WARNING InputProcess::TrellixHelixPuller(trellix_helix,12345,alerts,predefined) -> Waiting until setup will be executed
2023-11-10T08:50:40.063    INFO OutputProcess::MainThread -> [GC] global: 39.2% -> 39.2%, process: RSS(42.48MiB -> 43.61MiB), VMS(928.07MiB -> 928.07MiB)
2023-11-10T08:50:40.065    INFO InputProcess::MainThread -> [GC] global: 39.2% -> 39.2%, process: RSS(42.14MiB -> 42.14MiB), VMS(424.04MiB -> 424.04MiB)
2023-11-10T08:50:40.610    INFO OutputProcess::DevoSender(internal_senders,devo_sender_0) -> Created a sender: {"name": "DevoSender(internal_senders,devo_sender_0)", "url": "collector-eu.devo.io:443", "chain_path": "/home/nikhilgoyal/devo-collector-trellix-helix/certs/chain.crt", "cert_path": "/home/nikhilgoyal/devo-collector-trellix-helix/certs/int-if-integrations-india.crt", "key_path": "/home/nikhilgoyal/devo-collector-trellix-helix/certs/int-if-integrations-india.key", "transport_layer_type": "SSL", "last_usage_timestamp": null, "socket_status": null}, hostname: "2023-APAC-0050", session_id: "140677399433120"
2023-11-10T08:50:42.127    INFO InputProcess::TrellixHelixPullerSetup(trellix_helix_collector,trellix_helix#12345,alerts#predefined) -> Setup for module <TrellixHelixPuller> has been successfully executed

Puller output

A successful initial run has the following output messages for the puller module:

Info

Note that the PrePull action is executed only one time before the first run of the Pull action.

Code Block
2023-11-10T08:50:43.064    INFO InputProcess::TrellixHelixPuller(trellix_helix,12345,alerts,predefined) -> Pull Started
2023-11-10T08:50:43.064    INFO InputProcess::TrellixHelixPuller(trellix_helix,12345,alerts,predefined) -> Retrieving alerts event(s) having createDate between 2023-08-28T16:40:54.000000Z and 2023-08-28T17:40:54.000000Z
2023-11-10T08:50:59.497    INFO InputProcess::TrellixHelixPuller(trellix_helix,12345,alerts,predefined) -> Retrieved 1000 alerts event(s)
2023-11-10T08:50:59.525    INFO InputProcess::TrellixHelixPuller(trellix_helix,12345,alerts,predefined) -> Updating the persistence
2023-11-10T08:50:59.527    INFO InputProcess::TrellixHelixPuller(trellix_helix,12345,alerts,predefined) -> (Partial) Statistics for this pull cycle (@devo_pulling_id=1699586443056):Number of requests made: 1; Number of events received: 1000; Number of duplicated events filtered out: 0; Number of events generated and sent: 1000; Average of events per second: 60.741.
2023-11-10T08:50:59.528    INFO InputProcess::TrellixHelixPuller(trellix_helix,12345,alerts,predefined) -> Retrieving alerts event(s) having createDate between 2023-08-28T17:40:54.000000Z and 2023-08-28T18:40:54.000000Z
2023-11-10T08:50:59.942    INFO OutputProcess::DevoSender(standard_senders,devo_sender_0) -> Created a sender: {"name": "DevoSender(standard_senders,devo_sender_0)", "url": "collector-eu.devo.io:443", "chain_path": "/home/nikhilgoyal/devo-collector-trellix-helix/certs/chain.crt", "cert_path": "/home/nikhilgoyal/devo-collector-trellix-helix/certs/int-if-integrations-india.crt", "key_path": "/home/nikhilgoyal/devo-collector-trellix-helix/certs/int-if-integrations-india.key", "transport_layer_type": "SSL", "last_usage_timestamp": null, "socket_status": null}, hostname: "2023-APAC-0050", session_id: "140677354301904"
2023-11-10T08:51:16.442    INFO InputProcess::TrellixHelixPuller(trellix_helix,12345,alerts,predefined) -> Retrieved 1000 alerts event(s)
2023-11-10T08:51:16.466    INFO InputProcess::TrellixHelixPuller(trellix_helix,12345,alerts,predefined) -> Updating the persistence
2023-11-10T08:51:16.468    INFO InputProcess::TrellixHelixPuller(trellix_helix,12345,alerts,predefined) -> (Partial) Statistics for this pull cycle (@devo_pulling_id=1699586443056):Number of requests made: 2; Number of events received: 2000; Number of duplicated events filtered out: 1; Number of events generated and sent: 1999; Average of events per second: 59.843.
2023-11-10T08:51:16.468    INFO InputProcess::TrellixHelixPuller(trellix_helix,12345,alerts,predefined) -> Retrieving alerts event(s) having createDate between 2023-08-28T18:40:54.000000Z and 2023-08-28T19:40:54.000000Z
2023-11-10T08:51:32.620    INFO InputProcess::TrellixHelixPuller(trellix_helix,12345,alerts,predefined) -> Retrieved 1000 alerts event(s)
2023-11-10T08:51:32.645    INFO InputProcess::TrellixHelixPuller(trellix_helix,12345,alerts,predefined) -> Updating the persistence
2023-11-10T08:51:32.646    INFO InputProcess::TrellixHelixPuller(trellix_helix,12345,alerts,predefined) -> (Partial) Statistics for this pull cycle (@devo_pulling_id=1699586443056):Number of requests made: 3; Number of events received: 3000; Number of duplicated events filtered out: 2; Number of events generated and sent: 2998; Average of events per second: 60.465.
2023-11-10T08:51:32.647    INFO InputProcess::TrellixHelixPuller(trellix_helix,12345,alerts,predefined) -> Retrieving alerts event(s) having createDate between 2023-08-28T19:40:54.000000Z and 2023-08-28T20:40:54.000000Z

After a successful collector’s execution (that is, no error logs found), you will see the following log message:

Code Block
2023-11-10T08:59:53.632    INFO InputProcess::TrellixHelixPuller(trellix_helix,12345,alerts,predefined) -> (Partial) Statistics for this pull cycle (@devo_pulling_id=1699586443056):Number of requests made: 33; Number of events received: 33000; Number of duplicated events filtered out: 32; Number of events generated and sent: 32968; Average of events per second: 59.880.
Info

The value @devo_pulling_id is injected in each event to group all events ingested by the same pull action. You can use it to get the exact events downloaded in that Pull action in Devo’s search window.

Expand
titleRestart 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:

  1. Edit the configuration file.

  2. Change the value of the initial_start_time_in_utc_value parameter to a different one.

  3. Save the changes.

  4. 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

Note that this action clears the persistence and cannot be recovered in any way. Resetting persistence could result in duplicate or lost events.

Expand
titleTroubleshooting

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

SetupError

100

Error occurred while validating api key from the Helix server. Error message: {error}

The apiKey is not valid.

Make sure the apiKey is valid to authorise the API call.

InitVariablesError

1

datetime_format`` is not set in service thread globals

datetime format is not set.

Make sure the datetime format is set in the module globals.

2

initial_start_time_in_utc`` is not set as per the ``datetime_format

The start time specified in config is not in accordance with the datetime format.

Make sure you have specified the start time in the proper datetime format.

3

Date {initial_start_time} is in the future

The start time mentioned is ahead of the present time.

Make sure the start time is in the past.

PullError

300

HTTP Error occurred while retrieving events from Helix server,summary: {HTTPError},details: {HTTPError.response}

This error happens when the collector tries to fetch the Helix alerts from its REST API.

In this error you will find the HTTP error code as well as the response’s text. This information should be enough to understand why is the error happening. Otherwise, please contact support.

 

301

Some error occurred while retrieving events from Helix server. Error details: {Exception}

Some exception occured while making the API request.

Reach out to the developer with the exact error message.

Collector operations

This section is intended to explain how to proceed with specific operations of this collector.

Expand
titleVerify collector operations

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:

Code Block
2023-11-10T09:52:53.776    INFO InputProcess::MainThread -> Process Started
2023-11-10T09:52:53.793    INFO InputProcess::MainThread -> TrellixHelixPuller(trellix_helix,12345,alerts,predefined) Starting the execution of init_variables()
2023-11-10T09:52:53.793    INFO InputProcess::MainThread -> Validating service metadata
2023-11-10T09:52:53.795    INFO InputProcess::MainThread -> Validating defined module definition
2023-11-10T09:52:53.796    INFO OutputProcess::MainThread -> DevoSender(standard_senders,devo_sender_0) -> Starting thread
2023-11-10T09:52:53.796    INFO OutputProcess::MainThread -> DevoSenderManagerMonitor(standard_senders,devo_2) -> Starting thread (every 300 seconds)
2023-11-10T09:52:53.796    INFO OutputProcess::MainThread -> DevoSenderManager(standard_senders,manager,devo_2) -> Starting thread
2023-11-10T09:52:53.797    INFO OutputProcess::DevoSenderManager(standard_senders,manager,devo_2) -> [EMERGENCY PERSISTENCE SYSTEM] DevoSenderManager(standard_senders,manager,devo_2) -> Nothing retrieved from the persistence.
2023-11-10T09:52:53.797    INFO OutputProcess::MainThread -> DevoSender(lookup_senders,devo_sender_0) -> Starting thread
2023-11-10T09:52:53.797    INFO OutputProcess::MainThread -> DevoSenderManagerMonitor(lookup_senders,devo_2) -> Starting thread (every 300 seconds)
2023-11-10T09:52:53.797    INFO OutputProcess::OutputStandardConsumer(standard_senders_consumer_0) -> [EMERGENCY PERSISTENCE SYSTEM] OutputStandardConsumer(standard_senders_consumer_0) -> Nothing retrieved from the persistence.
2023-11-10T09:52:53.797    INFO OutputProcess::MainThread -> DevoSenderManager(lookup_senders,manager,devo_2) -> Starting thread
2023-11-10T09:52:53.797    INFO OutputProcess::MainThread -> DevoSender(internal_senders,devo_sender_0) -> Starting thread
2023-11-10T09:52:53.797    INFO OutputProcess::DevoSenderManager(lookup_senders,manager,devo_2) -> [EMERGENCY PERSISTENCE SYSTEM] DevoSenderManager(lookup_senders,manager,devo_2) -> Nothing retrieved from the persistence.
2023-11-10T09:52:53.797    INFO OutputProcess::OutputLookupConsumer(lookup_senders_consumer_0) -> [EMERGENCY PERSISTENCE SYSTEM] OutputLookupConsumer(lookup_senders_consumer_0) -> Nothing retrieved from the persistence.
2023-11-10T09:52:53.797    INFO OutputProcess::MainThread -> DevoSenderManagerMonitor(internal_senders,devo_2) -> Starting thread (every 300 seconds)
2023-11-10T09:52:53.797    INFO OutputProcess::MainThread -> DevoSenderManager(internal_senders,manager,devo_2) -> Starting thread
2023-11-10T09:52:53.798    INFO OutputProcess::DevoSenderManager(internal_senders,manager,devo_2) -> [EMERGENCY PERSISTENCE SYSTEM] DevoSenderManager(internal_senders,manager,devo_2) -> Nothing retrieved from the persistence.
2023-11-10T09:52:53.798    INFO OutputProcess::OutputInternalConsumer(internal_senders_consumer_0) -> [EMERGENCY PERSISTENCE SYSTEM] OutputInternalConsumer(internal_senders_consumer_0) -> Nothing retrieved from the persistence.
2023-11-10T09:52:53.798    INFO InputProcess::MainThread -> Validating common input config
2023-11-10T09:52:53.799    INFO InputProcess::MainThread -> Validating service input config
2023-11-10T09:52:53.800    INFO InputProcess::MainThread -> Running overriding rules
2023-11-10T09:52:53.800    INFO InputProcess::MainThread -> Validating the rate limiter config given by the user
2023-11-10T09:52:53.802    INFO InputProcess::MainThread -> Adding raw config to the collector store
2023-11-10T09:52:53.802    INFO InputProcess::MainThread -> Running custom validation rules
2023-11-10T09:52:53.803    INFO InputProcess::MainThread -> Creating API client.
2023-11-10T09:52:53.804    INFO InputProcess::MainThread -> Created request client: <agent.modules.trellix_helix.commons.helix_client.HelixClient object at 0x7feeb96266a0>
2023-11-10T09:52:53.804    INFO InputProcess::MainThread -> TrellixHelixPuller(trellix_helix,12345,alerts,predefined) Finalizing the execution of init_variables()
2023-11-10T09:52:53.805    INFO InputProcess::MainThread -> InputThread(trellix_helix,12345) - Starting thread (execution_period=60s)
2023-11-10T09:52:53.805    INFO InputProcess::MainThread -> ServiceThread(trellix_helix,12345,alerts,predefined) - Starting thread (execution_period=60s)
2023-11-10T09:52:53.805    INFO InputProcess::MainThread -> TrellixHelixPullerSetup(trellix_helix_collector,trellix_helix#12345,alerts#predefined) -> Starting thread

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:

Code Block
2023-11-10T09:57:53.797    INFO OutputProcess::DevoSenderManagerMonitor(standard_senders,devo_2) -> Number of available senders: 1, sender manager internal queue size: 0
2023-11-10T09:57:53.797    INFO OutputProcess::DevoSenderManagerMonitor(standard_senders,devo_2) -> enqueued_elapsed_times_in_seconds_stats: {}
2023-11-10T09:57:53.798    INFO OutputProcess::DevoSenderManagerMonitor(standard_senders,devo_2) -> Sender: DevoSender(standard_senders,devo_sender_0), status: {"internal_queue_size": 0, "is_connection_open": True}
2023-11-10T09:57:53.798    INFO OutputProcess::DevoSenderManagerMonitor(standard_senders,devo_2) -> Standard - Total number of messages: 16984 messages/bytes sent since "2023-11-10T04:22:53.792175+00:00": 16984/56142456, (elapsed 26.950 seconds)
2023-11-10T09:57:53.798    INFO OutputProcess::DevoSenderManagerMonitor(lookup_senders,devo_2) -> Number of available senders: 1, sender manager internal queue size: 0
2023-11-10T09:57:53.799    INFO OutputProcess::DevoSenderManagerMonitor(lookup_senders,devo_2) -> enqueued_elapsed_times_in_seconds_stats: {}
2023-11-10T09:57:53.799    INFO OutputProcess::DevoSenderManagerMonitor(lookup_senders,devo_2) -> Sender: DevoSender(lookup_senders,devo_sender_0), status: {"internal_queue_size": 0, "is_connection_open": False}
2023-11-10T09:57:53.799    INFO OutputProcess::DevoSenderManagerMonitor(lookup_senders,devo_2) -> Lookup - Total number of messages sent: 0, messages sent since "2023-11-10 04:22:53.794176+00:00": 0 (elapsed 0.000 seconds)
2023-11-10T09:57:53.800    INFO OutputProcess::DevoSenderManagerMonitor(internal_senders,devo_2) -> Number of available senders: 1, sender manager internal queue size: 0
2023-11-10T09:57:53.802    INFO OutputProcess::DevoSenderManagerMonitor(internal_senders,devo_2) -> enqueued_elapsed_times_in_seconds_stats: {}
2023-11-10T09:57:53.802    INFO OutputProcess::DevoSenderManagerMonitor(internal_senders,devo_2) -> Sender: DevoSender(internal_senders,devo_sender_0), status: {"internal_queue_size": 0, "is_connection_open": True}
2023-11-10T09:57:53.802    INFO OutputProcess::DevoSenderManagerMonitor(internal_senders,devo_2) -> Internal - Total number of messages: 106 messages/bytes sent since "2023-11-10T04:22:53.795899+00:00": 106/45514, (elapsed 0.566 seconds)
Info

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:

Sender services

Description

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:

Logging trace

Description

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.

Info

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: 44, messages sent since "2022-06-28 10:39:22.511671+00:00": 21 (elapsed 0.007 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 2022-06-28 10:39:22.511671+00:00.

  • 21 events where sent to Devo between the last UTC checkpoint and now.

  • Those 21 events required 0.007 seconds to be delivered.

Info

By default these traces will be shown every 10 minutes.

Expand
titleCheck memory usage

To check the memory usage of this collector, look for the following log records in the collector which are displayed every 5 minutes by default, always after running the memory-free process.

  • The used memory is displayed by running processes and the sum of both values will give the total used memory for the collector.

  • The global pressure of the available memory is displayed in the global value.

  • All metrics (Global, RSS, VMS) include the value before freeing and after previous -> after freeing memory

Code Block
2023-11-10T09:57:53.856    INFO InputProcess::MainThread -> [GC] global: 39.1% -> 39.1%, process: RSS(68.84MiB -> 68.84MiB), VMS(503.30MiB -> 503.30MiB)
2023-11-10T09:58:53.862    INFO OutputProcess::MainThread -> [GC] global: 39.1% -> 39.1%, process: RSS(49.12MiB -> 49.12MiB), VMS(928.57MiB -> 928.57MiB)
Info

Differences between RSS and VMS memory usage:

  • RSS is the Resident Set Size, which is the actual physical memory the process is using

  • VMS is the Virtual Memory Size which is the virtual memory that process is using

Change log

Release

Released on

Release type

Details

Recommendations

v1.0.0

Status
colourPurple
titleinitial release


Released the first version of the Trellix Helix collector.

Recommended version