<?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: Push custom metrics via some endpoint of Dynatrace API ... it's possible? in Dynatrace API</title>
    <link>https://community.dynatrace.com/t5/Dynatrace-API/Is-it-possible-to-push-custom-metrics-via-some-endpoint-of/m-p/117895#M1242</link>
    <description>&lt;P&gt;Thank you all. &lt;/P&gt;&lt;P&gt;The metrics ingestion protocol is exactly what I need. &lt;/P&gt;&lt;P&gt;I just found it strange that the Chart (Explorer) was separate from the Custom Chart.&lt;/P&gt;&lt;P&gt;Fernando. &lt;/P&gt;</description>
    <pubDate>Thu, 15 Oct 2020 12:09:53 GMT</pubDate>
    <dc:creator>fernando_albuqu</dc:creator>
    <dc:date>2020-10-15T12:09:53Z</dc:date>
    <item>
      <title>Is it possible to push custom metrics via some endpoint of Dynatrace API?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/Is-it-possible-to-push-custom-metrics-via-some-endpoint-of/m-p/117892#M1239</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have a series of "circuit breakers" that determine the logical behavior of the application (something like WITH PROBLEM / NO PROBLEM).&lt;/P&gt;
&lt;P&gt;The idea is to take the status of these circuit breakers to Dynatrace, with customized metrics, creating dashboards, thresholds and notifications.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The big question is: Can we push custom metrics via some endpoint of Dynatrace API? What would be the endpoint?&lt;/P&gt;
&lt;P&gt;Or is the only way via Dynatrace Plugin?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;Fernando&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 10:03:59 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/Is-it-possible-to-push-custom-metrics-via-some-endpoint-of/m-p/117892#M1239</guid>
      <dc:creator>fernando_albuqu</dc:creator>
      <dc:date>2022-10-03T10:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: Push custom metrics via some endpoint of Dynatrace API ... it's possible?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/Is-it-possible-to-push-custom-metrics-via-some-endpoint-of/m-p/117893#M1240</link>
      <description>&lt;P&gt;Hi Fernando,&lt;/P&gt;&lt;P&gt;Yes you can use our new, extremely flexible metric ingest endpoint. &lt;/P&gt;&lt;P&gt;See here:&lt;/P&gt;&lt;P&gt;&lt;A rel="noopener noreferrer" href="https://www.dynatrace.com/support/help/dynatrace-api/environment-api/metric-v2/post-ingest-metrics/" target="_blank"&gt;https://www.dynatrace.com/support/help/dynatrace-api/environment-api/metric-v2/post-ingest-metrics/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Best greetings,&lt;/P&gt;&lt;P&gt;Wolfgang&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 06:12:02 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/Is-it-possible-to-push-custom-metrics-via-some-endpoint-of/m-p/117893#M1240</guid>
      <dc:creator>wolfgang_beer</dc:creator>
      <dc:date>2020-10-15T06:12:02Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to push custom metrics via some endpoint of Dynatrace API?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/Is-it-possible-to-push-custom-metrics-via-some-endpoint-of/m-p/117894#M1241</link>
      <description>&lt;P&gt;Sure you can!&lt;/P&gt;
&lt;P&gt;There are several methods you can choose from for pushing the metrics:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Push the metrics locally&lt;/STRONG&gt; on the OneAgent. This is a newly released feature and has to be enabled in the environment in Settings -&amp;gt; Monitored technologies. Then you can use either statsd protocol or metric line protocol to push metrics locally to a port OneAgent will listen to.&lt;BR /&gt;See more in this blog post:&lt;BR /&gt;&lt;A href="https://www.dynatrace.com/news/blog/intelligent-context-aware-ai-analytics-for-all-your-custom-metrics/" target="_blank" rel="noopener noreferrer"&gt;https://www.dynatrace.com/news/blog/intelligent-context-aware-ai-analytics-for-all-your-custom-metrics/&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;You can &lt;STRONG&gt;push metrics using environment API&lt;/STRONG&gt;. It's the same line procol as above. See specification with examples here:&lt;BR /&gt;&lt;A href="https://www.dynatrace.com/support/help/dynatrace-api/environment-api/metric-v2/post-ingest-metrics/" target="_blank" rel="noopener noreferrer"&gt;https://www.dynatrace.com/support/help/dynatrace-api/environment-api/metric-v2/post-ingest-metrics/&lt;/A&gt;&lt;BR /&gt;Albeit not widely mentioned, metrics can be pushed also using ActiveGate as the API endpoint. You can push the metrics via API also from platforms where you can't install OneAgent&lt;/LI&gt;
&lt;LI&gt;You can write an &lt;STRONG&gt;oneagent extension&lt;/STRONG&gt; and push the metrics using the extension. See more here:&lt;BR /&gt;&lt;A href="https://www.dynatrace.com/support/help/extend-dynatrace/extensions/oneagent-extensions/oneagent-extensions-hands-on/" target="_blank" rel="noopener noreferrer"&gt;https://www.dynatrace.com/support/help/extend-dynatrace/extensions/oneagent-extensions/oneagent-extensions-hands-on/&lt;/A&gt;&lt;BR /&gt;Just for the record, OneAgent Python extensions are limited to Linux and Windows OneAgents. They are not yet available for AIX and won't be available for Solaris&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Mar 2023 11:06:38 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/Is-it-possible-to-push-custom-metrics-via-some-endpoint-of/m-p/117894#M1241</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2023-03-23T11:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: Push custom metrics via some endpoint of Dynatrace API ... it's possible?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/Is-it-possible-to-push-custom-metrics-via-some-endpoint-of/m-p/117895#M1242</link>
      <description>&lt;P&gt;Thank you all. &lt;/P&gt;&lt;P&gt;The metrics ingestion protocol is exactly what I need. &lt;/P&gt;&lt;P&gt;I just found it strange that the Chart (Explorer) was separate from the Custom Chart.&lt;/P&gt;&lt;P&gt;Fernando. &lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 12:09:53 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/Is-it-possible-to-push-custom-metrics-via-some-endpoint-of/m-p/117895#M1242</guid>
      <dc:creator>fernando_albuqu</dc:creator>
      <dc:date>2020-10-15T12:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: Push custom metrics via some endpoint of Dynatrace API ... it's possible?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/Is-it-possible-to-push-custom-metrics-via-some-endpoint-of/m-p/117896#M1243</link>
      <description>&lt;P&gt;AFAIK the new metric explorer will replace the Custom chart eventually. That's why is is considered as a preview at the moment.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 06:50:10 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/Is-it-possible-to-push-custom-metrics-via-some-endpoint-of/m-p/117896#M1243</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2020-10-16T06:50:10Z</dc:date>
    </item>
  </channel>
</rss>

