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