1 instantiation of KestrelEventSource
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\KestrelEventSource.cs (1)
19public static readonly KestrelEventSource Log = new KestrelEventSource();
42 references to KestrelEventSource
InMemory.FunctionalTests (21)
EventSourceTests.cs (21)
87Assert.Same(KestrelEventSource.Log, connectionStart.EventSource); 95Assert.Same(KestrelEventSource.Log, firstRequestStart.EventSource); 103Assert.Same(KestrelEventSource.Log, firstRequestStop.EventSource); 113Assert.Same(KestrelEventSource.Log, secondRequestStart.EventSource); 121Assert.Same(KestrelEventSource.Log, secondRequestStop.EventSource); 130Assert.Same(KestrelEventSource.Log, connectionStop.EventSource); 211Assert.Same(KestrelEventSource.Log, connectionStart.EventSource); 219Assert.Same(KestrelEventSource.Log, tlsHandshakeStart.EventSource); 228Assert.Same(KestrelEventSource.Log, tlsHandshakeStop.EventSource); 239Assert.Same(KestrelEventSource.Log, requestStart.EventSource); 247Assert.Same(KestrelEventSource.Log, requestStop.EventSource); 257Assert.Same(KestrelEventSource.Log, connectionStop.EventSource); 316Assert.Same(KestrelEventSource.Log, connectionStart.EventSource); 323Assert.Same(KestrelEventSource.Log, tlsHandshakeStart.EventSource); 331Assert.Same(KestrelEventSource.Log, tlsHandshakeFailed.EventSource); 339Assert.Same(KestrelEventSource.Log, tlsHandshakeStop.EventSource); 347Assert.Same(KestrelEventSource.Log, connectionStop.EventSource); 397Assert.Same(KestrelEventSource.Log, connectionStart.EventSource); 404Assert.Same(KestrelEventSource.Log, connectionRejected.EventSource); 412Assert.Same(KestrelEventSource.Log, connectionStop.EventSource); 431EnableEvents(KestrelEventSource.Log, EventLevel.Verbose);
Microsoft.AspNetCore.Server.Kestrel.Core (21)
Internal\ConnectionDispatcher.cs (1)
65KestrelEventSource.Log.ConnectionQueuedStart(connection);
Internal\Http\Http1Connection.cs (1)
86KestrelEventSource.Log.RequestUpgradedStop(this);
Internal\Http\HttpProtocol.cs (2)
678KestrelEventSource.Log.RequestStart(this); 725KestrelEventSource.Log.RequestStop(this);
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
278KestrelEventSource.Log.RequestUpgradedStart(this);
Internal\Http2\Http2Connection.cs (1)
1343KestrelEventSource.Log.RequestQueuedStart(_currentHeadersStream, AspNetCore.Http.HttpProtocol.Http2);
Internal\Http2\Http2StreamOfT.cs (1)
23KestrelEventSource.Log.RequestQueuedStop(this, AspNetCore.Http.HttpProtocol.Http2);
Internal\Http3\Http3Connection.cs (1)
617KestrelEventSource.Log.RequestQueuedStart(stream, AspNetCore.Http.HttpProtocol.Http3);
Internal\Http3\Http3StreamOfT.cs (1)
22KestrelEventSource.Log.RequestQueuedStop(this, AspNetCore.Http.HttpProtocol.Http3);
Internal\Infrastructure\KestrelConnectionOfT.cs (3)
58KestrelEventSource.Log.ConnectionQueuedStop(connectionContext); 62KestrelEventSource.Log.ConnectionStart(connectionContext); 89KestrelEventSource.Log.ConnectionStop(connectionContext);
Internal\Infrastructure\KestrelEventSource.cs (1)
19public static readonly KestrelEventSource Log = new KestrelEventSource();
Internal\KestrelServerImpl.cs (2)
239KestrelEventSource.Log.AddServerOptions(Options); 281KestrelEventSource.Log.RemoveServerOptions(Options);
Middleware\ConnectionLimitMiddleware.cs (1)
36KestrelEventSource.Log.ConnectionRejected(connection.ConnectionId);
Middleware\HttpsConnectionMiddleware.cs (5)
213KestrelEventSource.Log.TlsHandshakeStop(context, feature); 254KestrelEventSource.Log.TlsHandshakeFailed(metricsContext.ConnectionContext.ConnectionId); 255KestrelEventSource.Log.TlsHandshakeStop(metricsContext.ConnectionContext, null); 364KestrelEventSource.Log.TlsHandshakeStart(context, sslOptions); 475KestrelEventSource.Log.TlsHandshakeStart(context, sslOptions);