<?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: state of nodes in Alerting</title>
    <link>https://community.dynatrace.com/t5/Alerting/state-of-nodes/m-p/113566#M1007</link>
    <description>Also, if you have or can create a health check API you can use it to send events to Dynatrace via our Events API.&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jun 2020 19:31:54 GMT</pubDate>
    <dc:creator>dave_mauney</dc:creator>
    <dc:date>2020-06-11T19:31:54Z</dc:date>
    <item>
      <title>state of nodes</title>
      <link>https://community.dynatrace.com/t5/Alerting/state-of-nodes/m-p/113564#M1005</link>
      <description>&lt;P&gt;Hi everyone, is there any way to validate the state (started,stopped,failed,restarted) from the api nodes of the applications?&lt;/P&gt;&lt;P&gt;I'm asking this because when some nodes are turned off or stopped, Davis doesn't give any alert.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot, regards!!&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2020 19:14:20 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Alerting/state-of-nodes/m-p/113564#M1005</guid>
      <dc:creator>alangdima</dc:creator>
      <dc:date>2020-06-11T19:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: state of nodes</title>
      <link>https://community.dynatrace.com/t5/Alerting/state-of-nodes/m-p/113565#M1006</link>
      <description>&lt;P&gt;This would be a good use case for Synthetic HTTP Monitors, assuming the APIs are HTTP-based.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2020 19:30:36 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Alerting/state-of-nodes/m-p/113565#M1006</guid>
      <dc:creator>dave_mauney</dc:creator>
      <dc:date>2020-06-11T19:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: state of nodes</title>
      <link>https://community.dynatrace.com/t5/Alerting/state-of-nodes/m-p/113566#M1007</link>
      <description>Also, if you have or can create a health check API you can use it to send events to Dynatrace via our Events API.&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2020 19:31:54 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Alerting/state-of-nodes/m-p/113566#M1007</guid>
      <dc:creator>dave_mauney</dc:creator>
      <dc:date>2020-06-11T19:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: state of nodes</title>
      <link>https://community.dynatrace.com/t5/Alerting/state-of-nodes/m-p/113567#M1008</link>
      <description>&lt;P&gt;You can use REST &lt;STRONG&gt;/rest/state &lt;/STRONG&gt;(no auth) to check the server's status - e.g. RUNNING  - this can be used for Synthetic checks easily.&lt;/P&gt;&lt;P&gt;More info you can find under:&lt;/P&gt;&lt;PRE&gt;/api/v1.0/onpremise/cluster&lt;/PRE&gt;&lt;H4&gt;&lt;BR /&gt;&lt;/H4&gt;&lt;P&gt;example response:&lt;/P&gt;&lt;PRE&gt;[&lt;BR /&gt;  {&lt;BR /&gt;    "id": 1,&lt;BR /&gt;    "clusterMemberAddress": "1.1.2.2:5701",&lt;BR /&gt;    "operationState": "RUNNING",&lt;BR /&gt;    "buildVersion": "1.194.0",&lt;BR /&gt;    "osInfo": "Platform: Linux, Version: 5.3.0-1023-aws, Architecture: amd64, Processors: 16",&lt;BR /&gt;    "jvmInfo": "VM: OpenJDK 64-Bit Server VM, Version: 1.8.0_252, Vendor: AdoptOpenJDK, Memory [maxMemory=17408M, initHeap=17408M, maxHeap=17408M, usedMeta=12M, committedMeta=12M, totalPhysicalMemory=62851M, freePhysicalMemory=40939M]",&lt;BR /&gt;    "dnsEntryPointUris": [],&lt;BR /&gt;    "restServiceRootUris": [&lt;BR /&gt;      "https://ip-1-1-2-2.eu-west-1.compute.internal:8021/api/v1.0",&lt;BR /&gt;      "https://1.1.2.2:8021/api/v1.0"&lt;BR /&gt;    ],&lt;BR /&gt;    "communicationUris": [&lt;BR /&gt;      "http://ip-1-1-2-2.eu-west-1.compute.internal:8020/communication",&lt;BR /&gt;      "http://1.1.2.2:8020/communication"&lt;BR /&gt;    ]&lt;BR /&gt;  },&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;for each node. You can also find there "operationState" field.  States can be:&lt;/P&gt;&lt;PRE&gt;OFFLINE(0),                // initial - server not running&lt;BR /&gt;STARTUP(1),                   // startup is in progress&lt;BR /&gt;STARTUP_CANCELED(2),         // startup was canceled due to some severe problem&lt;BR /&gt;RUNNING(3),                   // fully operational, accepts all data, fully visible&lt;BR /&gt;RUNNING_FORSAKEN(4),         // fully operational but invisible for ALL Agents, no paths should be sent to the server. configurable via config.properties&lt;BR /&gt;SHUTDOWN_PHASED_OUT(5),          // prior to shutdown ==&amp;gt; still operate messages but is not visible to agents anymore&lt;BR /&gt;SHUTDOWN(6),               // shutdown is in progress&lt;BR /&gt;// special modes&lt;BR /&gt;EMERGENCY(7),              // some emergency situation (e.g. low memory) - may happen during startup/shutdown or normal operation&lt;BR /&gt;STARTUP_SUSPENDED(8),        // basic startup finished but not connected to cluster or database, no tenants started&lt;BR /&gt;DATABASE_DISCONNECTED(9),     // database got disconnected during runtime, similar to READ_ONLY mode but without config requests&lt;BR /&gt;UNDEFINED(10),             // not known&lt;BR /&gt;&lt;BR /&gt;SHUTDOWN_IMMINENT(11);       // state before SHUTDOWN_PHASED_OUT, rest api still works in this state, even if server was (is) in emergency&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jun 2020 08:31:54 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Alerting/state-of-nodes/m-p/113567#M1008</guid>
      <dc:creator>Radoslaw_Szulgo</dc:creator>
      <dc:date>2020-06-12T08:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: state of nodes</title>
      <link>https://community.dynatrace.com/t5/Alerting/state-of-nodes/m-p/113568#M1009</link>
      <description>&lt;P&gt;I assumed the question was about application API enpoints...but maybe this is a better take!&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jun 2020 12:48:19 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Alerting/state-of-nodes/m-p/113568#M1009</guid>
      <dc:creator>dave_mauney</dc:creator>
      <dc:date>2020-06-12T12:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: state of nodes</title>
      <link>https://community.dynatrace.com/t5/Alerting/state-of-nodes/m-p/113569#M1010</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://answers.dynatrace.com/users/5499/view.html" nodeid="5499"&gt;@Radoslaw S.&lt;/A&gt; what is the complete URL for "/api/v1.0/onpremise/cluster"? Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Nov 2020 14:56:46 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Alerting/state-of-nodes/m-p/113569#M1010</guid>
      <dc:creator>mark_pundurs</dc:creator>
      <dc:date>2020-11-23T14:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: state of nodes</title>
      <link>https://community.dynatrace.com/t5/Alerting/state-of-nodes/m-p/113570#M1011</link>
      <description>&lt;P&gt;You prefix that with your cluster node IP or cluster URL.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Nov 2020 15:54:34 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Alerting/state-of-nodes/m-p/113570#M1011</guid>
      <dc:creator>Radoslaw_Szulgo</dc:creator>
      <dc:date>2020-11-23T15:54:34Z</dc:date>
    </item>
  </channel>
</rss>

