copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
Solved: DQL+ DPL summarize - Dynatrace Community I'm trying to summarize the count of some exception - everything it's easy but some exception may vary based on some ID contained in the text For example: Inbound processing in endpoint at IOM **** failed with message "Fault:Sequential processing failed for number 0 Exchange [ID-56cdd22f-5910-4be0-5f99-2c2c-1721602311434-40-375098]
Solved: Summarize terms in a record - Dynatrace Community Considering the productID is a field, you can do "| summarize count (), by: {productID} " at the end of your query https: docs dynatrace com docs platform grail dynatrace-query-language commands aggregation-command
Solved: No Data recorded - Dynatrace Community My approach was to get a count from data like this: Each time a message contains “Warning,” the counter increments Now I will use this is as a variable in a normal text field on my dashboard like this: # `$warnCounter` TOTAL WARNINGS
How to use DQL queries - Dynatrace Docs A DQL query is a read-only request to process data and return results The request is stated in plain text, using a pipeline-based data-flow model that is easy to read, author, and automate
Return zero value for summarize count instead of there are no records I want to Return 0 value for summarize count instead of "There are no records" by DQL for custom charts in Latest Dynatrace Dashboard 25 Mar 2025 08:08 AM PFA related example for reference and applying the required changes
DQL commands - Dynatrace Docs Calculates the cardinality of field values that the specified fields have makeTimeseries Creates timeseries from the data in the stream summarize Groups together records that have the same values for a given field and aggregates them
DQL query not working to pull out data from the settings The way to go here is via the configuration API Unfortunately that API is not directly exposed to AppEngine and there are no SDKs available for it You can use the GET all dashboards API call by calling it via the standard fetch () api You need to create a token with the " Read configuration" scope and pass it as header when doing the call
Calculation of Percentage of problems with Summarize in DQL It is possible to approach in 2 way to the problem 1 "Ask again" fetch events | filter event kind == "DAVIS_PROBLEM" | filter event status_transition == "CREATED" | summarize total = count(), by:{event kind} Using lookup command you can add (calculated by another query) total count to each of of rows