<?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: Connect to Dynatrace using the OTLP gRPC protocol in Open Q&amp;A</title>
    <link>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/255023#M33676</link>
    <description>&lt;P&gt;Isn't this it:&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.dynatrace.com/docs/extend-dynatrace/opentelemetry/collector/use-cases/grpc" target="_blank"&gt;Transform OTLP gRPC - Dynatrace Docs&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 05 Sep 2024 13:54:20 GMT</pubDate>
    <dc:creator>36Krazyfists</dc:creator>
    <dc:date>2024-09-05T13:54:20Z</dc:date>
    <item>
      <title>Connect to Dynatrace using the OTLP gRPC protocol</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/204681#M30690</link>
      <description>&lt;P&gt;At present I am trying to connect to Dynatrace using my Open Telemetry Collector. I need to use the OTLP gRPC protocol for my POC. The configuration I have used is as below:&lt;/P&gt;
&lt;PRE&gt;`exporters:
  otlp:
    endpoint: https://{environmentid}.live.dynatrace.com/api/v2/otlp:4317
    wait_for_ready: false
    sending_queue:
      enabled: false
    tls:
      insecure: false
      insecure_skip_verify: true`&lt;/PRE&gt;
&lt;P&gt;However I see the the below error when i run my collector using the config above&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{"level":"warn","ts":1676323322.198344,"msg":"[core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {\n  \"Addr\": \"rcv415883.live.dynatrace.com/api/v2/otlp:4317\",\n  \"ServerName\": \"rcv41584.live.dynatrace.com/api/v2/otlp:4317\",\n  \"Attributes\": null,\n  \"BalancerAttributes\": null,\n  \"Type\": 0,\n  \"Metadata\": null\n}. Err: connection error: desc = \"transport: Error while dialing dial tcp: lookup rcv41584.live.dynatrace.com/api/v2/otlp: no such host\"","grpc_log":true}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2023 15:28:32 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/204681#M30690</guid>
      <dc:creator>urwashi</dc:creator>
      <dc:date>2023-11-23T15:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect to Dynatrace using the OTLP gRPC protocol.</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/204682#M30691</link>
      <description>&lt;P&gt;Your endpoint is not a valid URL. Remove the part&amp;nbsp;:4317 as Dynatrace does not listen on a such port and in the URL the port goes after the hostname - if applicable.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2023 03:25:11 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/204682#M30691</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2023-02-14T03:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect to Dynatrace using the OTLP gRPC protocol.</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/204731#M30692</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I changed endpoint as below&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;    exporters:
      otlp:
        endpoint: https://{environmentid}.live.dynatrace.com:4317
        wait_for_ready: false
        sending_queue:
          enabled: false
        tls:
          insecure: false
          insecure_skip_verify: true&lt;/LI-CODE&gt;&lt;P&gt;and I get error from otel collector as below:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"level":"info","ts":1676381087.568085,"msg":"Started watching file from end. To read preexisting logs, configure the argument 'start_at' to 'beginning'","kind":"receiver","name":"filelog","pipeline":"logs","component":"fileconsumer","path":"/data/output-logs"}
{"level":"warn","ts":1676381107.066672,"msg":"[core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {\n  \"Addr\": \"rcv415883.live.dynatrace.com:4317\",\n  \"ServerName\": \"rcv415883.live.dynatrace.com:4317\",\n  \"Attributes\": null,\n  \"BalancerAttributes\": null,\n  \"Type\": 0,\n  \"Metadata\": null\n}. Err: connection error: desc = \"transport: Error while dialing dial tcp 34.199.215.244:4317: i/o timeout\"","grpc_log":true}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;and when I removed the port from endpoint such as below:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;    exporters:
      otlp:
        endpoint: https://{environmentid}.live.dynatrace.com&lt;/LI-CODE&gt;&lt;P&gt;Then I get error as below&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{"level":"info","ts":1676381289.5264444,"msg":"Starting stanza receiver","kind":"receiver","name":"filelog","pipeline":"logs"}
{"level":"warn","ts":1676381289.5262246,"msg":"[core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {\n  \"Addr\": \"rcv415883.live.dynatrace.com\",\n  \"ServerName\": \"rcv41584.live.dynatrace.com\",\n  \"Attributes\": null,\n  \"BalancerAttributes\": null,\n  \"Type\": 0,\n  \"Metadata\": null\n}. Err: connection error: desc = \"transport: Error while dialing dial tcp: address rcv41584.live.dynatrace.com: missing port in address\"","grpc_log":true}&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 14 Feb 2023 13:35:59 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/204731#M30692</guid>
      <dc:creator>urwashis</dc:creator>
      <dc:date>2023-02-14T13:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect to Dynatrace using the OTLP gRPC protocol.</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/204776#M30693</link>
      <description>&lt;P&gt;Ok, if it requires the port, so try&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;https://{environmentid}.live.dynatrace.com:443/api/v2/otlp&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 14 Feb 2023 15:59:02 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/204776#M30693</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2023-02-14T15:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect to Dynatrace using the OTLP gRPC protocol.</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/204778#M30694</link>
      <description>&lt;P&gt;When I tried the endpoint as you suggested, i.e.&lt;/P&gt;&lt;PRE&gt;https://{environmentid}.live.dynatrace.com:443/api/v2/otlp&lt;/PRE&gt;&lt;P&gt;I get below error:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;{"level":"warn","ts":1676392138.4155657,"msg":"[core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {\n  \"Addr\": \"rcv415883.live.dynatrace.com:443/api/v2/otlp\",\n  \"ServerName\": \"rcv415883.live.dynatrace.com:443/api/v2/otlp\",\n  \"Attributes\": null,\n  \"BalancerAttributes\": null,\n  \"Type\": 0,\n  \"Metadata\": null\n}. Err: connection error: desc = \"transport: Error while dialing dial tcp: address tcp/443/api/v2/otlp: unknown port\"","grpc_log":true}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2023 16:33:08 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/204778#M30694</guid>
      <dc:creator>urwashis</dc:creator>
      <dc:date>2023-02-14T16:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect to Dynatrace using the OTLP gRPC protocol.</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/205562#M30695</link>
      <description>&lt;P&gt;I am afraid, gRPC is currently not yet supported.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dynatrace.com/support/help/extend-dynatrace/opentelemetry/opentelemetry-traces/opentelemetry-ingest" target="_blank"&gt;https://www.dynatrace.com/support/help/extend-dynatrace/opentelemetry/opentelemetry-traces/opentelemetry-ingest&lt;/A&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Only export format&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;OTLP/HTTP binary Protobuf&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;from OpenTelemetry is supported&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Fri, 24 Feb 2023 07:27:26 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/205562#M30695</guid>
      <dc:creator>alexander_dt</dc:creator>
      <dc:date>2023-02-24T07:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect to Dynatrace using the OTLP gRPC protocol.</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/226051#M30696</link>
      <description>&lt;P&gt;Is gRPC supported in Dynatrace now?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used the URL :&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;https:// {environmentid}.live.dynatrace.com/api/v2/otlp/v1/traces&amp;nbsp;and created an access token to ingest OTLP&amp;nbsp;&lt;BR /&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Authorization: &lt;/SPAN&gt;&lt;SPAN&gt;'Api-Token dt0c01.4*************.f**********************'&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I could not see any traces in DynaTrace.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 23 Oct 2023 08:30:07 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/226051#M30696</guid>
      <dc:creator>Krishi</dc:creator>
      <dc:date>2023-10-23T08:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: Connect to Dynatrace using the OTLP gRPC protocol</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/253374#M33449</link>
      <description>&lt;P&gt;Hello here &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;BR /&gt;Any news about gRPC compatibility ?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Aug 2024 09:18:07 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/253374#M33449</guid>
      <dc:creator>JeanBlanc</dc:creator>
      <dc:date>2024-08-14T09:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Connect to Dynatrace using the OTLP gRPC protocol</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/255023#M33676</link>
      <description>&lt;P&gt;Isn't this it:&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.dynatrace.com/docs/extend-dynatrace/opentelemetry/collector/use-cases/grpc" target="_blank"&gt;Transform OTLP gRPC - Dynatrace Docs&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2024 13:54:20 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Connect-to-Dynatrace-using-the-OTLP-gRPC-protocol/m-p/255023#M33676</guid>
      <dc:creator>36Krazyfists</dc:creator>
      <dc:date>2024-09-05T13:54:20Z</dc:date>
    </item>
  </channel>
</rss>

