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
The readme says that this supports Grelog 2. Is this just old text? Should we expect Graylog 4 to work
I have tried to use graylog 4.2 and my messages do not make it to the server. I don't know if this is because Graylog 4 is unsupported or if I have misconfigured it.
I have graylog running locally using docker-compose:
My Serilog config looks like this:
using var logger = new LoggerConfiguration()
.WriteTo.Console(outputTemplate: "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} - {SourceContext} [{Level:u3}] {Message:lj}{NewLine}{Exception}")
.WriteTo.Graylog(new GraylogSinkOptions
{
HostnameOrAddress = "127.0.0.1",
Port = 12201,
MinimumLogEventLevel = Serilog.Events.LogEventLevel.Information,
TransportType = Serilog.Sinks.Graylog.Core.Transport.TransportType.Udp,
})
.MinimumLevel.Debug()
.CreateLogger();
@trampster GELF protocol isn't changed, so it shold work with graylog 4, but i cant test it because i'm from russia =D and can't install graylog locally. In our production systems we use gralog 3 and it works fine
The readme says that this supports Grelog 2. Is this just old text? Should we expect Graylog 4 to work
I have tried to use graylog 4.2 and my messages do not make it to the server. I don't know if this is because Graylog 4 is unsupported or if I have misconfigured it.
I have graylog running locally using docker-compose:
My Serilog config looks like this:
my graylog has a UDP input configured:
I've also tried the http input
The text was updated successfully, but these errors were encountered: