mirror of
https://github.com/bitwarden/server.git
synced 2024-11-21 12:05:42 +01:00
Revert "explicitly disable app insights telemetry"
This reverts commit 819a4e031d
.
This commit is contained in:
parent
819a4e031d
commit
6390a15835
@ -2,7 +2,6 @@
|
||||
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;
|
||||
@ -73,17 +72,15 @@ namespace Bit.Admin
|
||||
IHostingEnvironment env,
|
||||
IApplicationLifetime appLifetime,
|
||||
GlobalSettings globalSettings,
|
||||
ILoggerFactory loggerFactory,
|
||||
TelemetryConfiguration telemetryConfiguration)
|
||||
ILoggerFactory loggerFactory)
|
||||
{
|
||||
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();
|
||||
|
@ -1,5 +1,4 @@
|
||||
using Microsoft.ApplicationInsights.Extensibility;
|
||||
using Microsoft.AspNetCore.Builder;
|
||||
using Microsoft.AspNetCore.Builder;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Logging;
|
||||
@ -14,10 +13,8 @@ namespace Bit.Server
|
||||
public void Configure(
|
||||
IApplicationBuilder app,
|
||||
ILoggerFactory loggerFactory,
|
||||
IConfiguration configuration,
|
||||
TelemetryConfiguration telemetryConfiguration)
|
||||
IConfiguration configuration)
|
||||
{
|
||||
telemetryConfiguration.DisableTelemetry = true;
|
||||
loggerFactory
|
||||
.AddConsole()
|
||||
.AddDebug();
|
||||
|
Loading…
Reference in New Issue
Block a user