Learn how to ensure that your logs are properly parsed.
Now that you can send logs, you may be wondering how to tell Logs Data Platform what kind of data you send. It can be dates, numbers, boolean values, or just plain text strings.
Requirements
- no specific requirement
Instructions
What is a valid log for Logs Data Platform?
Each log received on Logs Data Platform is transformed into a GELF-formatted log. What is GELF? A standardized JSON way to send logs. GELF stands for Graylog Extended Log Format. Using this format gives us two advantages: it is directly compatible with Graylog and it is still extensible enough to enrich your logs as you would like to.
This format imposes a few conventions that if you don't follow can have many consequences:
- Logs Data Platform will rewrite your field as an incorrect one (with a
_fixit
suffix). - Your log will be rejected.
First please check the table below to know which fields are available and their meaning. Note that some of these fields are mandatory and have to be set by whichever library you use to send logs to Logs Data Platform. Refer to the documentation of the library or to some of our awesome tutorials to know how to send them.
Word | ES type | About |
---|---|---|
version | String | GELF spec version – “1.1”; MUST be set by client library. |
host | String | The name of the host, source, or application that sent this message; MUST be set by client library. |
short_message | String | A short descriptive message; MUST be set by client library. |
full_message | String | A long message that can i.e. contain a backtrace; optional. |
timestamp | Number | Seconds since UNIX epoch with optional decimal places for milliseconds; SHOULD be set by client library. Will be set to NOW by server if absent. |
level | Number | The level equal to the standard syslog levels; optional, default is 1 (ALERT). |
line | Number | We consider this value to be a standard in the logs messages so we force it to be a Number. |
X-OVH-TOKEN | String | Mandatory on direct access, don't try to forge strange ones, you will be banished. |
X-OVH-CONTENT-SIZE | Number | Size in bytes of the current log. |
X-OVH-TO-FREEZE | String | If given, will build another archive containing only its value (separated by a line break). |
Can I go deeper?
Of course. As we said before, you can send some additional fields as long as you prepend them with the _
(underscore) character. You can use any JSON valid character for your field, except the .
(dot) character. But don't worry, if you do so, we will rewrite your '.' as an underscore. So how can you send special type as number, date, and boolean? Here is the answer:
Case sensitive suffix | ES Type | About |
---|---|---|
_num, _double, *_float | double | floating value in double in java representation: double-precision 64-bit IEEE 754 floating point |
_int, _long | long | 64-bit signed long type, which has a minimum value of -263 and a maximum value of 263-1 |
*_date | date | an ISO 8601 date with optional Time or Milliseconds since UNIX epoch in Integer. |
*_bool | boolean | Expected values: "true" or "false". WARNING: GELF does not support boolean types you will have to send "true" or "false" in String |
*_geolocation | String | A pair of two float numbers separated by a comma ','. This pair must represent Latitude and Longitude. For OpenSearch Dashboards & Grafana compatibility, the value is also copied to a GeoHash: *_geolocation.geo
|
*_ip | String | A valid IPv4 or IPv6. This will allows you to search by range (dst_ip:[10.0.0.0 TO 10.255.255.255] ) or netmask (dst_ip:10.0.0.0\/8 ) |
Everything else | String | Anything else will be considered a string |
As you can see, it is fairly straightforward. Suffix your field with the right value and you will be able to send anything you want. For reference, here is a full example of a valid GELF message with every type we have:
Specifying the correct numeric suffix type is the only way to generate numeric Widgets for your Dashboards. Here is an example of a graph you can generate with a numeric value:
Our platform limits the usage of IP addresses as field keys. IP addresses have a high cardinality and thus are not allowed to be used as keys (of course they are supported and enriched as values, as you can see above). If you use an IP address as a key, it will be changed. For example:
This...
becomes this...
Go further
For more information and tutorials, please see our other Logs Data Platform support guides or explore the guides for other OVHcloud products and services.