@@ -17,56 +17,56 @@ public sealed class FunctionsSystemLogsEventSource : ExtendedEventSource
17
17
18
18
[ SuppressMessage ( "Microsoft.Naming" , "CA1709:IdentifiersShouldBeCasedCorrectly" , Justification = "MDS columns names are Pascal Cased" ) ]
19
19
[ SuppressMessage ( "Microsoft.Design" , "CA1030:UseEventsWhereAppropriate" ) ]
20
- [ Event ( 65520 , Level = EventLevel . Verbose , Channel = EventChannel . Operational , Version = 5 ) ]
21
- public void RaiseFunctionsEventVerbose ( string SubscriptionId , string AppName , string FunctionName , string EventName , string Source , string Details , string Summary , string HostVersion , string EventTimestamp , string FunctionInvocationId , string HostInstanceId , string RuntimeSiteName )
20
+ [ Event ( 65520 , Level = EventLevel . Verbose , Channel = EventChannel . Operational , Version = 6 ) ]
21
+ public void RaiseFunctionsEventVerbose ( string SubscriptionId , string AppName , string FunctionName , string EventName , string Source , string Details , string Summary , string HostVersion , string EventTimestamp , string FunctionInvocationId , string HostInstanceId , string RuntimeSiteName , string SlotName )
22
22
{
23
23
if ( IsEnabled ( ) )
24
24
{
25
- WriteEvent ( 65520 , SubscriptionId , AppName , FunctionName , EventName , Source , Details , Summary , HostVersion , EventTimestamp , FunctionInvocationId , HostInstanceId , RuntimeSiteName ) ;
25
+ WriteEvent ( 65520 , SubscriptionId , AppName , FunctionName , EventName , Source , Details , Summary , HostVersion , EventTimestamp , FunctionInvocationId , HostInstanceId , RuntimeSiteName , SlotName ) ;
26
26
}
27
27
}
28
28
29
29
[ SuppressMessage ( "Microsoft.Naming" , "CA1709:IdentifiersShouldBeCasedCorrectly" ) ]
30
30
[ SuppressMessage ( "Microsoft.Design" , "CA1030:UseEventsWhereAppropriate" ) ]
31
- [ Event ( 65521 , Level = EventLevel . Informational , Channel = EventChannel . Operational , Version = 5 ) ]
32
- public void RaiseFunctionsEventInfo ( string SubscriptionId , string AppName , string FunctionName , string EventName , string Source , string Details , string Summary , string HostVersion , string EventTimestamp , string FunctionInvocationId , string HostInstanceId , string RuntimeSiteName )
31
+ [ Event ( 65521 , Level = EventLevel . Informational , Channel = EventChannel . Operational , Version = 6 ) ]
32
+ public void RaiseFunctionsEventInfo ( string SubscriptionId , string AppName , string FunctionName , string EventName , string Source , string Details , string Summary , string HostVersion , string EventTimestamp , string FunctionInvocationId , string HostInstanceId , string RuntimeSiteName , string SlotName )
33
33
{
34
34
if ( IsEnabled ( ) )
35
35
{
36
- WriteEvent ( 65521 , SubscriptionId , AppName , FunctionName , EventName , Source , Details , Summary , HostVersion , EventTimestamp , FunctionInvocationId , HostInstanceId , RuntimeSiteName ) ;
36
+ WriteEvent ( 65521 , SubscriptionId , AppName , FunctionName , EventName , Source , Details , Summary , HostVersion , EventTimestamp , FunctionInvocationId , HostInstanceId , RuntimeSiteName , SlotName ) ;
37
37
}
38
38
}
39
39
40
40
[ SuppressMessage ( "Microsoft.Naming" , "CA1709:IdentifiersShouldBeCasedCorrectly" ) ]
41
41
[ SuppressMessage ( "Microsoft.Design" , "CA1030:UseEventsWhereAppropriate" ) ]
42
- [ Event ( 65522 , Level = EventLevel . Warning , Channel = EventChannel . Operational , Version = 5 ) ]
43
- public void RaiseFunctionsEventWarning ( string SubscriptionId , string AppName , string FunctionName , string EventName , string Source , string Details , string Summary , string HostVersion , string EventTimestamp , string FunctionInvocationId , string HostInstanceId , string RuntimeSiteName )
42
+ [ Event ( 65522 , Level = EventLevel . Warning , Channel = EventChannel . Operational , Version = 6 ) ]
43
+ public void RaiseFunctionsEventWarning ( string SubscriptionId , string AppName , string FunctionName , string EventName , string Source , string Details , string Summary , string HostVersion , string EventTimestamp , string FunctionInvocationId , string HostInstanceId , string RuntimeSiteName , string SlotName )
44
44
{
45
45
if ( IsEnabled ( ) )
46
46
{
47
- WriteEvent ( 65522 , SubscriptionId , AppName , FunctionName , EventName , Source , Details , Summary , HostVersion , EventTimestamp , FunctionInvocationId , HostInstanceId , RuntimeSiteName ) ;
47
+ WriteEvent ( 65522 , SubscriptionId , AppName , FunctionName , EventName , Source , Details , Summary , HostVersion , EventTimestamp , FunctionInvocationId , HostInstanceId , RuntimeSiteName , SlotName ) ;
48
48
}
49
49
}
50
50
51
51
[ SuppressMessage ( "Microsoft.Naming" , "CA1709:IdentifiersShouldBeCasedCorrectly" ) ]
52
52
[ SuppressMessage ( "Microsoft.Design" , "CA1030:UseEventsWhereAppropriate" ) ]
53
- [ Event ( 65523 , Level = EventLevel . Error , Channel = EventChannel . Operational , Version = 5 ) ]
54
- public void RaiseFunctionsEventError ( string SubscriptionId , string AppName , string FunctionName , string EventName , string Source , string Details , string Summary , string HostVersion , string EventTimestamp , string InnerExceptionType , string InnerExceptionMessage , string FunctionInvocationId , string HostInstanceId , string RuntimeSiteName )
53
+ [ Event ( 65523 , Level = EventLevel . Error , Channel = EventChannel . Operational , Version = 6 ) ]
54
+ public void RaiseFunctionsEventError ( string SubscriptionId , string AppName , string FunctionName , string EventName , string Source , string Details , string Summary , string HostVersion , string EventTimestamp , string InnerExceptionType , string InnerExceptionMessage , string FunctionInvocationId , string HostInstanceId , string RuntimeSiteName , string SlotName )
55
55
{
56
56
if ( IsEnabled ( ) )
57
57
{
58
- WriteEvent ( 65523 , SubscriptionId , AppName , FunctionName , EventName , Source , Details , Summary , HostVersion , EventTimestamp , InnerExceptionType , InnerExceptionMessage , FunctionInvocationId , HostInstanceId , RuntimeSiteName ) ;
58
+ WriteEvent ( 65523 , SubscriptionId , AppName , FunctionName , EventName , Source , Details , Summary , HostVersion , EventTimestamp , InnerExceptionType , InnerExceptionMessage , FunctionInvocationId , HostInstanceId , RuntimeSiteName , SlotName ) ;
59
59
}
60
60
}
61
61
62
- [ Event ( 65524 , Level = EventLevel . Informational , Channel = EventChannel . Operational , Version = 6 ) ]
62
+ [ Event ( 65524 , Level = EventLevel . Informational , Channel = EventChannel . Operational , Version = 7 ) ]
63
63
[ SuppressMessage ( "Microsoft.Naming" , "CA1709:IdentifiersShouldBeCasedCorrectly" ) ]
64
64
[ SuppressMessage ( "Microsoft.Design" , "CA1030:UseEventsWhereAppropriate" ) ]
65
- public void LogFunctionMetricEvent ( string SubscriptionId , string AppName , string FunctionName , string EventName , long Average , long Minimum , long Maximum , long Count , string HostVersion , string EventTimestamp , string Data , string RuntimeSiteName )
65
+ public void LogFunctionMetricEvent ( string SubscriptionId , string AppName , string FunctionName , string EventName , long Average , long Minimum , long Maximum , long Count , string HostVersion , string EventTimestamp , string Data , string RuntimeSiteName , string SlotName )
66
66
{
67
67
if ( IsEnabled ( ) )
68
68
{
69
- WriteEvent ( 65524 , SubscriptionId , AppName , FunctionName , EventName , Average , Minimum , Maximum , Count , HostVersion , EventTimestamp , Data , RuntimeSiteName ) ;
69
+ WriteEvent ( 65524 , SubscriptionId , AppName , FunctionName , EventName , Average , Minimum , Maximum , Count , HostVersion , EventTimestamp , Data , RuntimeSiteName , SlotName ) ;
70
70
}
71
71
}
72
72
0 commit comments