Event Structure

Events within LogScale contain multiple fields, and each field contains a corresponding value. New fields can be created at any point within the query process- stored event data is dependent on how the event is ingested. The exact format and structure of stored data in LogScale is impacted by a combination of factors:

  • The source of the original information

  • Whether the source data is already in a structured format

  • The ingest method, i.e. a log shipper or the API

  • Whether a parser is applied to the incoming data to extract known fields

The specific fields extracted also depend on which fields the parser is configured to create as tags. Tagged fields affect how events are indexed and queried within LogScale.

Common fields that appear in all events include:

The following examples show how different fields and their values may differ based on raw event data that is ingested, their source, and the parser used:

Raw Events
2025-08-13T16:05:50.453Z SYD-SRV01 httpd[62145]: 192.168.4.198 - - [2025-03-13:17:30:15 +0200] "GET /downloads/software/installer.exe HTTP/1.1" 401 7891
2025-08-13T16:05:52.976Z DNS01 sudo[49123]: bakerm : TTY=pts/0 ; PWD=/home/blackj ; USER=root ; COMMAND=/sbin/ifconfig
  • Raw Events
    2025-08-13T16:05:50.453Z SYD-SRV01 httpd[62145]: 192.168.4.198 - - [2025-03-13:17:30:15 +0200] "GET /downloads/software/installer.exe HTTP/1.1" 401 7891
    Field Value
    hostname SYD-SRV01
    process httpd
    ipaddress 102.168.4.198
    method GET
    url /downloads/software/installer.exe
  • Raw Events
    2025-08-13T16:05:52.976Z DNS01 sudo[49123]: bakerm : TTY=pts/0 ; PWD=/home/blackj ; USER=root ; COMMAND=/sbin/ifconfig
    Field Value
    hostname DNS01
    process sudo
    pwd /home/black
    user root
    command /sbin/ifconfig

The fields extracted from each event depend on the parser applied to the incoming data. Parsers can be configured to designate certain fields as tags, which affects how the data is indexed and queried. For more information on parsers and field extraction, see Parse Data.