Docs
Search
⌃K

Log Event

The internal representation of a SignalFlex log event is as follows:
{
"_message": "<log message, body of event>",
"key1": "<value1>",
"key2": "<value2>",
"keyN": "<valueN>",
"...": "..."
}
Upon arrival from a Source,
  • If raw data received can be JSON-parsed, data will be parsed, each field in the JSON object will be assigned to event structure above.
  • If raw data cannot be JSON-parsed, all of its content will be assigned to _message field
Last modified 2yr ago