<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Dashboard/Data explorer tips - volume 1 in Dashboarding</title>
    <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/188560#M2390</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/23400"&gt;@zietho&lt;/a&gt;&amp;nbsp; This will help in release comparison for our clients where weekly release are getting deployed &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 16 Jun 2022 06:14:18 GMT</pubDate>
    <dc:creator>techean</dc:creator>
    <dc:date>2022-06-16T06:14:18Z</dc:date>
    <item>
      <title>Dashboard and Data Explorer tips</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/179979#M2169</link>
      <description>&lt;P&gt;For quite some time I was thinking about putting together a few things I've learned and come across regularly, since I joined the Dashboarding and Data explorer band wagon.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So&amp;nbsp;rather than wait until I get the time to write a proper blog post, I thought why not start small and iterate. So here we are:&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="5"&gt;Shift the timeframe for&amp;nbsp;&lt;STRONG&gt;METRICs relative to the selected timeframe &lt;/STRONG&gt;(aka :timeshift transformation)&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;Something we even documented by now, pls check out&amp;nbsp;&lt;A href="https://www.dynatrace.com/support/help/shortlink/explorer-advanced-query-editor#example-compare-a-metric-to-a-previous-timeframe" target="_blank" rel="noopener"&gt;https://www.dynatrace.com/support/help/shortlink/explorer-advanced-query-editor#example-compare-a-metric-to-a-previous-timeframe&lt;/A&gt;&amp;nbsp;and let us know whether something isn't clear or missing.&lt;/P&gt;
