<?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: OneAgent SDK Python - IncomingWebRequestTracer - availibility to define start/response time in Open Q&amp;A</title>
    <link>https://community.dynatrace.com/t5/Open-Q-A/OneAgent-SDK-Python-IncomingWebRequestTracer-availibility-to/m-p/255613#M33735</link>
    <description>&lt;P&gt;Do you think that it is possible to find a workarround with opentelemetry in order to backdate (less than 24h) a http call and process it as a service in Dynatrace ?&lt;/P&gt;</description>
    <pubDate>Thu, 12 Sep 2024 20:27:55 GMT</pubDate>
    <dc:creator>cscotti78</dc:creator>
    <dc:date>2024-09-12T20:27:55Z</dc:date>
    <item>
      <title>OneAgent SDK Python - IncomingWebRequestTracer - availibility to define start/response time</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/OneAgent-SDK-Python-IncomingWebRequestTracer-availibility-to/m-p/255589#M33728</link>
      <description>&lt;P&gt;Hi&lt;BR /&gt;For some Dynatrace services, we have to recontruct the call from logs and simulate the processing time. This has limitation when the log came to late. We notice that&amp;nbsp;IncomingWebRequestTracer keep the ingestion time for "client-side start time". It is not that we want. The trace is not correct because it is due to recontruct service ingestion process after fetching the logs. And do not reveal the correct time.&lt;/P&gt;&lt;P&gt;Is it possible to specify ourself the following parameter :&lt;BR /&gt;- client-side start time&lt;/P&gt;&lt;P&gt;- client-side response time&lt;/P&gt;&lt;P&gt;- server-side start time&lt;/P&gt;&lt;P&gt;-server-side reponse time&lt;BR /&gt;- processing time&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cscotti78_1-1726145538451.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/22339iBDCDE673300E4444/image-size/medium?v=v2&amp;amp;px=400" role="button" title="cscotti78_1-1726145538451.png" alt="cscotti78_1-1726145538451.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If not, I will post a request in the OneAgent SDK Python (for&amp;nbsp;&lt;SPAN&gt;trace_incoming_web_request&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2024 13:09:05 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/OneAgent-SDK-Python-IncomingWebRequestTracer-availibility-to/m-p/255589#M33728</guid>
      <dc:creator>cscotti78</dc:creator>
      <dc:date>2024-09-12T13:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: OneAgent SDK Python - IncomingWebRequestTracer - availibility to define start/response time</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/OneAgent-SDK-Python-IncomingWebRequestTracer-availibility-to/m-p/255612#M33734</link>
      <description>&lt;P&gt;No,it is&amp;nbsp; not possible to specify timings. The client side timing is measured from the calling side (not sure what's that in your case).&lt;BR /&gt;&lt;BR /&gt;Did you consider using OpenTelemetry instead? It allows you to define exact start/end times.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2024 20:41:15 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/OneAgent-SDK-Python-IncomingWebRequestTracer-availibility-to/m-p/255612#M33734</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2024-09-12T20:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: OneAgent SDK Python - IncomingWebRequestTracer - availibility to define start/response time</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/OneAgent-SDK-Python-IncomingWebRequestTracer-availibility-to/m-p/255613#M33735</link>
      <description>&lt;P&gt;Do you think that it is possible to find a workarround with opentelemetry in order to backdate (less than 24h) a http call and process it as a service in Dynatrace ?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2024 20:27:55 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/OneAgent-SDK-Python-IncomingWebRequestTracer-availibility-to/m-p/255613#M33735</guid>
      <dc:creator>cscotti78</dc:creator>
      <dc:date>2024-09-12T20:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: OneAgent SDK Python - IncomingWebRequestTracer - availibility to define start/response time</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/OneAgent-SDK-Python-IncomingWebRequestTracer-availibility-to/m-p/255616#M33737</link>
      <description>&lt;P&gt;Yes, but it's just 60 minutes in the past (see &lt;A href="https://docs.dynatrace.com/docs/shortlink/opentelemetry-traces-ingest#ingestion-limits" target="_self"&gt;limits&lt;/A&gt;), but it allows you to specify start and end times. But Python OpenTelemetry API has options for both.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I'm not familiar with your environment and requirements, but I'd consider skipping opentelemetry api/sdk completely and producing compatible json payloads instead (&lt;A href="https://github.com/open-telemetry/opentelemetry-proto/blob/main/examples/trace.json" target="_blank" rel="noopener"&gt;example&lt;/A&gt;). You can have some inspiration &lt;A href="https://github.com/agardnerIT/tracepusher" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2024 21:03:27 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/OneAgent-SDK-Python-IncomingWebRequestTracer-availibility-to/m-p/255616#M33737</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2024-09-12T21:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: OneAgent SDK Python - IncomingWebRequestTracer - availibility to define start/response time</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/OneAgent-SDK-Python-IncomingWebRequestTracer-availibility-to/m-p/259184#M34203</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;Thanks for your response.&lt;BR /&gt;&lt;BR /&gt;I have in parallel submit a feature request on python one agent github projet.&lt;BR /&gt;&lt;A href="https://github.com/Dynatrace/OneAgent-SDK-for-Python/issues/38" target="_blank"&gt;https://github.com/Dynatrace/OneAgent-SDK-for-Python/issues/38&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Carlo&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2024 16:35:01 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/OneAgent-SDK-Python-IncomingWebRequestTracer-availibility-to/m-p/259184#M34203</guid>
      <dc:creator>cscotti78</dc:creator>
      <dc:date>2024-10-14T16:35:01Z</dc:date>
    </item>
  </channel>
</rss>

