cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The AppDynamics Community is Migrating this Friday, February 28th.


At 6pm PST, the AppDynamics Community will go into read-only mode and after migration is complete, you will be redirected to community.splunk.com.
Read more here


How to create an Analytic query that would show the top 5 Business Transactions with Error counts?

Tom.Davison
Producer

Hello,

 

I am trying to create an Analytic query that would show the top 5 BTs with Error counts.

 

e.g.

 

TransactionName  3

 

I'm not great at building SQL or Analytics queries. : )

 

Thanks for any help, much appreciated.

Tom 

2 REPLIES 2

Mario.Morelli
Architect

Hi Tom

 

You can do it this way

 

SELECT transactionName, count(*) AS "Counts" FROM transactions WHERE userExperience = "ERROR" ORDER BY Counts DESC LIMIT 5

 

This would be across all applications, you can put in additional filters if you want to limit it to a specific application etc.

 

Ciao



Found something helpful? Click the Accept as Solution button to help others find answers faster.
Liked something? Click the Thumbs Up button.

Learn more about me in the Community Member Spotlight Q & A

Thank you very much for the Solution on this.  Very much appreciated.

 

Thanks,

Tom

Ask the Experts Session: Hybrid Application Monitoring Deployment

Join us on Feb 26 to explore Splunk AppDynamics deployment strategies, SaaS models, agent rollout plans, and expert best practices.


Register Now

Observe and Explore
Dive into our Community Blog for the Latest Insights and Updates!


Read the blog here
Top Kudoed Authors