You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If connection to logstash service is lost and re-established, logs are not being
forwarded to logstash service anymore.
Also, "retries" property is not incremented while re-connecting so max connection retries is
never reached.
my logstash transport configuration:
{
mode: 'tcp',
host: 'myhostIP',
port: 5044,
maxConnectRetries: 500,
timeoutConnectRetries: 60000
}
Steps to Reproduce
Set Logstash transport to connect to you logstash service
Make sure that your app logs are being forwarded to logstash and are visible in kibana
Stop logstash service and start it again or reboot VM that is hosting the service.
Check if messages arrive to logstash/elasticsearch after restart of logstash service.
Expected behavior:
Logs should be forwarded to logstash after connection is broken and re-established.
Actual behavior:
Logs are not visible in kibana and after debugin the lib it seems that transport is not used by winston logger anymore.
Even though the logstash transport is connected to logstash service.
Reproduces how often:
Reproduces every time, 10/10.
Prerequisites
Description
If connection to logstash service is lost and re-established, logs are not being
forwarded to logstash service anymore.
Also, "retries" property is not incremented while re-connecting so max connection retries is
never reached.
my logstash transport configuration:
{
mode: 'tcp',
host: 'myhostIP',
port: 5044,
maxConnectRetries: 500,
timeoutConnectRetries: 60000
}
Steps to Reproduce
Expected behavior:
Logs should be forwarded to logstash after connection is broken and re-established.
Actual behavior:
Logs are not visible in kibana and after debugin the lib it seems that transport is not used by winston logger anymore.
Even though the logstash transport is connected to logstash service.
Reproduces how often:
Reproduces every time, 10/10.
Versions
Additional Information
my logstash transport configuration:
{
mode: "tcp",
host: 'myhostIP',
port: 5044,
maxConnectRetries: 500,
timeoutConnectRetries: 60000,
}
The text was updated successfully, but these errors were encountered: