Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Sean Thorne 1 post 71 karma points
    Apr 18, 2019 @ 14:23
    Sean Thorne
    0

    Serilog to App Insights?

    Hey,

    Fairly new to Umbraco and am using version 8, can anyone help me / push me in the right direction on how to configure Application Insights to work with Umbraco's internal Logging.

    I'd like to be able to see all Logs that created pushed through to app insights

  • Dave de Moel 121 posts 553 karma points c-trib
    Apr 19, 2019 @ 11:43
    Dave de Moel
    0

    To push Umbraco log messages from serilog to App Insights you need to use the correct "sink".

    You can find the package for the sink here: https://www.nuget.org/packages/Serilog.Sinks.ApplicationInsights/

    And the documentation here: https://github.com/serilog/serilog-sinks-applicationinsights

  • Pankaj Nainwal 4 posts 24 karma points
    Jun 03, 2020 @ 17:54
    Pankaj Nainwal
    0

    Hi Sean, were you able to implement this? Can you post some learnings.

  • Mario 140 posts 836 karma points c-trib
    Jun 17, 2020 @ 06:53
    Mario
    0

    You need to install the nuget that Dave said. Then you have to configure it in the '~/config/serilog.user.config' as:

      <add key="serilog:using:ApplicationInsights" value="Serilog.Sinks.ApplicationInsights"/>
      <add key="serilog:write-to:ApplicationInsights.telemetryConverter" value="Serilog.Sinks.ApplicationInsights.Sinks.ApplicationInsights.TelemetryConverters.TraceTelemetryConverter, Serilog.Sinks.ApplicationInsights"/>
      <add key="serilog:minimum-level:override:Microsoft" value="Warning" />
    

    Check the configuration of the package and try to 'translate' it to the XML configuration if you need something else, but that should give you a start ;)

  • Gavin Williams 23 posts 133 karma points
    Nov 13, 2020 @ 13:19
    Gavin Williams
    0

    Hi Sean. Were you able to get this to work? For example, how did you configure the instrumentation key and/or connection string so it knows which appinsights instance to write to?

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies