<?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: what api  can be used to get events from all pods from a kubernetes cluster? in Dynatrace API</title>
    <link>https://community.dynatrace.com/t5/Dynatrace-API/what-api-can-be-used-to-get-events-from-all-pods-from-a/m-p/301144#M4005</link>
    <description>&lt;P&gt;With Dynatrace Classic or Dynatrace Managed you are left with the Events API that&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/58682"&gt;@AntonPineiro&lt;/a&gt;&amp;nbsp; suggested.&lt;BR /&gt;You need to select events from workloads running in the kubernetes cluster and you must adjust entitySelector accordingly.&lt;/P&gt;</description>
    <pubDate>Wed, 24 Jun 2026 11:00:54 GMT</pubDate>
    <dc:creator>Julius_Loman</dc:creator>
    <dc:date>2026-06-24T11:00:54Z</dc:date>
    <item>
      <title>what api  can be used to get events from all pods from a kubernetes cluster?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/what-api-can-be-used-to-get-events-from-all-pods-from-a/m-p/301133#M4000</link>
      <description>&lt;P&gt;what api can be used to get events from all pods from a kubernetes cluster?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2026 09:01:51 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/what-api-can-be-used-to-get-events-from-all-pods-from-a/m-p/301133#M4000</guid>
      <dc:creator>Arunkumarbnp</dc:creator>
      <dc:date>2026-06-24T09:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: what api  can be used to get events from all pods from a kubernetes cluster?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/what-api-can-be-used-to-get-events-from-all-pods-from-a/m-p/301137#M4001</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I would check &lt;A title="Events API v2" href="https://docs.dynatrace.com/docs/shortlink/api-events-v2" target="_blank" rel="noopener"&gt;Events API v2&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2026 09:51:21 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/what-api-can-be-used-to-get-events-from-all-pods-from-a/m-p/301137#M4001</guid>
      <dc:creator>AntonPineiro</dc:creator>
      <dc:date>2026-06-24T09:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: what api  can be used to get events from all pods from a kubernetes cluster?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/what-api-can-be-used-to-get-events-from-all-pods-from-a/m-p/301138#M4002</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/58682"&gt;@AntonPineiro&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tested the following API endpoint to retrieve Kubernetes-related events:&lt;/P&gt;&lt;P&gt;{{baseUrl}}/it_prod-dynatrace-environment-apac/v2/events?entitySelector=entityId(KUBERNETES_CLUSTER-0FB79669080C9DD5)&amp;amp;from=now-60d&amp;amp;to=now&amp;amp;pageSize=500&lt;BR /&gt;Observation:&lt;/P&gt;&lt;P&gt;The query successfully returns events for the Kubernetes cluster (KUBERNETES_CLUSTER-0FB79669080C9DD5).&lt;BR /&gt;However, no events for individual Kubernetes pods are included in the response.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2026 09:56:25 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/what-api-can-be-used-to-get-events-from-all-pods-from-a/m-p/301138#M4002</guid>
      <dc:creator>Arunkumarbnp</dc:creator>
      <dc:date>2026-06-24T09:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: what api  can be used to get events from all pods from a kubernetes cluster?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/what-api-can-be-used-to-get-events-from-all-pods-from-a/m-p/301140#M4003</link>
      <description>&lt;P&gt;Use DQL:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;fetch events
| filter k8s.cluster.name == "mycluster"
| filter event.provider == "KUBERNETES_EVENT" or event.provider == "KUBERNETES_INFERRED_EVENT"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And use the platform&amp;nbsp;/platform/storage/query/v1 API , see&amp;nbsp;&lt;A href="https://developer.dynatrace.com/develop/guides/access-platform-apis-from-outside/" target="_blank"&gt;https://developer.dynatrace.com/develop/guides/access-platform-apis-from-outside/&lt;/A&gt;&amp;nbsp;on how to access it.&lt;BR /&gt;&lt;BR /&gt;Or use &lt;A href="https://github.com/dynatrace-oss/dtctl" target="_blank"&gt;dtctl&lt;/A&gt; insted which might be much easier to use.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2026 10:26:16 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/what-api-can-be-used-to-get-events-from-all-pods-from-a/m-p/301140#M4003</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2026-06-24T10:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: what api  can be used to get events from all pods from a kubernetes cluster?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/what-api-can-be-used-to-get-events-from-all-pods-from-a/m-p/301142#M4004</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/3364"&gt;@Julius_Loman&lt;/a&gt;&amp;nbsp;I'm using dynatrace classic, how can I use this query?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2026 10:51:36 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/what-api-can-be-used-to-get-events-from-all-pods-from-a/m-p/301142#M4004</guid>
      <dc:creator>Arunkumarbnp</dc:creator>
      <dc:date>2026-06-24T10:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: what api  can be used to get events from all pods from a kubernetes cluster?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/what-api-can-be-used-to-get-events-from-all-pods-from-a/m-p/301144#M4005</link>
      <description>&lt;P&gt;With Dynatrace Classic or Dynatrace Managed you are left with the Events API that&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/58682"&gt;@AntonPineiro&lt;/a&gt;&amp;nbsp; suggested.&lt;BR /&gt;You need to select events from workloads running in the kubernetes cluster and you must adjust entitySelector accordingly.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2026 11:00:54 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/what-api-can-be-used-to-get-events-from-all-pods-from-a/m-p/301144#M4005</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2026-06-24T11:00:54Z</dc:date>
    </item>
  </channel>
</rss>

