-
bot the coralogix and papertrail logger use the same code to provide the `ow` log fields.
this should probably be done in a higher level logger.
-
The CoralogixLogger and the PapertrailLogger automatically add an `ow` object to the log message:
```
ow: {
activationId: process.env.__OW_ACTIVATION_ID,
actionName: process…
-
in case of an error in a formatter, the multilogger reports an error, leaking the API_KEY:
```
MultiLogger encountered exception while logging to CoralogixLogger - CoralogixLogger { apikey: 'hidde…
-
Those 4 files has no corresponding tests:
- [x] logger.js
- [x] logger-coralogix.js
- [x] logger-papertrail.js
- [x] syslog-stream.js
Considering the complexity of the embedded MultiLogger(s)…
-
coralogix support should be enabled when the following action params are available:
- `CORALOGIX_API_KEY`
- `CORALOGIX_APPLICATION_NAME` (defaults to the openwhisk namespace)
- `CORALOGIX_SUBSYST…
-
-
I'm converting YAML files to JSON and then to DHALL using just a simple conversion tool plus some trickery which embellishes JSON files so that they become valid DHALL files.
The resulting DHALL fi…
-
this project should use helix-log and be renamed accordingly.
alternatively, we could just use the new `wrap` function that will be added to openwhisk-action-utils: https://github.com/adobe/openwhi…
-
it would be cool if there is a simple way to inject process.env variables to the formatter, so that certain environment variables are logged automatically.
-
Following the intention that logging should behave similar than `console.log`, it is suprising to see that the `ConsoleLogger` uses `console.error()` to log the messages; which effectively logs to `st…