-
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.
- Upgraded app to .NET Core 3.0 - Added controller version parsing to the Targets - Added proxy config script information to the web.config for the full framework Detected WEB Entities Report: - WEB EUM performance report on 4.5.13 was missing performance data due to missing JSON parameter on the inbound API payload (fixed #81) Configuration Report: - Addes fixed to make WEB Synthetic jobs report on controllers >=4.5.13 - Added IsBuiltIn column to BT Entry Points and BT Entry Point 2.0 rule - Fixed #84 with IsBuiltIn lookup column added Detected DB Entities Report: - Refactored version comparison for 4.4 and 4.5 controller version logic Flame Graph Report: - Added RabbitMQ colors Entity Dashboard Screenshots: - Added reports with screenshot taking using ChromeDriver on Windows and Mac Events Report: - Fixed #83 by removing SYSTEM_EVENT type from Events
- Loading branch information
1 parent
0ac6002
commit afd0a18
Showing
58 changed files
with
3,126 additions
and
127 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 not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,54 @@ | ||
namespace AppDynamics.Dexter | ||
{ | ||
/// <summary> | ||
/// codebase\controller\controller-api\agent\src\main\java\com\singularity\ee\controller\api\dto\transactionmonitor\TransactionExitPointType.java | ||
/// </summary> | ||
public class JobBackendType | ||
{ | ||
public bool All { get; set; } | ||
|
||
// Common Across Runtimes | ||
public bool SOCKET { get; set; } | ||
public bool HTTP { get; set; } | ||
public bool CUSTOM { get; set; } | ||
public bool CUSTOM_ASYNC { get; set; } | ||
public bool FILE_SERVER { get; set; } | ||
public bool MAIL_SERVER { get; set; } | ||
public bool WEB_SERVICE { get; set; } | ||
public bool ERP { get; set; } | ||
public bool CACHE { get; set; } | ||
public bool WEBSPHERE_MQ { get; set; } | ||
public bool MAINFRAME { get; set; } | ||
public bool TIBCO_ASYNC { get; set; } | ||
public bool TIBCO { get; set; } | ||
public bool ESB { get; set; } | ||
public bool SAP { get; set; } | ||
public bool AVRO { get; set; } | ||
public bool THRIFT { get; set; } | ||
public bool CASSANDRA { get; set; } | ||
public bool MQ { get; set; } | ||
public bool JMS { get; set; } | ||
public bool WEBSOCKET { get; set; } | ||
|
||
// Java Only | ||
public bool JDBC { get; set; } | ||
public bool RMI { get; set; } | ||
public bool LDAP { get; set; } | ||
public bool CORBA { get; set; } | ||
public bool RABBITMQ { get; set; } | ||
|
||
// .NET Only | ||
public bool ADODOTNET { get; set; } | ||
public bool DOTNETDirectoryServices { get; set; } | ||
public bool DOTNETRemoting { get; set; } | ||
public bool DOTNETMessaging { get; set; } | ||
public bool WCF { get; set; } | ||
public bool MSMQ { get; set; } | ||
|
||
// PHP specific | ||
public bool DB { get; set; } | ||
|
||
// network stats | ||
public bool NETWORK { get; set; } | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
DataObjects/JobConfiguration/JobEntityDashboardSelectionCriteria.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,14 @@ | ||
namespace AppDynamics.Dexter | ||
{ | ||
public class JobEntityDashboardSelectionCriteria | ||
{ | ||
public string[] Tiers { get; set; } | ||
public JobTierType TierType { get; set; } | ||
public string[] Nodes { get; set; } | ||
public JobTierType NodeType { get; set; } | ||
public string[] BusinessTransactions { get; set; } | ||
public JobBusinessTransactionType BusinessTransactionType { get; set; } | ||
public string[] Backends { get; set; } | ||
public JobBackendType BackendType { 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
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
Oops, something went wrong.