1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-23 12:31:06 -05:00

add newrelic agent to API

This commit is contained in:
Kyle Spearrin 2020-02-25 14:08:12 -05:00
parent 462303e701
commit 927f073362
2 changed files with 7 additions and 0 deletions

View File

@ -24,6 +24,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.0" /> <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.0" />
<PackageReference Include="NewRelic.Agent" Version="8.24.244" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.0.0-rc5" /> <PackageReference Include="Swashbuckle.AspNetCore" Version="5.0.0-rc5" />
</ItemGroup> </ItemGroup>

6
src/Api/newrelic.config Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0"?>
<configuration xmlns="urn:newrelic-config" agentEnabled="false">
<application></application>
<service licenseKey="SECRET"></service>
<log directory="D:\Home\LogFiles\NewRelic" level="info"></log>
</configuration>