nsyslog
Version:
Modular new generation log agent. Reads, transform, aggregate, correlate and send logs from sources to destinations
22 lines (17 loc) • 588 B
Markdown
## Global Transporter
The Global Transporter stores log messages in a global shared memory. It allows for centralized access to log data across different parts of the application.
## Examples
```json
"transporters" : {
"global" : {
"type" : "global",
"config" : {
"input" : "${originalMessage}",
"output" : "nsyslog"
}
}
}
```
## Configuration parameters
* **input** : Input expression for the log message. Defaults to `${originalMessage}`.
* **output** : The key in the global shared memory where the message will be stored. Defaults to `nsyslog`.