Log Schema Reference
In this guide, you will find common fields used to build YAML-based schemas when onboarding Custom Log Types and Lookup Table schemas.
Required fields throughout this page are in bold.
LogSchema fields
Each log schema contains the following fields:
fields
([]FieldSchema
)The fields in each Log Event.
parser
(ParserSpec
)A parser that can convert non-JSON logs to JSON and/or perform custom transformations
CI/CD schema fields
Additionally, schemas defined using a CI/CD workflow can contain the following fields:
schema
(string
)The name of the schema
description
(string
)A short description that will appear in the UI
referenceURL
(string
)A link to an external document which specifies the log structure. Often, this is a link to a 3rd party's documentation.
fieldDiscoveryEnabled
(boolean
)Indicates whether field discovery will be enabled for this schema or not.
See the Custom Logs page for information on how to manage schemas through a CI/CD pipeline using Panther Analysis Tool (PAT).
Example
The example below contains the CI/CD fields mentioned above.
ParserSpec
A ParserSpec specifies a parser to use to convert non-JSON input to JSON. Only one of the following fields can be specified:
fastmatch
(FastmatchParser{}
): Usefastmatch
parserLearn more on Fastmatch Log Parser.
regex
(RegexParser{}
): Useregex
parserLearn more on Regex Log Parser.
csv
(CSVParser{}
): Usecsv
parserNote: The
columns
field is required when there are multiple CSV schemas in the same log source.Learn more on CSV Log Parser.
script
: Usescript
parserLearn more on Script Log Parser.
See the fields for fastmatch
, regex
, and csv
in the tabs below.
Parser fastmatch
fields
fastmatch
fieldsmatch
([]string
): One or more patterns to match log lines against. This field cannot be empty.emptyValues
([]string
): Values to consider asnull
.expandFields
(map[string]string
): Additional fields to be injected by expanding text templates.trimSpace
(bool
): Trim space surrounding each value.
FieldSchema
A FieldSchema defines a field and its value. The field is defined by:
name
(string
)The name of the field.
required
(boolean
)If the field is required or not.
description
(string
)Some text documenting the field.
copy
(object
)If present, the field's value will be copied from the referenced
object
.
rename
(object
)If present, the field's name will be changed.
concat
(object
)If present, the field's value will be the combination of the values of two or more other fields.
split
(object
)If present, the field's value will be extracted from another string field by splitting it based on a separator.
mask
(object
)If present, the field's value will be masked.
Its value is defined using the fields of a ValueSchema
.
ValueSchema
A ValueSchema
defines a value and how it should be processed. Each ValueSchema
has a type
field that can be of the following values:
Type Values | Description |
| A string value |
| A 32-bit integer number in the range |
| A 16-bit integer number in the range |
| A 64-bit integer number in the range |
| A 64-bit floating point number |
| A boolean value |
| A timestamp value |
| A JSON array where each element is of the same type |
| A JSON object of known keys |
| Any valid JSON value (JSON object, array, number, string, boolean) |
The fields of a ValueSchema
depend on the value of the type
.
Type | Field | Value | Description |
|
| An array of | |
|
| A | |
|
|
| An array specifying the formats to use for parsing the timestamp (see Timestamps) |
|
|
| A flag to tell Panther to use this timestamp as the Log Event Timestamp. |
|
|
| Tells Panther to extract indicators from this value (see Indicators) |
|
| Validation rules for the string value |
Timestamps
The timeFormats
field was introduced in version 1.46 to support multiple timestamp formats in custom log schemas. While timeFormat
is still supported for existing log sources, we recommend using timeFormats for all new schemas.
Timestamps are defined by setting the type
field to timestamp
and specifying the timestamp format using the timeFormats
field. Timestamp formats can be any of the built-in timestamp formats:
timeFormat | Example | Description |
---|---|---|
|
| The most common timestamp format. |
|
| Timestamp expressed in time passed since UNIX epoch time. It can handle seconds, milliseconds, microseconds, and nanoseconds. |
|
| Timestamp expressed in seconds since UNIX epoch time. It can handle fractions of seconds as a decimal part. |
|
| Timestamp expressed in milliseconds since UNIX epoch time. |
|
| Timestamp expressed in microseconds since UNIX epoch time. |
|
| Timestamp expressed in nanoseconds since UNIX epoch time. Scientific float notation is supported. |
Defining a custom format
You can also define a custom format by using strftime notation. For example:
Panther's strftime format supports using %N
code to parse nanoseconds. For example:
%H:%M:%S.%N
can be used to parse 11:12:13.123456789
Using multiple time formats
When multiple time formats are defined, each of them will be tried sequentially until successful parsing is achieved:
Timestamp values can be marked with isEventTime: true
to tell Panther that it should use this timestamp as the p_event_time
field. It is possible to set isEventTime
on multiple fields. This covers the cases where some logs have optional or mutually exclusive fields holding event time information. Since there can only be a single p_event_time
for every Log Event, the priority is defined using the order of fields in the schema.
Schema test cases that are used with the pantherlog test
command must define the time field value in theresult
payload formatted as YYYY-MM-DD HH:MM:SS.fffffffff.
For backwards compatibility reasons, single time format configurations will retain the same format.
Example:
When multiple time formats are defined:
Indicators
Values of string
type can be used as indicators. To mark a field as an indicator, set the indicators
field to an array of indicator scanner names (more than one may be used). This will instruct Panther to parse the string and store any indicator values it finds to the relevant p_any_
field. For a list of values that are valid to use in the indicators
field, see Standard Fields.
For example:
Validation - Allow/Deny lists
Values of string
type can be further restricted by declaring a list of values to allow
or deny
. This allows to have different log types that have common overlapping fields but differ on values of those fields.
Validation by string type
Values of string
type can be restricted to match well-known formats. Currently, Panther supports the ip
and cidr
formats to require that a string value be a valid IP address or CIDR range. Note that the ip
and cidr
validation types can be combined with allow
or deny
rules but it is somewhat redundant, for example, if you allow two IP addresses, then adding an ip
validation will simply ensure that your validation will not include false positives if the IP addresses in your list are not valid.
Using JSON schema in an IDE
If your code editor or integrated development environment (IDE) supports JSON Schema, you can configure it to use this schema file for Panther schemas and this schema-tests file for schema tests. Doing so will allow you to receive suggestions and error messages while developing Panther schemas and their tests.
JetBrains custom JSON schemas
See the JetBrains documentation for instructions on how to configure JetBrains IDEs to use custom JSON Schemas.
VSCode custom JSON schemas
See the VSCode documentation for instructions on how to configure VSCode to use JSON Schemas.
Stream type
While performing certain actions in the Panther Console, such as configuring an S3 bucket for Data Transport or inferring a custom schema from raw logs, you need to select a log stream type.
View example log events for each type below.
Stream type | Description | Example log event(s) |
---|---|---|
Auto | Panther will automatically detect the appropriate stream type. | n/a |
Lines | Events are separated by a new line character. | |
JSON | Events are in JSON format. | |
JSON Array | Events are inside an array of JSON objects. | |
CloudWatch Logs | Events came from CloudWatch Logs. |
Last updated