removedInput schema / $defs
Removed value: -{
- "Transport": {
- "description": "Valid journalctl transport types for filtering journal entries.\n\nTransports identify the source/mechanism that submitted log messages to the journal.\n\nAUDIT - Linux audit subsystem messages (security events, syscall auditing)\nDRIVER - Kernel driver messages logged via dev_printk().\nJOURNAL - Messages logged directly to the journal via sd_journal_* APIs.\nKERNEL - Kernel ring buffer messages (dmesg/printk).\nSTDOUT - stdout/stderr from services with StandardOutput/StandardError=journal.\nSYSLOG - Messages received via the syslog socket (/dev/log).",
- "enum": [
- "audit",
- "driver",
- "journal",
- "kernel",
- "stdout",
- "syslog"
- ],
- "type": "string"
- }
-}
addedInput schema / additionalProperties
Added value: +false
addedInput schema / properties / first_lines
Added value: +{
+ "anyOf": [
+ {
+ "maximum": 10000,
+ "minimum": 1,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Number of first log lines to retrieve after applying filters (journalctl -n +N). Mutually exclusive with last_lines."
+}
addedInput schema / properties / last_lines
Added value: +{
+ "anyOf": [
+ {
+ "maximum": 10000,
+ "minimum": 1,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Number of last log lines to retrieve after applying filters (journalctl -n N). Default: 100. Mutually exclusive with first_lines."
+}
removedInput schema / properties / lines
Removed value: -{
- "default": 100,
- "description": "Number of log lines to retrieve. Default: 100",
- "maximum": 10000,
- "minimum": 1,
- "type": "integer"
-}
changedInput schema / properties / transport / anyOf
Previous value: -[
- {
- "$ref": "#/$defs/Transport"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "description": "Valid journalctl transport types for filtering journal entries.\n\nTransports identify the source/mechanism that submitted log messages to the journal.\n\nAUDIT - Linux audit subsystem messages (security events, syscall auditing)\nDRIVER - Kernel driver messages logged via dev_printk().\nJOURNAL - Messages logged directly to the journal via sd_journal_* APIs.\nKERNEL - Kernel ring buffer messages (dmesg/printk).\nSTDOUT - stdout/stderr from services with StandardOutput/StandardError=journal.\nSYSLOG - Messages received via the syslog socket (/dev/log).",
+ "enum": [
+ "audit",
+ "driver",
+ "journal",
+ "kernel",
+ "stdout",
+ "syslog"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / path / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "format": "path",
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / unit / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "format": "path",
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]