JSON Log Formatting
This documentation explains how AppSignal supports log messages formatted in JSON.
JSON
If you specify JSON as your log format, AppSignal will parse incoming log message
as key-value pairs. Each key-value pair will be stored as an attribute on the log line, allowing you to filter and search for specific log lines based on their attributes.
Examples
The following example shows how AppSignal parses a log message
in the JSON format.
Message
The above JSON will be parsed with the message "this is a test message"
.
You can either use the msg
or message
key to override the message.
If no msg
or message
key is available, the entire log line will be used as the message.
Overrides
The log attributes from the platform or integration (such as hostname, timestamp and group set by e.g. the Heroku platform) can be overriden with the values from the JSON message.
Attriubute Key | Type |
---|---|
group | String |
severity | Severity |
hostname | String |
message | String |
The severity
can contain one of the following values: unknown
, trace
, debug
, info
, notice
, warn
, error
, critical
, alert
and fatal
.
This is an excellent way to control the severity of your log lines from within application, regardless of the (usually defaulted info
) severity set by the platform or integration.
Attributes
Any other key/value pair is added as a searchable attributes:
Attriubute Key | Type | Value |
---|---|---|
org | String | "appsignal" |
step | Int | 1 |
seen_terms | Bool | true |
entries | Double | 10.01 |
user.id | Int | 1 |
user.remote_id | String | "123" |
Formatting Rules
Key behavior:
- If a key-value pair has a key with the name of
msg
ormessage
the value of this key will be parsed as the log message. - If no message/msg key is available, the entire log line will be considered the message.
- Keys must be alphanumeric.
- Keys cannot contain spaces, but may contain fullstops (
.
), underscores (_
) and hyphens (-
). - Keys may not contain more than 50 characters
Value behavior:
- Values must not be longer than 255 characters
- No more than 25 attributes per log message.
- Values may contain nested Objects, but not Arrrays.
- Values may be of the following types:
- String
- Integer (e.g.
10
) - Double (e.g.
10.01
) - Boolean (
true
/false
) - Object (e.g.
{ "foo": "bar" }
)
For nested objects, the attributes will be flattened, separated by a .
character.
Key value pairs that do not follow these rules are appended to the message of a log, unless a message
or msg
key is provided.