&lt;P&gt;The &lt;STRONG&gt;TLTR&lt;/STRONG&gt;; with the :timeshift transformation in the Data explorer code mode you can shift single metrics in comparison to others. So that on a dashboard you choose last 7 days, for example, your first metric (line) shows you the traffic from this week, while your shifted metric 2 shows you the line from last week. Both use the global timeframe selector as a reference and both metrics (shifted and unshifted) dynamically change based on that.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;When to use the :timeshift transformation?&lt;/STRONG&gt; When you want to compare two or more metrics for a different timeframe in a single visualization. E.g in a graph/line chart.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A &lt;STRONG&gt;static shift&lt;/STRONG&gt; would be to use the &lt;STRONG&gt;TILE&lt;/STRONG&gt; &lt;STRONG&gt;settings&lt;/STRONG&gt; on the dashboard tile, where you define either a certain timeframe or relative timeframe for the whole tile. This applies to all metrics in that tile.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;When to use the tile settings: &lt;/STRONG&gt;When you need different timeframes for different visualizations. E.g. State visualizations (last day, last 2 h,...) vs. trend based visualizations (last 30 days) on the same dashboard. Tip: obviously querying smaller timeframes should also be more performant, so you might end up&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="5"&gt;&lt;STRONG&gt;Working with rates&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;Sometimes you are not interested in the absolute count but in the rate (common for APM cases). This is how you can transform it:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The &lt;STRONG&gt;original metric&lt;/STRONG&gt;:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;builtin:apps.web.actionCount.category:splitBy():sum:auto:sort(value(sum,descending)):limit(10)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The :&lt;STRONG&gt;rate transformation&lt;/STRONG&gt; applied, tells the Metrics API, pls transform this to a per minute number, so you don't have to do the math. Tipp: should your metric not support rate automatically (its no number by default) than &lt;STRONG&gt;use :auto:rate(&lt;/STRONG&gt;..) to fix it.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;builtin:apps.web.actionCount.category:splitBy():sum:auto:sort(value(sum,descending)):limit(10):rate(1m)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Finally &lt;STRONG&gt;:toUnit&lt;/STRONG&gt; (silently available since 1.228) to set the unit accordingly and have the beloved /m... in the charts&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;builtin:apps.web.actionCount.category:splitBy():sum:auto:sort(value(sum,descending)):limit(10):rate(1m):toUnit(PerMinute,PerMinute) &lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The result:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="zietho_0-1643811997056.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/4272iA75FABDFBE78DA31/image-size/medium?v=v2&amp;amp;px=400" role="button" title="zietho_0-1643811997056.png" alt="zietho_0-1643811997056.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="5"&gt;Sort by (metric entity) names instead of their values&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sometimes you want to sort your visualization results, for example in a table or heatmap, alphabetically rather than according to the values in case you used split by.&lt;/P&gt;
&lt;P&gt;Let's look at an easy example:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Sorted by name:&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;add&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;:names right&lt;/STRONG&gt;&amp;nbsp;after the metric name&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Split by "dt.entity..... &lt;STRONG&gt;.name&lt;/STRONG&gt;" (you can also split by only the entity to get the drill down link, for example in a table.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;change &lt;STRONG&gt;:sort&lt;/STRONG&gt;&amp;nbsp;to dimension(dt.entity.... &lt;STRONG&gt;.name&lt;/STRONG&gt;, [ascending/descending])&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="zietho_0-1661159590154.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/7204iE107D3EFDEFD52EC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="zietho_0-1661159590154.png" alt="zietho_0-1661159590154.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Note: we treat upper- and lower-case differently and sort them one after the other. So don't be surprised to see, for instance, something like:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN&gt;Adelaide&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;Berlin&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Cleveland ... but then&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;atlanta&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;boston&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;c...&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Sorting by value&lt;/STRONG&gt; (out of the box default):&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="zietho_1-1661164024145.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/7213i0281101C9DF16CF9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="zietho_1-1661164024145.png" alt="zietho_1-1661164024145.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="5"&gt;Searching metrics made easy with additional search terms&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;While with Custom charting we provided a naive matching between the metric key and the "category" of our metrics, I'd argue you can do pretty much the same with the Data explorer and probably most of you just don't know this yet! But let's talk examples:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;E.g. when you look for certain "application" metrics you sometimes end up with "premature" results like the following:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="zietho_0-1644264120092.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/4320i2B7F9B0D24ECD059/image-size/medium?v=v2&amp;amp;px=400" role="button" title="zietho_0-1644264120092.png" alt="zietho_0-1644264120092.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Since the search term provided is matched against the display name as well as the key by &lt;STRONG&gt;adding additional words like, app or web&lt;/STRONG&gt; will do the trick here and only display you the desired and relevant builtin metrics. This of course works for all others - e.g. add additional words like "services".. or "process" or any other entity type to refine your search result and get to relevant metrics faster.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="zietho_1-1644264148784.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/4321i5FD5463F5251F5F8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="zietho_1-1644264148784.png" alt="zietho_1-1644264148784.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H2&gt;Replacing missing values like a bo$$&lt;/H2&gt;
&lt;P&gt;&lt;STRONG&gt;The basis&lt;/STRONG&gt; a synthetic-based event metric:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-02-07 at 21.24.16.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/4322i731D362E6382D113/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2022-02-07 at 21.24.16.png" alt="Screenshot 2022-02-07 at 21.24.16.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Naive missing value replacement strategy&lt;/STRONG&gt; - connect gaps (use build mode):&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-02-07 at 21.24.30.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/4323iFCB4CC7C5A030707/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2022-02-07 at 21.24.30.png" alt="Screenshot 2022-02-07 at 21.24.30.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What if you want to &lt;STRONG&gt;set all missing values to 0&lt;/STRONG&gt;? Easy with the &lt;STRONG&gt;code&lt;/STRONG&gt;&lt;STRONG&gt;&amp;nbsp;mode and the :default() transformation.&amp;nbsp;&lt;A href="https://www.dynatrace.com/support/help/shortlink/api-metrics-v2-selector#default" target="_blank" rel="noopener"&gt;https://www.dynatrace.com/support/help/shortlink/api-metrics-v2-selector#default&lt;/A&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Note: &lt;/STRONG&gt;only replaces all null values with 0, in the series, if at least one data point exists within the selected timeframe.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-02-07 at 21.25.31.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/4324iA0EBFC41CCAF3824/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2022-02-07 at 21.25.31.png" alt="Screenshot 2022-02-07 at 21.25.31.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="5"&gt;Advanced filtering with code mode&amp;nbsp;&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;I often come across the request to filter all entities that don't match a certain name.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use &lt;STRONG&gt;not&amp;nbsp;&lt;/STRONG&gt;and other suitable conditions of the entity selector to efficiently narrow them down or to remove them. Let's look at an example:&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;For builtin metrics when you need to use the entity name&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;Where we usually use "ids" instead of "names" you would use the entity selector.&lt;/P&gt;
&lt;P&gt;For example, to get a honeycomb for the Response time of all our "Web" services, indicated by Web at the beginning of their names, we could do the following:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="c-mrkdwn__pre" data-stringify-type="pre"&gt;builtin:service.response.time&lt;BR /&gt;:splitBy("dt.entity.service")&lt;BR /&gt;:&lt;STRONG&gt;filter&lt;/STRONG&gt;(&lt;BR /&gt;  &lt;STRONG&gt;in&lt;/STRONG&gt;(&lt;BR /&gt;    dt.entity.service, &lt;BR /&gt;    entitySelector("type(SERVICE),&lt;STRONG&gt;entityName.startsWith&lt;/STRONG&gt;(Web)")&lt;BR /&gt;  )&lt;BR /&gt;)&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="zietho_0-1657898221216.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/6622i511DC226797C1631/image-size/medium?v=v2&amp;amp;px=400" role="button" title="zietho_0-1657898221216.png" alt="zietho_0-1657898221216.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;while without the filter, we'd get&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="zietho_1-1657898252687.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/6623iC0A5AD40A932E117/image-size/medium?v=v2&amp;amp;px=400" role="button" title="zietho_1-1657898252687.png" alt="zietho_1-1657898252687.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H3&gt;For your own ingested metrics&amp;nbsp;&lt;/H3&gt;
&lt;P&gt;you can leverage the simpler syntax without an entity selector like&lt;/P&gt;
&lt;PRE class="c-mrkdwn__pre" data-stringify-type="pre"&gt;weather.info.temperature
:splitBy("station")
:filter(prefix("station","EU-"))&lt;/PRE&gt;
&lt;H2&gt;Can I show the host for a PGI?&amp;nbsp;&lt;/H2&gt;
&lt;P&gt;Yes, you (code mode) can!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. add :parents after the metrics name&lt;/P&gt;
&lt;P&gt;2. add the desired dimension, in this case "dt.entity.host", to the splitBy&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="zietho_0-1657812763872.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/6591iDAC44C8C030623DF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="zietho_0-1657812763872.png" alt="zietho_0-1657812763872.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;How can I get a hive with more than 100 honeycombs?&lt;/H2&gt;
&lt;P&gt;You previously created a honeycomb but were bothered by the fact that the max limit of 100 is limiting your bird's eye view? Well, that's the solution:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Pick a metric of your choice (e.g., Response time - a service metric)&lt;/P&gt;
&lt;P&gt;2. Use the desired splitBy criteria (e.g. Service)&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. Select Honeycomb in the visualization&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4. Switch to Code mode and inside limit(&lt;STRONG&gt;100&lt;/STRONG&gt;) replace the number with a higher one. For example 5000.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Voila. almost 2.5K services at a glance.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image (1).png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/6620i840DC2358018F9D3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="image (1).png" alt="image (1).png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;regards&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thomas&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2023 13:25:37 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/179979#M2169</guid>
      <dc:creator>zietho</dc:creator>
      <dc:date>2023-05-30T13:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard/Data explorer tips - volume 1</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/183777#M2258</link>
      <description>&lt;P&gt;This is great! thanks&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/23400"&gt;@zietho&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 13:40:54 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/183777#M2258</guid>
      <dc:creator>ChadTurner</dc:creator>
      <dc:date>2022-03-31T13:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard/Data explorer tips - volume 1</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/188548#M2388</link>
      <description>&lt;P&gt;Thanks for this! We're using code more and more and examples of specific use cases is of great help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Special request for volume 2 (which I hope is coming soon): filter on relations (example: response time of all the services related to a specific process group).&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2022 20:07:26 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/188548#M2388</guid>
      <dc:creator>AlanZ</dc:creator>
      <dc:date>2022-06-15T20:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard/Data explorer tips - volume 1</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/188560#M2390</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/23400"&gt;@zietho&lt;/a&gt;&amp;nbsp; This will help in release comparison for our clients where weekly release are getting deployed &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 06:14:18 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/188560#M2390</guid>
      <dc:creator>techean</dc:creator>
      <dc:date>2022-06-16T06:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard/Data explorer tips - volume 1</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/188562#M2391</link>
      <description>&lt;P&gt;The advanced filtering capabilities are really cool indeed. Especially when you get familiar with the entity selectors.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;For example, the following query will show you the failure of services which are called from services running in a process group named prodCluster tagged with a tag named TAG1. Such queries are really cool with honeycomb visualizations.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;builtin:service.errors.total.rate
