Tomas Della Vedova
Tomas Della Vedova
Hello! I don't like the approach of adding a custom boolean to identify the error. If we have to do this, it should follow Node.js's error conventions. It could be...
I'm not sure, the following doesn't throw: ```js const assert = require('assert') class HPAError extends Error { constructor (message, statusCode) { super(message) this.name = 'HPAError' this.code = 'HPA_ERR_STATUS' this.statusCode =...
I'm fine with two subfolders inside `/test` :)
I can share an update, we have worked for improving the ECS support, and if you are using Pio v6 now you can use [@elastic/ecs-pino-format](https://github.com/elastic/ecs-logging-js/tree/master/loggers/pino) instead of enabling the ecs...
> I found if I write more logs, it sends some of the logs. So I think it's might be cause of the flushBytes. If I set flushBytes to 10,...
If you run the main process and pipe this transport, it works automatically, as the stream from the main process and the transport ends. ``` node example.js | ./cli.js ```...
Hello! Even if all the nodes are declared dead, the client will still try to send requests against the originally configured list of nodes. > the stream will be disposed...
You are right, currently you can’t pass an api key. It would be nice to expose it as the client does support it. Would you like to send a pr?...
@penumbra23 it won't solve this specific issue out if the box, the the v8 client uses a new type of connection pool. Try to use ClusterConnectionPool in the client configuration,...
I've updated [elastic/elastic-github-actions](https://github.com/elastic/elastic-github-actions/pull/25) to better support security on by default. While testing the code should either avoid rejecting unauthorized certs, or set `security-enabled: false` in the action settings.