You can just inject TraceWriter
additionally:
private static string key = TelemetryConfiguration.Active.InstrumentationKey = "";
private static TelemetryClient telemetryClient =
new TelemetryClient() { InstrumentationKey = key };
[FunctionName("Function1")]
public static async Task<HttpResponseMessage> Run(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequestMessage req,
ILogger log,
TraceWriter writer)
{
telemetryClient.Context.Cloud.RoleName = "AIFunction";
log.LogInformation($"C# ServiceBus queue trigger function processed message: ");
log.LogInformation($"C# ServiceBus queue trigger function to test Application Insight Logging");
writer.Info("C# ServiceBus queue trigger function processed message: ");
writer.Info("C# ServiceBus queue trigger function to test Application Insight Logging");
telemetryClient.TrackEvent("AIFunction TrackEvent");
telemetryClient.TrackTrace("AIFunction TrackTrace");
return req.CreateResponse(HttpStatusCode.OK, "Hello!");
}
Output:
[19.04.2018 06:41:06] Executing HTTP request: {
[19.04.2018 06:41:06] "requestId": "d193e55d-305f-4a0c-9f17-40c0a062500a",
[19.04.2018 06:41:06] "method": "GET",
[19.04.2018 06:41:06] "uri": "/api/Function1"
[19.04.2018 06:41:06] }
[19.04.2018 06:41:06] Function started (Id=568798ce-f15f-4d8c-ac2b-c92aa47047a5)
[19.04.2018 06:41:06] Executing 'Function1' (Reason='This function was programmatically called via the host APIs.', Id=568798ce-f15f-4d8c-ac2b-c92aa47047a5)
[19.04.2018 06:41:06] C# ServiceBus queue trigger function processed message:
[19.04.2018 06:41:06] C# ServiceBus queue trigger function to test Application Insight Logging
[19.04.2018 06:41:07] Function completed (Success, Id=568798ce-f15f-4d8c-ac2b-c92aa47047a5, Duration=197ms)
[19.04.2018 06:41:07] Executed 'Function1' (Succeeded, Id=568798ce-f15f-4d8c-ac2b-c92aa47047a5)
[19.04.2018 06:41:07] Executed HTTP request: {
[19.04.2018 06:41:07] "requestId": "d193e55d-305f-4a0c-9f17-40c0a062500a",
[19.04.2018 06:41:07] "method": "GET",
[19.04.2018 06:41:07] "uri": "/api/Function1",
[19.04.2018 06:41:07] "authorizationLevel": "Anonymous",
[19.04.2018 06:41:07] "status": "OK"
[19.04.2018 06:41:07] }
If you want to log only locally you can change Info
method to e.g. Verbose
:
writer.Verbose("C# ServiceBus queue trigger function processed message: ");
writer.Verbose("C# ServiceBus queue trigger function to test Application Insight Logging");
And then update your local host.json
file:
{
"tracing": {
"consoleLevel": "verbose"
}
}
But personally I don't find it useful once you've implemented Application Insights.
ILogger
in Console after latest update. – bot_insaneTraceWriter
andILogger
? – Alex Gordon