Skip to content

Commit

Permalink
Turn off Application Insights by default (#642)
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Kerkhove <kerkhove.tom@gmail.com>
  • Loading branch information
tomkerkhove authored Jul 27, 2019
1 parent b8f4739 commit f8fbf44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Promitor.Core.Configuration/Defaults.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static class MetricsConfiguration

public class Telemetry
{
public static LogLevel? DefaultVerbosity { get; set; } = null;
public static LogLevel? DefaultVerbosity { get; set; } = LogLevel.Error;

public class ContainerLogs
{
Expand All @@ -32,7 +32,7 @@ public class ContainerLogs
public class ApplicationInsights
{
public static LogLevel? Verbosity { get; set; } = null;
public static bool IsEnabled { get; set; } = true;
public static bool IsEnabled { get; set; } = false;
}
}

Expand Down

0 comments on commit f8fbf44

Please sign in to comment.