pino-elasticsearch
pino-elasticsearch copied to clipboard
🌲 load pino logs into Elasticsearch
ElasticSearch 8 now requires https for every communication. This makes the current approach we use for running tests moot. We need some new setup and I do not have time...
Currently we're experiencing issues of logging completely `stopping completely` after our elastic ingest node is rebooting. After 2 days of debugging and testing I've concluded the splitter transform stream is...
I would like to use this package as module in a Typescript project. However I can't find typescript definition. It would be great to have it for integrating into Typescript...
When connection with elasticsearch server is broken, it won't send any msg to server any more. Can you add this feature?
Add proxy options on function pinoElasticSearch and pass it in new Client ```` js const client = new Client({ node: opts.node, auth: opts.auth, cloud: opts.cloud, ssl: { rejectUnauthorized: opts.rejectUnauthorized },...
For example, if different log objects have fields with the same name but with different value type. If we do: ``` logger.info({ test: 123 }); logger.info({ test: "string value" });...
I have a situation where bulk api isnt appilcable to my function. I have a lambda and execution time is around 1200ms, so bulk api cant get full enough to...
I haven't found any mentions of `--trace-level` inside `lib.js`, also @elastic/client [doesn't provide logger levels](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/client-connecting.html) as I can see it. May be the argument should be removed?
I only see support for the basic user:pass in the url auth mechanism. Is there an example showing how to use an apikey auth mechanism instead? For example, getting this...