-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Changed naming of the output folder to be more compact - Changed names of all report Excel files to be more compact - Added TimeFrame time specifier fixing #107 and #96 - Simplified the configuration of EntityDashboardSelectionCriteria and SnapshotSelectionCriteria - Added better support for sequential processing for debugging everywhere there is Parallel invocations - Removed not-yet-implemented parameters fixing #108 APM Flowmaps Report: - Moved from Entity Metrics report to produce its own file - Added new filter column to identify cross-application calls APM Snapshots: - Removed line number from the FullName column to make Flame Graphs simpler Entity Metric Graphs Report: - Fixed #100 - Only showing last 8 hour time ranges - Added pivot charts for each metric type for all entities - Added Metric Upload metric to extraction - Added Agent Metric Upload to list of default extracted metrics Detected DB Entities Report: - Updated to support Controller 20.4.x changes in the API that support the reports Flame Graphs Report: - Added more namespace mappings and colors - Removed line numbers from the folded call stacks APM Dashboard Screenshots Report: - Added ChromeDriver Version 81 - Removed ChromeDriver Version 79 Tableau Reports: - Added Snapshots fixing #30
- Loading branch information
1 parent
4fb2e72
commit 88bea34
Showing
142 changed files
with
21,362 additions
and
6,578 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file renamed
BIN
+9.67 MB
ChromeDriver/79/linux64/chromedriver → ChromeDriver/81/linux64/chromedriver
Binary file not shown.
Binary file renamed
BIN
+13.8 MB
ChromeDriver/79/mac64/chromedriver → ChromeDriver/81/mac64/chromedriver
Binary file not shown.
Binary file renamed
BIN
+7.38 MB
ChromeDriver/79/win32/chromedriver.exe → ChromeDriver/81/win32/chromedriver.exe
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
DataObjects/CompareStatesConfiguration/CompareTimeRange.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using System; | ||
|
||
namespace AppDynamics.Dexter | ||
{ | ||
public class CompareTimeRange | ||
{ | ||
public int ReferenceSkip { get; set; } | ||
public int ReferenceCompareRanges { get; set; } | ||
public int DifferenceSkipRanges { get; set; } | ||
public int DifferenceConsiderRanges { get; set; } | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
53 changes: 0 additions & 53 deletions
53
DataObjects/JobConfiguration/JobBusinessTransactionType.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using System; | ||
|
||
namespace AppDynamics.Dexter | ||
{ | ||
public class TimeFrame | ||
{ | ||
public string MarkDate { get; set; } | ||
public string MarkTime { get; set; } | ||
public string Duration { get; set; } | ||
|
||
public override string ToString() | ||
{ | ||
return String.Format( | ||
"TimeFrame: {0} {1} {2}", | ||
this.MarkDate, | ||
this.MarkTime, | ||
this.Duration); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.