-
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.
- Added Overflow BT contents - Added SEP rules to the detected SEPs Entity Metrics Report: - Fixed flowmap parsing bug which could happen when looking at flowmaps from multiple Controllers and AppID/TierID combinations were not unique Configuration Report: - Added Detected SEPs to the SEP rules report
- Loading branch information
1 parent
e4d9aef
commit af9cd54
Showing
34 changed files
with
2,670 additions
and
1,430 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"Target": [ | ||
{ | ||
"ReferenceController": "https://your.controller.here", | ||
"ReferenceApplication": ".*", | ||
"DifferenceController": "https://your.other.controller.here", | ||
"DifferenceApplication": ".*", | ||
"NameRegex": true, | ||
"Type": "APM" | ||
}, | ||
{ | ||
"ReferenceController": "https://your.controller.here", | ||
"ReferenceApplication": "SpecificApplication", | ||
"DifferenceController": "https://your.controller.here", | ||
"DifferenceApplication": "AnotherSpecificApplication", | ||
"NameRegex": false, | ||
"Type": "APM" | ||
}, | ||
{ | ||
"ReferenceController": "https://your.controller.here", | ||
"ReferenceApplication": "SpecificApplication", | ||
"DifferenceController": "https://your.other.controller.here", | ||
"DifferenceApplication": "AnotherSpecificApplication", | ||
"NameRegex": false, | ||
"Type": "APM" | ||
} | ||
], | ||
"Input": { | ||
"Configuration": true, | ||
"DetectedEntities": true, | ||
"Metrics": true, | ||
"Flowmaps": true, | ||
"Snapshots": true | ||
}, | ||
"Output": { | ||
"Configuration": true, | ||
"DetectedEntities": true, | ||
"EntityMetrics": true, | ||
"EntityMetricGraphs": true, | ||
"Flowmaps": true, | ||
"Snapshots": true, | ||
"FlameGraphs": true | ||
} | ||
} |
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/CompareConfiguration.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.Collections.Generic; | ||
|
||
namespace AppDynamics.Dexter | ||
{ | ||
public class CompareConfiguration | ||
{ | ||
public CompareInput Input { get; set; } | ||
public CompareOutput Output { get; set; } | ||
public List<CompareTarget> Target { get; set; } | ||
public JobStatus Status { get; set; } | ||
} | ||
} |
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,13 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace AppDynamics.Dexter | ||
{ | ||
public class CompareInput | ||
{ | ||
public bool DetectedEntities { get; set; } | ||
public bool Flowmaps { get; set; } | ||
public bool Metrics { get; set; } | ||
public bool Snapshots { get; set; } | ||
public bool Configuration { get; set; } | ||
} | ||
} |
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 @@ | ||
namespace AppDynamics.Dexter | ||
{ | ||
public class CompareOutput | ||
{ | ||
public bool DetectedEntities { get; set; } | ||
public bool EntityMetrics { get; set; } | ||
public bool EntityMetricGraphs { get; set; } | ||
public bool Snapshots { get; set; } | ||
public bool FlameGraphs { get; set; } | ||
public bool Configuration { get; set; } | ||
} | ||
} |
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,53 @@ | ||
namespace AppDynamics.Dexter | ||
{ | ||
public enum CompareStatus | ||
{ | ||
// Compare Steps | ||
CompareAPMConfiguration = 1, | ||
//CompareDBConfiguration = 2, | ||
//CompareWEBConfiguration = 3, | ||
//CompareMOBILEConfiguration = 4, | ||
//CompareBIQConfiguration = 5, | ||
|
||
CompareAPMEntities = 10, | ||
//CompareSIMEntities = 21, | ||
//CompareDBEntities = 22, | ||
//CompareWEBEntities = 23, | ||
//CompareMOBILEEntities = 24, | ||
//CompareBIQEntities = 25, | ||
|
||
CompareAPMMetrics = 20, | ||
//CompareSIMMetrics = 21, | ||
//CompareDBMetrics = 22, | ||
//CompareWEBMetrics = 23, | ||
//CompareMOBILEMetrics = 24, | ||
//CompareBIQMetrics = 25, | ||
|
||
CompareAPMFlowmaps = 30, | ||
|
||
CompareAPMSnapshots = 40, | ||
|
||
// Report steps | ||
ReportConfigurationDifferences = 100, | ||
|
||
ReportAPMEntitiesDifferences = 110, | ||
//ReportSIMEntities = 111, | ||
//ReportDBEntities = 112, | ||
//ReportWEBEntities = 113, | ||
//ReportMOBILEEntities = 114, | ||
//ReportBIQEntities = 115, | ||
|
||
ReportAPMMetricsDifferences = 120, | ||
ReportAPMMetricGraphsDifferences = 121, | ||
|
||
ReportAPMFlowmapsDifferences = 122, | ||
|
||
ReportAPMSnapshotsDifferences = 130, | ||
ReportAPMFlameGraphsDifferences = 132, | ||
|
||
// The rest | ||
Done = 500, | ||
|
||
Error = -1 | ||
} | ||
} |
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,35 @@ | ||
using System; | ||
|
||
namespace AppDynamics.Dexter | ||
{ | ||
public class CompareTarget | ||
{ | ||
public string ReferenceConroller { get; set; } | ||
public string ReferenceApplication { get; set; } | ||
public long ReferenceApplicationID { get; set; } | ||
public string DifferenceController { get; set; } | ||
public string DifferenceApplication { get; set; } | ||
public long DifferenceApplicationID { get; set; } | ||
public bool NameRegex { get; set; } | ||
public string Type { get; set; } | ||
|
||
public CompareTarget Clone() | ||
{ | ||
return (CompareTarget)this.MemberwiseClone(); | ||
} | ||
|
||
public override string ToString() | ||
{ | ||
return String.Format( | ||
"CompareTarget: {0}/{1}({2})[{3}] vs {4}/{5}({6})[{7}]", | ||
this.ReferenceConroller, | ||
this.ReferenceApplication, | ||
this.ReferenceApplicationID, | ||
this.Type, | ||
this.DifferenceController, | ||
this.DifferenceApplication, | ||
this.DifferenceApplicationID, | ||
this.Type); | ||
} | ||
} | ||
} |
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.