pino-elasticsearch
pino-elasticsearch copied to clipboard
🌲 load pino logs into Elasticsearch
Hi, i would like to send my pino logs to elastic, we are using elastic 6 version with latest version of pino and pino-elastic and when i config the below...
I am using express-pino-logger and want to log the http and routes logs to elasticsearch using this module. Can you please provide an example for such case? Thanks.
Can we have an option to pass the ssl configuration to the elasticsearch client? I can do a PR if people want. Just need to pass an object like this....
When I pass nested objects as payload to elasticsearch, I'll get ResponseError: mapper_parsing_exception. Code to reproduce: ```js const pino = require('pino'); const pinoElastic = require('pino-elasticsearch'); const streamToElastic = pinoElastic({ index:...
I'm sending to elasticsearch an http-request trace with the body. The index created by default will index all the body's fields and my server can't afford all that processing.. moreover,...
I'd like to keep my logs both in files and in ElasticSearch, and pipe them to ES via pino-elasticsearch. In order to keep my log files smaller, I'd like to...
Is ist possible to create daily rotating databases with pino-elasticsearch?
On [pino-elasticsearch:L27](https://github.com/pinojs/pino-elasticsearch/blob/master/pino-elasticsearch.js#L27) If value equals `{}` ``` } else { value.time = (new Date(value.time)).toISOString() } ``` It will return: ``` RangeError: Invalid time value at Date.toISOString () ``` And break
I cannot find any way to use pino elastic search with AWS IAM authetication, would be nice to support this, to avoid putting static credentials in chef recipies.
The type in lib.d.ts uses export default where the lib.js file uses module.exports =. This will cause TypeScript under the node16 and nodenext module resolution mode to think an extra...