<?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: monitoredEntitiesMonitoringStateClient - Simple visualization to get PGI by state in Developer Q&amp;A Forum</title>
    <link>https://community.dynatrace.com/t5/Developer-Q-A-Forum/monitoredEntitiesMonitoringStateClient-Simple-visualization-to/m-p/209998#M280</link>
    <description>&lt;P&gt;Thank you! I was missing the entitySelector literal, thus not working!&lt;BR /&gt;Just tested an is working as well! Many thanks!!!&lt;/P&gt;</description>
    <pubDate>Mon, 17 Apr 2023 15:05:16 GMT</pubDate>
    <dc:creator>arturo_mondelo</dc:creator>
    <dc:date>2023-04-17T15:05:16Z</dc:date>
    <item>
      <title>monitoredEntitiesMonitoringStateClient - Simple visualization to get PGI by state</title>
      <link>https://community.dynatrace.com/t5/Developer-Q-A-Forum/monitoredEntitiesMonitoringStateClient-Simple-visualization-to/m-p/209790#M278</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I'm trying to use the&amp;nbsp;monitoredEntitiesMonitoringStateClient (&lt;A href="https://developer.dynatrace.com/reference/sdks/client-classic-environment-v2/#getstates" target="_self"&gt;Classic Environment V2 | Dynatrace Developer)&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;But i'm getting a 540 error running in a Notebook, while using others (like problemsClient) from the same sdk is just working properly. How can troubleshoot further whats going on? Is there any place to get more details around the errors?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2023 13:31:34 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Developer-Q-A-Forum/monitoredEntitiesMonitoringStateClient-Simple-visualization-to/m-p/209790#M278</guid>
      <dc:creator>arturo_mondelo</dc:creator>
      <dc:date>2023-05-02T13:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: monitoredEntitiesMonitoringStateClient - Simple visualization to get PGI by state</title>
      <link>https://community.dynatrace.com/t5/Developer-Q-A-Forum/monitoredEntitiesMonitoringStateClient-Simple-visualization-to/m-p/209962#M279</link>
      <description>&lt;P&gt;Can you provide your example please?&lt;BR /&gt;I tested following example which works.&lt;/P&gt;
&lt;PRE&gt;import { monitoredEntitiesMonitoringStateClient } from '@dynatrace-sdk/client-classic-environment-v2';&lt;BR /&gt;export default async function () {&lt;BR /&gt;   return await monitoredEntitiesMonitoringStateClient.getStates({ entitySelector: 'type("PROCESS_GROUP_INSTANCE")'});&lt;BR /&gt;}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 08:39:09 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Developer-Q-A-Forum/monitoredEntitiesMonitoringStateClient-Simple-visualization-to/m-p/209962#M279</guid>
      <dc:creator>s_wasserbauer</dc:creator>
      <dc:date>2023-04-17T08:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: monitoredEntitiesMonitoringStateClient - Simple visualization to get PGI by state</title>
      <link>https://community.dynatrace.com/t5/Developer-Q-A-Forum/monitoredEntitiesMonitoringStateClient-Simple-visualization-to/m-p/209998#M280</link>
      <description>&lt;P&gt;Thank you! I was missing the entitySelector literal, thus not working!&lt;BR /&gt;Just tested an is working as well! Many thanks!!!&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 15:05:16 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Developer-Q-A-Forum/monitoredEntitiesMonitoringStateClient-Simple-visualization-to/m-p/209998#M280</guid>
      <dc:creator>arturo_mondelo</dc:creator>
      <dc:date>2023-04-17T15:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: monitoredEntitiesMonitoringStateClient - Simple visualization to get PGI by state</title>
      <link>https://community.dynatrace.com/t5/Developer-Q-A-Forum/monitoredEntitiesMonitoringStateClient-Simple-visualization-to/m-p/210008#M281</link>
      <description>&lt;P&gt;This monitoring state client really does not have pagination support or filtering on states which are not ok? I could not find any way how to use it effectively in a larger environment (&amp;gt;500 PGI) since the API returns 500 results at maximum.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 15:43:32 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Developer-Q-A-Forum/monitoredEntitiesMonitoringStateClient-Simple-visualization-to/m-p/210008#M281</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2023-04-17T15:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: monitoredEntitiesMonitoringStateClient - Simple visualization to get PGI by state</title>
      <link>https://community.dynatrace.com/t5/Developer-Q-A-Forum/monitoredEntitiesMonitoringStateClient-Simple-visualization-to/m-p/210009#M282</link>
      <description>&lt;P&gt;You can return the PGI with unhealthy states, with:&lt;/P&gt;
&lt;P&gt;import { monitoredEntitiesMonitoringStateClient } from '@dynatrace-sdk/client-classic-environment-v2';&lt;BR /&gt;export default async function () {&lt;BR /&gt;return monitoredEntitiesMonitoringStateClient.getStates({entitySelector: 'type("PROCESS_GROUP_INSTANCE"),healthState("UNHEALTHY")'});&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 15:49:54 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Developer-Q-A-Forum/monitoredEntitiesMonitoringStateClient-Simple-visualization-to/m-p/210009#M282</guid>
      <dc:creator>arturo_mondelo</dc:creator>
      <dc:date>2023-04-17T15:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: monitoredEntitiesMonitoringStateClient - Simple visualization to get PGI by state</title>
      <link>https://community.dynatrace.com/t5/Developer-Q-A-Forum/monitoredEntitiesMonitoringStateClient-Simple-visualization-to/m-p/210015#M283</link>
      <description>&lt;P&gt;Well, this does not work the expected way.&amp;nbsp;I've never seen any entity in any environment in the UNHEALTH healthState.&lt;BR /&gt;&lt;BR /&gt;For example in the demo live environment, this returns empty result with querying the UNHEALTHY state, but there are process groups having issue (state: "WARNING").&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 16:11:16 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Developer-Q-A-Forum/monitoredEntitiesMonitoringStateClient-Simple-visualization-to/m-p/210015#M283</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2023-04-17T16:11:16Z</dc:date>
    </item>
  </channel>
</rss>

