Skip to content

Commit

Permalink
Appilcation wide:
Browse files Browse the repository at this point in the history
- Updated to .NET Core 3.1
- Fixed #92

Entity Metric Graphs Report:
- Fixed #88, correcting X/Y axis being flipped on the scatter plot

Configuration Report:
- Refactored SEP Detection and Entry Rule to use different API due to removal of previous API
- Added new column on agent property to indicate built-in or not

Entity Dashboard Screenshots:
- Turned on headless mode for Chrome
- Added configuration comparison for the new rules
- Updted Chrome 78 driver version
- Added Chrome 79 and 80 drivers

Health Check report:
- Added first instance of APM health check
  • Loading branch information
danielodievich committed Dec 21, 2019
1 parent a9837ae commit 3cc2ce4
Show file tree
Hide file tree
Showing 48 changed files with 4,106 additions and 599 deletions.
36 changes: 30 additions & 6 deletions AppDynamics.Dexter.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,18 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Aspose.Words" Version="19.10.0" />
<PackageReference Include="Aspose.Words" Version="19.12.0" />
<PackageReference Include="CommandLineParser" Version="2.6.0" />
<PackageReference Include="CsvHelper" Version="7.1.1" />
<PackageReference Include="EPPlus" Version="4.5.3" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
<PackageReference Include="NLog" Version="4.6.7" />
<PackageReference Include="NLog.Config" Version="4.6.7" />
<PackageReference Include="NLog.Schema" Version="4.6.7" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="NLog" Version="4.6.8" />
<PackageReference Include="NLog.Config" Version="4.6.8" />
<PackageReference Include="NLog.Schema" Version="4.6.8" />
<PackageReference Include="runtime.osx.10.10-x64.CoreCompat.System.Drawing" Version="5.8.64" />
<PackageReference Include="Selenium.Support" Version="3.141.0" />
<PackageReference Include="Selenium.WebDriver" Version="3.141.0" />
<PackageReference Include="System.Drawing.Common" Version="4.6.0" />
<PackageReference Include="System.Drawing.Common" Version="4.7.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup>

Expand All @@ -72,6 +72,30 @@
</ItemGroup>

<ItemGroup>
<None Update="ChromeDriver\79\linux64\chromedriver">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="ChromeDriver\79\mac64\chromedriver">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="ChromeDriver\79\win32\chromedriver.exe">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="ChromeDriver\80\linux64\chromedriver">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="ChromeDriver\80\mac64\chromedriver">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="ChromeDriver\80\win32\chromedriver.exe">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="EmptyConfig\reference.controller\EmptyAPM.0\CFG\seps.detection.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="HealthCheckSettingMapping.csv">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="LinksToApplicationsDashboardsTemplate.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
Expand Down
Loading

0 comments on commit 3cc2ce4

Please sign in to comment.