:splitBy("dt.entity.service")
:filter(in("dt.entity.service",entitySelector("type(SERVICE),toRelationships.calls(type(SERVICE),tag(TAG1),fromRelationships.runsOn(type(PROCESS_GROUP),entityName(prodCluster)))")))
:avg
:auto
:sort(value(avg,descending))
:limit(100)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 06:21:38 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/188562#M2391</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2022-06-16T06:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard/Data explorer tips</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/193056#M2466</link>
      <description>&lt;P&gt;Added &lt;STRONG&gt;"Sort by (metric entity) names instead of their values", &lt;/STRONG&gt;long needed and often asked. Yes, we plan to add this to build mode ;)!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2022 10:33:07 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/193056#M2466</guid>
      <dc:creator>zietho</dc:creator>
      <dc:date>2022-08-22T10:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard/Data explorer tips</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/194445#M2502</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/23400"&gt;@zietho&lt;/a&gt;&amp;nbsp;Hello and thank you for your post! Right now I'm running into an issue where I'm unable to increase the returned information past 100 despite using the code tab. Any ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DynaLou_0-1663177973030.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/7572iDDDC1C1405CEBC94/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DynaLou_0-1663177973030.png" alt="DynaLou_0-1663177973030.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2022 17:53:14 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/194445#M2502</guid>
      <dc:creator>DynaLou</dc:creator>
      <dc:date>2022-09-14T17:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard/Data explorer tips</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/198514#M2604</link>
      <description>&lt;P&gt;Great work.&amp;nbsp; I used this to figure what services in our tenants have Key Requests and put a key request and service together.&amp;nbsp; Of course, I have used for other things also.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Nov 2022 18:54:14 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/198514#M2604</guid>
      <dc:creator>Kenny_Gillette</dc:creator>
      <dc:date>2022-11-16T18:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard/Data explorer tips</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/198516#M2605</link>
      <description>&lt;P&gt;Sorry I totally missed this! Did you try it for honeycombs? And it only works from a certain version onwards. Did it work in the meantime?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Nov 2022 19:51:20 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/198516#M2605</guid>
      <dc:creator>zietho</dc:creator>
      <dc:date>2022-11-16T19:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard/Data explorer tips</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/198869#M2608</link>
      <description>&lt;P&gt;No worries, and thank you for the reply. Yes, I believe this has to do with the version of DT we're on. Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 21 Nov 2022 16:54:10 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/198869#M2608</guid>
      <dc:creator>DynaLou</dc:creator>
      <dc:date>2022-11-21T16:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard and Data Explorer tips</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/234702#M3621</link>
      <description>&lt;P&gt;thanks for sharing this tips&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 07:47:34 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboard-and-Data-Explorer-tips/m-p/234702#M3621</guid>
      <dc:creator>gbaudart</dc:creator>
      <dc:date>2024-01-18T07:47:34Z</dc:date>
    </item>
  </channel>
</rss>

