SOL technical reference: Datasources
SOL provides seamless access to all critical security data within Sekoia SOC platform:
| Data Source | Description | Use Cases |
|---|---|---|
events |
Security events | Threat hunting, incident investigation, SOC reporting. You will receive events that are retained for the duration of your hot storage |
| event_telemetry | Telemetry on events | Analytics on your ingestion pipelines |
| eternal_events | Security events related to alerts or cases | Extract metrics from events related to alerts/cases. Access events related to an alert that are beyond your hot storage retention period |
| alerts | Security alerts and detections | SOC monitoring, alert pattern analysis |
| cases | Security incidents and cases | Case management, incident correlation |
| custom_statuses | Alerts and cases custom statuses | Reporting |
| custom_priorities | Cases custom priorities | Reporting |
| communities | Communities (for multi-tenant only) | Multi-tenant reporting |
| intakes | Data sources | Data source management, volume monitoring |
| intake_formats | Intake formats (parsers) | Volume monitoring |
| entities | Company entities | Entity tracking, detailed reporting |
| assets | Known Assets | Asset Investigations |
| asset_properties | Listing known properties related to the Asset | Asset Investigations |
| asset_partitions | Partitions on a per Asset basis and Hygiene related to these | Understand and improve Hygiene state Note: Part of the Reveal plan |
| asset_accounts | Listing local users accounts related to the Asset | Impact analysis and incident correlation Note: Part of the Reveal plan |
| asset_applications | Software and applications installed on assets | Application discovery, software inventory, unsigned binary detection. Note: Part of the Reveal plan |
| asset_vulnerabilities | CVE-based vulnerabilities associated with assets, enriched from NVD | Vulnerability management, risk prioritization, patch tracking. Note: Part of the Reveal plan |
| asset_poi | Points of interest detected on assets (UEBA, notable activity) | Threat hunting, behavioral analysis, MITRE ATT&CK mapping. Note: Part of the Reveal plan |
| rule_definitions | Detection rule definitions (Sigma, CTI, Anomaly...) | Rules coverage reporting, audit of detection catalog |
| rule_instances | Instances of detection rules per community | Monitor enabled/disabled rules, compliance reporting |
event_telemetry
The event_telemetry data source provides aggregated metrics about the events processed by your intakes. It allows you to monitor, report, and troubleshoot data ingestion across your Sekoia.io tenant.
Each record in event_telemetry represents a time-bucketed summary of event activity for a given intake, including the number of events, total data volume, event sizes, and processing lags. This makes it easy to:
- Analyze your data usage over time, per intake
- Identify anomalies such as sudden spikes in data volume or processing delays
- Detect potential misconfigurations that could lead to unexpected data costs or ingestion issues
Typical Use Cases:
- Usage reporting: Track how much data each intake is sending over specific timeframes.
- Performance monitoring: Observe event size distributions and processing lags to ensure optimal pipeline performance.
- Root cause analysis: Investigate policy violations or overages by drilling down into intake-level telemetry.
You can query event_telemetry in the SOL query builder and combine it with other sources (e.g., intakes) to enrich your reports with intake names and configurations.
| Property | Description |
|---|---|
| community_uuid | UUID of the community the events belongs to |
| intake_uuid | UUID of the intake source generating the events |
| intake_dialect_uuid | UUID representing the dialect used for the intake |
| bucket_start_date | UTC timestamp representing the beginning of the aggregation window |
| bucket_end_date | UTC timestamp representing the end of the aggregation windows |
| occurrences | Number of events in the aggregation |
| total_message_size | Total size (in bytes) of raw events in the bucket |
| max_message_size | Size (in bytes) of the largest raw event in the bucket |
| min_message_size | Size (in bytes) of the smallest raw event in the bucket |
| total_event_size | Total size (in bytes) of all events in the bucket |
| max_event_size | Size (in bytes) of the largest event in the bucket |
| min_event_size | Size (in bytes) of the smallest event in the bucket |
| max_lag | Maximum observed delay (in seconds) between the event's timestamp and its reception date. |
| min_lag | Minimum observed delay (in seconds) between the event's timestamp and its reception date. |
| total_lag | Total accumulated lag (in seconds) across all events in the bucket. |
| max_processing_lag | Maximum processing time (in seconds) taken by Sekoia.io to process an event. |
| min_processing_lag | Minimum processing time (in seconds) taken by Sekoia.io to process an event. |
| total_processing_lag | Total accumulated processing time (in seconds) for all events in the bucket. |
eternal_events
The eternal_events data source gives you access to the events attached to an alert or a case. These events are stored permanently, whatever your retention subscription, so they remain queryable long after the same events have expired from the events data source.
Query eternal_events when the alert or case you are investigating has passed your retention window. It is also the natural data source whenever you want to scope a query to alert or case evidence, even within your retention window, since it contains nothing else: use it to investigate a given alert or to build metrics over the events that raised your alerts.
eternal_events shares the same schema as events. The filters, aggregations and functions you use against events apply here without change.
For a full explanation of what is preserved and how to reach it from the interface, see Eternal events.
alerts
| Alert Property | Description |
|---|---|
| uuid | A unique identifier for the alert. |
| short_ID | A concise identifier for quick reference to the alert. |
| community_uuid | A unique identifier for the community the alert belongs to. |
| entity_uuid | A unique identifier representing the entity associated with the alert. |
| entity_name | The name of the entity linked to the alert. |
| rule_name | The name assigned to the rule that triggered the alert. |
| rule_pattern | The detection pattern of the alert. |
| detection_type | The method by which the alert was detected. |
| alert_type_category | The category of the alert. |
| alert_type_value | The type of the alert. |
| status | The current state of the alert (e.g., open, acknowledged, resolved). |
| urgency | The level of urgency assigned to the alert. |
| created_at | The date and time when the alert was initially created. |
| update_at | The date and time when the alert was last updated. |
| first_seen_at | The date and time of the first alert occurrence. |
| last_seen_at | The date and time of the last alert occurrence. |
| time_to_detect | Duration taken to identify the alert from its occurrence in seconds. |
| time_to_acknowledge | Time elapsed from detection to official acknowledgment of the alert in seconds. |
| time_to_respond | Duration taken to take action after acknowledgment in seconds. |
| time_to_resolve | The total time taken to completely resolve the alert in seconds. |
| time_to_ingest | The duration from alert generation to its final ingestion into the system in seconds. |
| occurrences | The number of alert occurrences |
| rule_instance_uuid | A unique identifier for the rule that generated the alert. |
| cases | List of cases associated to the alert. |
| assets | List of assets associated to the alert. |
| threats | List of threats associated the alert. |
| custom_fields | Structured metadata attached to the alert. Access a field with custom_fields.<field_name>. |
cases
| Property | Description |
|---|---|
| uuid | A unique identifier for the case. |
| short_id | A concise identifier for quick reference to the case. |
| community_uuid | A unique identifier for the community related to the case. |
| title | The title or subject line of the case. |
| description | A detailed description outlining the case's context or issues. |
| priority | The importance level assigned to the case, indicating its urgency. |
| created_at | The date and time when the case was created. |
| created_by | The user or system that created the case. |
| created_by_type | The type of entity that created the case (e.g., user, automated system). |
| updated_at | The date and time when the case was last updated. |
| updated_by | The user or system that last updated the case. |
| updated_by_type | The type of user that last updated the case. |
| first_seen_at | The date and time when the case was first detected. |
| last_seen_at | The date and time when the case was last observed or updated. |
| custom_fields | Structured metadata attached to the case. Access a field with custom_fields.<field_name>. |
custom_statuses
| Property | Description |
|---|---|
| uuid | A unique identifier for the custom status. |
| community_uuid | A unique identifier for the community related to the custom status. |
| level | The numeric level of the status. |
| created_at | The date and time when the custom status was created. |
| created_by | The user or system that created the custom status. |
| created_by_type | The type of entity that created the custom status (e.g., avatar, apikey). |
| updated_at | The date and time when the custom status was last updated. |
| updated_by | The user or system that last updated the custom status. |
| updated_by_type | The type of entity that last updated the custom status. |
| stage | The workflow stage of the status (e.g., New, In progress, Closed). |
| label | The display label for the status. |
| description | A text description of the status. |
| type | The type(s) this status applies to (e.g., case, alert). |
custom_priorities
| Property | Description |
|---|---|
| uuid | A unique identifier for the custom priority. |
| community_uuid | A unique identifier for the community related to the custom priority. |
| level | The numeric level of the priority. |
| created_at | The date and time when the custom priority was created. |
| created_by | The user or system that created the custom priority. |
| created_by_type | The type of entity that created the custom priority (e.g., avatar, apikey). |
| updated_at | The date and time when the custom priority was last updated. |
| updated_by | The user or system that last updated the custom priority. |
| updated_by_type | The type of entity that last updated the custom priority. |
| color | The color associated with the priority (CSS variable or color name). |
| label | The display label for the priority. |
| description | A text description of the priority. |
communities
| Property | Description |
|---|---|
| uuid | A unique identifier for the community. |
| name | The name of the community. |
| description | The description of the community. |
| homepage_url | The homepage url of the community. |
| picture_mode | The picture mode of the community. |
| created_at | The date and time when the community was created. |
| created_by | The user or system that created the community. |
| created_by_type | The type of entity that created the community (e.g., avatar, apikey). |
| updated_at | The date and time when the community was last updated. |
| company_size | The size of the company. |
| company_security_team_size | The size of the security team. |
| company_sector | The sector of the company. |
| company_location | The location of the company. |
| is_parent | Indicate if the community is a parent community. |
| parent_uuid | A unique identifier of the parent community. |
| subcommunities | Indicate if the community has subcommunities. |
| is_mfa_enforced | Indicate if MFA is enforced at the community level. |
| session_timeout | The duration before users are automatically logged after inactivity. |
| disable_inactive_avatars | Indicate if users are disabled after 90 days of inactivity. |
| disabled | Indicate if the community is disabled. |
intakes
| Property | Description |
|---|---|
| uuid | A unique identifier for the intake. |
| name | The name of the intake. |
| community_uuid | A unique identifier for the community related to the intake. |
| entity_uuid | A unique identifier for the entity related to the intake. |
| format_uuid | A unique identifier for the format related to the intake. |
| intake_key | The intake key of the intake. |
| created_at | The date and time when the intake was created. |
| created_by | The user or system that created the intake. |
| created_by_type | The type of entity that created the intake (e.g., avatar, apikey). |
| updated_at | The date and time when the intake was last updated. |
| updated_by | The user or system that last updated the intake. |
| updated_by_type | The type of user that last updated the intake. |
| is_custom_format | Indicate if the intake uses a custom format. |
| connector_configuration_uuid | A unique identifier for the connector configuration related to the intake. |
intake_formats
| Property | Description |
|---|---|
| uuid | A unique identifier for the intake format. |
| community_uuid | A unique identifier for the community related to the intake format. |
| name | The name of the intake format. |
| slug | A URL-friendly identifier for the intake format (e.g., azure-application-gateway). |
| description | A description of the intake format. |
| created_at | The date and time when the intake format was created. |
| created_by | The user or system that created the intake format. |
| created_by_type | The type of entity that created the intake format (e.g., avatar, apikey). |
| updated_at | The date and time when the intake format was last updated. |
| updated_by | The user or system that last updated the intake format. |
| updated_by_type | The type of entity that last updated the intake format. |
| automation_connector_uuid | A unique identifier for the automation connector related to the intake format. |
For example queries using intake_formats, see Join examples.
entities
| Property | Description |
|---|---|
| uuid | A unique identifier for the entity. |
| name | The name of the entity. |
| alerts_generation | The alert generation mode of the entity. |
| description | The description of the entity. |
| entity_id | The ID of the entity. |
| community_uuid | A unique identifier for the community related to the entity. |
| created_at | The date and time when the entity was created. |
| updated_at | The date and time when the entity was last updated. |
assets
| Property | Description |
|---|---|
| uuid | A unique identifier for the asset. |
| community_uuid | A unique identifier for the community related to the asset. |
| name | The name of the Asset |
| type | Type of asset (host, account or network.) |
| category | Category of the asset |
| criticality | Criticality of the asset |
| created_at | The date and time when the asset was created. |
| updated_at | The date and time when the asset was last updated. |
| revoked | Indicates whether the asset is revoked |
| reviewed | Indicates if the asset has been reviewed |
| atoms | List of related names/identifiers (e.g., hostname, IPs, etc.) |
| tags | List of tags associated with the asset |
For example queries using tags, see Assets query examples.
asset_properties
| Property | Description |
|---|---|
| asset_uuid | UUID of the asset to which the property is associated |
| value | The value of the property (e.g., darwin) |
| name | The name of the property (e.g., os) |
asset_partitions
| Property | Description |
|---|---|
| asset_uuid | UUID of the asset to which the partitions is associated |
| community_uuid | UUID of the community the asset belongs to |
| asset_name | The name of the asset that the partitions is associated with |
| last_seen | Last time the asset was seen |
| mountpoint | Partition mount point (e.g., C:) |
| encrypted | Whether the partition is encrypted (true/false) |
asset_accounts
| Property | Description |
|---|---|
| asset_uuid | UUID of the asset to which the accounts is associated |
| community_uuid | UUID of the community the asset belongs to |
| asset_name | The name of the asset that the partitions is associated with |
| last_seen | Last time the asset was seen |
| username | Name of the local user account |
| is_enabled | Whether the account is enabled |
| is_admin | Whether the account has administrative privileges |
| last_logon | Last time the account was used to log in |
| bad_password_count | Number of failed logon attempts |
| number_of_logons | Total number of logons recorded |
| account_type | Type of account (LocalUser, MicrosoftAccount, ...) |
asset_applications
This data source is part of the Reveal plan.
The asset_applications data source lists software and applications installed on assets discovered across your environment. Each record represents a unique application instance on a given asset, including version, signing status, and execution metadata.
Use this data source to build software inventories, detect unsigned binaries, and identify applications with known vulnerabilities via their CPE identifier.
| Property | Description |
|---|---|
| uuid | Unique identifier of the application record |
| community_uuid | UUID of the community the asset belongs to |
| asset_uuid | Unique identifier of the asset |
| name | Application name |
| version | Application version |
| author | Vendor or author of the application |
| filename | Executable filename |
| install_date | Date the application was installed |
| install_path | Installation path on the asset |
| last_execution | Last time the application was executed |
| last_user_name | Last user who ran the application |
| signed | Whether the binary is digitally signed |
| signer_cn | Common name of the signer |
| hash | File hash |
| os | Operating system the application runs on |
| cpe | CPE identifier, used for vulnerability matching |
| purl | Package URL (PURL) identifier for the application |
| architecture | CPU architecture |
| created_at | Timestamp when this application was first recorded |
| updated_at | Last update timestamp |
| deleted_at | Timestamp when the application was removed. Applications are soft-deleted and remain in the data source after removal. Filter on isnull(deleted_at) to query active applications only. |
Count unsigned applications across assets
asset_applications
| where signed == false and isnull(deleted_at)
| aggregate count_distinct(asset_uuid)
Top 20 most widespread applications by number of assets
asset_applications
| where isnull(deleted_at)
| aggregate asset_count = count_distinct(asset_uuid) by name, version
| top 20 by asset_count
asset_vulnerabilities
This data source is part of the Reveal plan.
The asset_vulnerabilities data source exposes CVE-based vulnerabilities associated with your assets, enriched from the National Vulnerability Database (NVD). Each record links a vulnerability to the affected asset and the specific application version involved.
Use this data source to track open vulnerabilities, prioritize remediation by CVSS score, and measure your exposure over time.
| Property | Description |
|---|---|
| uuid | Unique identifier of the vulnerability record |
| community_uuid | UUID of the community the asset belongs to |
| asset_uuid | Unique identifier of the affected asset |
| title | Vulnerability title, usually the CVE ID |
| description | Vulnerability description |
| cve_ids | List of CVE identifiers |
| cwe | CWE identifier associated with the vulnerability |
| cvss_score | CVSS base score |
| unified_risk_score | Unified risk score combining CVSS and contextual signals |
| unified_risk_score_str | Human-readable label for the unified risk score (e.g., Critical, High) |
| status | Vulnerability status: open, accepted_risk, false_positive, or remediated |
| software | Name of the vulnerable software |
| version | Version of the vulnerable software |
| external_reference_id | External identifier for the vulnerability in a third-party system |
| source_connector_uuid | UUID of the connector that sourced this vulnerability |
| created_at | Date the vulnerability was first recorded |
| updated_at | Last update timestamp |
| closed_at | Date the vulnerability was closed |
| closed_by | User or system that closed the vulnerability |
| closed_by_type | Type of entity that closed the vulnerability (e.g., avatar, apikey) |
Count assets with at least one open critical vulnerability (CVSS >= 9)
asset_vulnerabilities
| where status == "open" and cvss_score >= 9
| aggregate count_distinct(asset_uuid)
Top 20 assets with the most open vulnerabilities
asset_vulnerabilities
| where status == "open"
| aggregate count() by asset_uuid
| top 20 by count
asset_poi
This data source is part of the Reveal plan.
The asset_poi data source exposes points of interest (POIs) detected on assets, derived from UEBA analysis and notable activity detection. Each record is linked to a MITRE ATT&CK phase, giving you a structured view of behavioral signals across your asset inventory.
Use this data source to surface suspicious activity, map behavioral patterns to MITRE ATT&CK, and prioritize assets for investigation. For a functional overview of how points of interest work, see Points of interest.
| Property | Description |
|---|---|
| uuid | Unique identifier of the POI record |
| community_uuid | UUID of the community the asset belongs to |
| asset_uuid | Unique identifier of the asset |
| poi_name | Name of the point of interest |
| poi_type | Type of POI: ueba or notable_activity |
| mitre_attack_phase | MITRE ATT&CK phase associated with the POI |
| severity | Severity score from 0 (lowest) to 100 (highest) |
| description | Description of the POI |
| created_at | Timestamp when the POI was created |
Coming soon
The notable_activity value for poi_type is not yet available. Queries filtering on poi_type == "notable_activity" will return no results until this capability is released.
Top 20 assets with the most points of interest
asset_poi
| aggregate poi_count = count() by asset_uuid
| top 20 by poi_count
Count POIs by MITRE ATT&CK phase
asset_poi
| aggregate count() by mitre_attack_phase
| sort by count desc
Related articles
Getting started and overview
- SOL Overview: Sekoia Operating Language overview.
- SOL Getting Started: This tutorial walks you through writing your first SOL queries. By the end, you'll be able to search events, filter results, and save queries for reuse.
- SOL Best Practices: Best practices to use SOL effectively.
User guides
- Create and Manage Queries: Create and manage queries using SOL.
- SOL How-to Guides: Learn how to use the main functions of SOL to reach your goals (aggregate data, join tables, use external data, build a query library...).
- SOL Query Examples: Get inspiration from our examples.
- SOL Datasets: Discover the CSV import feature that enables SOC analysts to enrich security investigations by importing external data sources directly into the SOL query environment.
Technical reference
- SOL Functions Reference: Reference article regarding functions used in SOL.
- SOL Operators Reference: Reference article regarding operators used in the SOL language.