<?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: Support for Open Telemetry histogram type metrics in Dynatrace API</title>
    <link>https://community.dynatrace.com/t5/Dynatrace-API/Support-for-Open-Telemetry-histogram-type-metrics/m-p/255724#M3383</link>
    <description>&lt;P&gt;Histogram support was added as of SaaS release 1.300:&amp;nbsp;&lt;A href="https://docs.dynatrace.com/docs/shortlink/release-notes-saas-sprint-300#opentelemetry-metrics-ingest-api-now-accepts-histograms" target="_blank"&gt;https://docs.dynatrace.com/docs/shortlink/release-notes-saas-sprint-300#opentelemetry-metrics-ingest-api-now-accepts-histograms&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 13 Sep 2024 22:11:01 GMT</pubDate>
    <dc:creator>KyraHinnegan</dc:creator>
    <dc:date>2024-09-13T22:11:01Z</dc:date>
    <item>
      <title>Support for Open Telemetry histogram type metrics</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/Support-for-Open-Telemetry-histogram-type-metrics/m-p/219332#M2613</link>
      <description>&lt;P&gt;I've been discussing, in this &lt;A href="https://github.com/dynatrace-oss/opentelemetry-metric-js/issues/41#issuecomment-1633272832" target="_self"&gt;issue&lt;/A&gt;, at&lt;A href="https://github.com/dynatrace-oss/opentelemetry-metric-js" target="_self"&gt; Dynatrace OpenTelemetry metrics for JS GitHub&lt;/A&gt; repository about the some future support for some of the feature now the deprecated repository covered. And I was instructed to seek for further details here in the community.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Currently Histograms metrics are not supported by Dynatrace &lt;A href="https://www.dynatrace.com/support/help/extend-dynatrace/opentelemetry/getting-started/metrics/ingest/migration-guide-otlp-exporter#in-applications-additional-features" target="_blank" rel="nofollow noopener"&gt;according&lt;/A&gt;, is there any plans and timeline to start supporting this? This is main reason why I'm using the lib is the conversion it makes to Dynatrace Gauge for the proprietary API.&lt;/LI&gt;&lt;LI&gt;On this lib there was the possibility to send the metrics to the OneAgent which would send transmit them to the server, avoiding extra costs. Is there the same possibility with the OTLP exporters? Is the OneAgent being enhanced to understand OTLP APIs?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Thanks&lt;BR /&gt;Best Regards&lt;BR /&gt;Gustavo Kath&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jul 2023 16:59:17 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/Support-for-Open-Telemetry-histogram-type-metrics/m-p/219332#M2613</guid>
      <dc:creator>gustavokath</dc:creator>
      <dc:date>2023-07-31T16:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Support for Open Telemetry histogram type metrics</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/Support-for-Open-Telemetry-histogram-type-metrics/m-p/226444#M2714</link>
      <description>&lt;P&gt;Hey Gustavo,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I cannot answer the first question as I understand OpenTelemetry is still a work-in-progress.&lt;/P&gt;&lt;P&gt;As for your second question, I think you can assume that any extra custom metrics that you create with Dynatrace Extensions is going to come at a cost (DDUs). I'm assuming you're are referring to the &lt;A href="https://www.dynatrace.com/support/help/extend-dynatrace/extend-metrics/ingestion-methods/oneagent-metric-api" target="_self"&gt;OneAgent Metrics API?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I believe that there is still a cost associated to custom metric ingestion via that OneAgent Metric API but I don't know for certain.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2023 14:11:13 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/Support-for-Open-Telemetry-histogram-type-metrics/m-p/226444#M2714</guid>
      <dc:creator>Nick-Montana</dc:creator>
      <dc:date>2023-10-24T14:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Support for Open Telemetry histogram type metrics</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/Support-for-Open-Telemetry-histogram-type-metrics/m-p/254076#M3334</link>
      <description>&lt;P&gt;Do we have any updates regarding support all Otel metrics types?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://opentelemetry.io/docs/concepts/signals/metrics/" target="_blank"&gt;https://opentelemetry.io/docs/concepts/signals/metrics/&lt;/A&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Counter&lt;/STRONG&gt;: A value that accumulates over time – you can think of this like an odometer on a car; it only ever goes up.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Asynchronous Counter&lt;/STRONG&gt;: Same as the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Counter&lt;/STRONG&gt;, but is collected once for each export. Could be used if you don’t have access to the continuous increments, but only to the aggregated value.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;UpDownCounter&lt;/STRONG&gt;: A value that accumulates over time, but can also go down again. An example could be a queue length, it will increase and decrease with the number of work items in the queue.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Asynchronous UpDownCounter&lt;/STRONG&gt;: Same as the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;UpDownCounter&lt;/STRONG&gt;, but is collected once for each export. Could be used if you don’t have access to the continuous changes, but only to the aggregated value (e.g., current queue size).&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Gauge&lt;/STRONG&gt;: Measures a current value at the time it is read. An example would be the fuel gauge in a vehicle. Gauges are asynchronous.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Histogram&lt;/STRONG&gt;: A client-side aggregation of values, such as request latencies. A histogram is a good choice if you are interested in value statistics. For example: How many requests take fewer than 1s?&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Fri, 23 Aug 2024 11:23:17 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/Support-for-Open-Telemetry-histogram-type-metrics/m-p/254076#M3334</guid>
      <dc:creator>Slawa</dc:creator>
      <dc:date>2024-08-23T11:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: Support for Open Telemetry histogram type metrics</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/Support-for-Open-Telemetry-histogram-type-metrics/m-p/255724#M3383</link>
      <description>&lt;P&gt;Histogram support was added as of SaaS release 1.300:&amp;nbsp;&lt;A href="https://docs.dynatrace.com/docs/shortlink/release-notes-saas-sprint-300#opentelemetry-metrics-ingest-api-now-accepts-histograms" target="_blank"&gt;https://docs.dynatrace.com/docs/shortlink/release-notes-saas-sprint-300#opentelemetry-metrics-ingest-api-now-accepts-histograms&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Sep 2024 22:11:01 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/Support-for-Open-Telemetry-histogram-type-metrics/m-p/255724#M3383</guid>
      <dc:creator>KyraHinnegan</dc:creator>
      <dc:date>2024-09-13T22:11:01Z</dc:date>
    </item>
  </channel>
</rss>

