Discussion Feed
07-18-2018
01:25 PM
1 Kudo
This query will give the you start time used in the query, the end time, application name, number of nodes per application, and number of metrics per application.
SELECT from_unixtime(ts_min*60), NOW(), a.name AS application_name, count(distinct(mm.node_id)), count(*) FROM metricdata_min AS mm, application AS a
WHERE ts_min > (SELECT max(ts_min) - 2 FROM metricdata_min) AND ts_min < (SELECT max(ts_min) FROM metricdata_min) AND a.id = mm.application_id GROUP BY application_name, 1 ORDER BY 1;
... View more
04-11-2018
09:03 AM
That query will give us the number of nodes per application. For .NET applications the number of nodes does not always equal the number of licenses used, correct?
... View more
04-02-2018
08:49 AM
1 Kudo
Have you gone over the documentation already on how to do this? https://docs.appdynamics.com/display/PRO44/Configuration+Import+and+Export+API#ConfigurationImportandExportAPI-ExportHealthRulesfromanApplication
You will have to create a user with a password. Here is an example command with the username of restapiuser, and other generic vales in the needed fields.
curl -s --user restapiuser@customer1:password "http://controllerHost:8090/controller/healthrules/AppName" > AppNameHealthRules.out
... View more
11-16-2017
12:15 PM
Is there anyway to get around the backend registration limit of 300 for an agent? I have a project that has around 600 web services it connects to, and they do not want to group them with discovery rules. Thanks!
... View more
10-26-2017
07:01 AM
It does show up there, but it also shows up in another Tier as well. Do the node names have to be unique, even if they are in different Tiers?
... View more
10-25-2017
09:15 AM
Here are the results-----
mysql> select acc.id acc_id, acc.name acc_name, app.id app_id, app.name app_name, tier.id tier_id, tier.name tier_name, node.id node_id, node.name node_name from account acc, application app, application_component tier, application_component_node node where acc.id = app.account_id and app.id = tier.application_id and tier.id = node.application_component_id and node.id in (2049); +--------+-----------+--------+----------+---------+-----------+---------+-----------+ | acc_id | acc_name | app_id | app_name | tier_id | tier_name | node_id | node_name | +--------+-----------+--------+----------+---------+-----------+---------+-----------+ | 2 | customer1 | 45 | FSC-Prod | 644 | SOA-RAS | 2049 | SOA11 | +--------+-----------+--------+----------+---------+-----------+---------+-----------+ 1 row in set (0.00 sec)
mysql> select id,name from application_component_node where id in (2049); +------+-------+ | id | name | +------+-------+ | 2049 | SOA11 | +------+-------+
... View more
10-24-2017
10:16 AM
The best thing I could come up with (actually a support case) is the VMWare setup and resources are insufficent for the server the Controller is runnng on. It is weird to me that the JMX metrics would be the major victim, and possible these other error messages that are occuring.
In any event, having the description for the error ids would be helpful.
... View more
10-23-2017
03:21 PM
There are about 100 nodes that are "Skipped." Heap usage, Averate Response Time, Errors, and other metrics are coming in consistently, but JMX metrics are inconsistent. I am wondering if those messages are related to the JMX metrics? The JMX metrics seem to be coming in only about a half hour in the middle of the night.
... View more
10-23-2017
02:17 PM
Is there a document out there that describes the error IDs we see in the logs. I'm hoping for more infomation that what is printed in the log. For example:
ID000062 metric 532047 not found
ID000228 Skip the node : 2049, nodeE.isAppAgentPresent is : true, appAgentNodes is : false
Why can't a metric be found? why would a node be skipped? What is being skipped? etc.
... View more
Latest Activity
- Got a Kudo for Re: extract overall all configured alerts(Health Rule) in AppDynamics. 02-11-2020 02:29 PM
- Got a Kudo for Re: View total number of metrics/minute the Controller is collecting. 07-18-2018 02:27 PM
- Posted Re: View total number of metrics/minute the Controller is collecting on Controller (SaaS, On Premise). 07-18-2018 01:25 PM
- Kudoed How do I resolve an inconsistent module state while starting Controller services? for Ravi.Biradar. 05-04-2018 01:51 PM
- Posted Re: How to find license usage by applications for each controller on Knowledge Base. 04-11-2018 09:03 AM
- Posted Re: extract overall all configured alerts(Health Rule) in AppDynamics on Controller (SaaS, On Premise). 04-02-2018 08:49 AM
- Posted Anyway to get around the Backend Registration Limit of 300 for an Agent? on Java (Java Agent, Installation, JVM, and Controller Installation). 11-16-2017 12:15 PM
- Posted Re: Error ID descriptions on Controller (SaaS, On Premise). 10-26-2017 12:01 PM
- Posted Re: Error ID descriptions on Controller (SaaS, On Premise). 10-26-2017 07:01 AM
- Posted Re: Error ID descriptions on Controller (SaaS, On Premise). 10-25-2017 09:15 AM
- Posted Re: Error ID descriptions on Controller (SaaS, On Premise). 10-24-2017 10:16 AM
- Posted Re: Error ID descriptions on Controller (SaaS, On Premise). 10-23-2017 03:21 PM
- Posted Error ID descriptions on Controller (SaaS, On Premise). 10-23-2017 02:17 PM
- Posted View total number of metrics/minute the Controller is collecting on Controller (SaaS, On Premise). 09-11-2017 02:11 PM
- Posted Re: Not seeing metrics from any machine-agent on Infrastructure (Server, Network, Database). 08-30-2017 07:12 AM
- Posted Re: Encrypted Access Key on Controller (SaaS, On Premise). 06-13-2017 02:11 PM
- Posted Encrypted Access Key on Controller (SaaS, On Premise). 06-12-2017 03:07 PM
- Posted Re: Not seeing metrics from any machine-agent on Infrastructure (Server, Network, Database). 06-07-2017 01:32 PM
- Posted Re: JMX stuckthreads metric? on Java (Java Agent, Installation, JVM, and Controller Installation). 06-06-2017 08:57 AM
- Posted JMX stuckthreads metric? on Java (Java Agent, Installation, JVM, and Controller Installation). 06-01-2017 06:55 AM
Community Stats
Date Registered | 10-17-2013 01:25 PM |
Date Last Visited | 08-23-2018 11:20 AM |
Total Messages Posted | 25 |
Total Kudos Received | 2 |