03 Sep 2025 02:44 PM
Hi,
I was trying to download some problems but data is limited to 1000:
Any way to bypass this? If you need to download more than 1000 rows, do you need to use DQL or API?
Thank you!
Best regards
Solved! Go to Solution.
03 Sep 2025 11:56 PM
@AntonPineiro 1000 seems to be the default limit for problems app , DQL would be the next best option.
https://docs.dynatrace.com/docs/shortlink/davis-ai-problems-app
04 Sep 2025 08:01 AM - edited 04 Sep 2025 08:03 AM
Hi,
Thank you! I was trying to find that in the documentation but I was not able.
I have just used DQL then:
fetch dt.davis.problems
| filter matchesPhrase(labels.alerting_profile, "XXXXX")
| fieldsKeep event.name
| summarize count = count(), by:{event.name}
| sort count desc
Best regards