1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 23:52:50 -05: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();