1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-25 12:45:18 +01:00

explicitly disable app insights telemetry

This commit is contained in:
Kyle Spearrin 2018-05-21 12:49:57 -04:00
parent 619a00637d
commit 819a4e031d
2 changed files with 11 additions and 5 deletions

View File

@ -2,6 +2,7 @@
using Bit.Core;
using Bit.Core.Identity;
using Bit.Core.Utilities;
using Microsoft.ApplicationInsights.Extensibility;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Routing;
@ -72,15 +73,17 @@ namespace Bit.Admin
IHostingEnvironment env,
IApplicationLifetime appLifetime,
GlobalSettings globalSettings,
ILoggerFactory loggerFactory)
ILoggerFactory loggerFactory,
TelemetryConfiguration telemetryConfiguration)
{
loggerFactory.AddSerilog(app, env, appLifetime, globalSettings, (e) => e.Level >= LogEventLevel.Error);
if(globalSettings.SelfHosted)
{
app.UsePathBase("/admin");
telemetryConfiguration.DisableTelemetry = true;
}
loggerFactory.AddSerilog(app, env, appLifetime, globalSettings, (e) => e.Level >= LogEventLevel.Error);
if(env.IsDevelopment())
{
app.UseDeveloperExceptionPage();

View File

@ -1,4 +1,5 @@
using Microsoft.AspNetCore.Builder;
using Microsoft.ApplicationInsights.Extensibility;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
@ -13,8 +14,10 @@ namespace Bit.Server
public void Configure(
IApplicationBuilder app,
ILoggerFactory loggerFactory,
IConfiguration configuration)
IConfiguration configuration,
TelemetryConfiguration telemetryConfiguration)
{
telemetryConfiguration.DisableTelemetry = true;
loggerFactory
.AddConsole()
.AddDebug();