<?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 Best practices for reviewing platform health in Dynatrace tips</title>
    <link>https://community.dynatrace.com/t5/Dynatrace-tips/Best-practices-for-reviewing-platform-health/m-p/281434#M1853</link>
    <description>&lt;P&gt;Hi everyone,&lt;BR /&gt;I'm currently monitoring with &lt;STRONG&gt;Dynatrace&lt;/STRONG&gt; and would really appreciate any &lt;STRONG&gt;tips or ideas&lt;/STRONG&gt; you could share.&lt;/P&gt;&lt;P&gt;My goal is to build a &lt;STRONG&gt;monthly health check report&lt;/STRONG&gt; to ensure the platform is being used effectively, to optimize performance, and to identify useful insights. Some of the points I plan to include are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Checking if &lt;STRONG&gt;OneAgents&lt;/STRONG&gt; are up to date&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Verifying the status of &lt;STRONG&gt;extensions&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Identifying which &lt;STRONG&gt;services experienced the most issues&lt;/STRONG&gt; during the month&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;If you already perform similar reviews or have suggestions on what else to include, I’d be very grateful to hear from you.&lt;/P&gt;&lt;P&gt;Thanks a lot in advance!&lt;/P&gt;</description>
    <pubDate>Fri, 11 Jul 2025 21:16:35 GMT</pubDate>
    <dc:creator>NicoleMT</dc:creator>
    <dc:date>2025-07-11T21:16:35Z</dc:date>
    <item>
      <title>Best practices for reviewing platform health</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-tips/Best-practices-for-reviewing-platform-health/m-p/281434#M1853</link>
      <description>&lt;P&gt;Hi everyone,&lt;BR /&gt;I'm currently monitoring with &lt;STRONG&gt;Dynatrace&lt;/STRONG&gt; and would really appreciate any &lt;STRONG&gt;tips or ideas&lt;/STRONG&gt; you could share.&lt;/P&gt;&lt;P&gt;My goal is to build a &lt;STRONG&gt;monthly health check report&lt;/STRONG&gt; to ensure the platform is being used effectively, to optimize performance, and to identify useful insights. Some of the points I plan to include are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Checking if &lt;STRONG&gt;OneAgents&lt;/STRONG&gt; are up to date&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Verifying the status of &lt;STRONG&gt;extensions&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Identifying which &lt;STRONG&gt;services experienced the most issues&lt;/STRONG&gt; during the month&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;If you already perform similar reviews or have suggestions on what else to include, I’d be very grateful to hear from you.&lt;/P&gt;&lt;P&gt;Thanks a lot in advance!&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 21:16:35 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-tips/Best-practices-for-reviewing-platform-health/m-p/281434#M1853</guid>
      <dc:creator>NicoleMT</dc:creator>
      <dc:date>2025-07-11T21:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Best practices for reviewing platform health</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-tips/Best-practices-for-reviewing-platform-health/m-p/281444#M1854</link>
      <description>&lt;P&gt;Hey Nicole,&lt;/P&gt;&lt;P&gt;I personally made you a few query's you could use on a dashboard.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Extensions status splitted by name:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;timeseries status = avg(dt.sfm.extension.engine.status), by: { dt.extension.name }, filter: { dt.system.bucket == "dt_system_metrics" }
| sort arrayAvg(status) desc
| limit 20&lt;/LI-CODE&gt;&lt;P&gt;One agent versions on hosts, oldest to newer:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;fetch dt.entity.host
| fieldsAdd installerPotentialProblem, installerVersion, installerSupportAlert, installerTrackedDownload
| sort installerVersion asc&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Identifying which&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;services experienced the most issues&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;during the month&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="javascript"&gt;fetch events
| filter isNotNull(dt.entity.service)
| filter event.category == "ERROR"
| fieldsAdd name = entityName(dt.entity.service)
| makeTimeseries errors=count(), by: {name}&lt;/LI-CODE&gt;&lt;UL&gt;&lt;LI&gt;On a table:&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="javascript"&gt;fetch events, from:bin(now(), 720h)
| filter isNotNull(dt.entity.service)
| filter event.category == "ERROR"
| fieldsAdd name = entityName(dt.entity.service)
| summarize by:{name}, count = count()
| sort count desc​&lt;/LI-CODE&gt;&lt;P&gt;I attached a notebook that you can import to your environment, i think this is solid start point for what you want to achieve.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jul 2025 19:47:11 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-tips/Best-practices-for-reviewing-platform-health/m-p/281444#M1854</guid>
      <dc:creator>Emm4nuel</dc:creator>
      <dc:date>2025-07-12T19:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: Best practices for reviewing platform health</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-tips/Best-practices-for-reviewing-platform-health/m-p/281789#M1855</link>
      <description>&lt;P&gt;Hello, thank you very much. The information is very useful and helpful.&lt;/P&gt;&lt;P&gt;In the case of Dynatrace Managed, this type of query wouldn't be possible to perform, right?&lt;/P&gt;&lt;P&gt;And for mobile and web applications, what kind of queries or charts could be generated to create monthly reports?&lt;/P&gt;&lt;P&gt;Once again, thank you for the information. A very valuable contribution.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jul 2025 19:07:10 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-tips/Best-practices-for-reviewing-platform-health/m-p/281789#M1855</guid>
      <dc:creator>NicoleMT</dc:creator>
      <dc:date>2025-07-17T19:07:10Z</dc:date>
    </item>
  </channel>
</rss>

