<?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: Release Monitoring not working on processes without Code-Module? in Container platforms</title>
    <link>https://community.dynatrace.com/t5/Container-platforms/Release-Monitoring-not-working-on-processes-without-Code-Module/m-p/183328#M360</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/35901"&gt;@r_weber&lt;/a&gt;&amp;nbsp;, thanks for the feedback - we are aware of the limitation and have the plans in place to also propagate the k8s labels automatically as env.variables.&lt;/P&gt;
&lt;P&gt;As stated in documentation, we recommend env.variables, as the full version visibility you can only have with env.variables. This way you&amp;nbsp;also get traces decorated with this data, so that you can split any data based on versions. If you have any further questions to planned features, please also check out the backlog:&amp;nbsp;&lt;A href="https://community.dynatrace.com/t5/Feedback-channel/Planned-features-for-Release-Analysis/m-p/168249#M565" target="_blank" rel="noopener"&gt;https://community.dynatrace.com/t5/Feedback-channel/Planned-features-for-Release-Analysis/m-p/168249#M565&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 25 Mar 2022 07:46:38 GMT</pubDate>
    <dc:creator>wolfgang_heider</dc:creator>
    <dc:date>2022-03-25T07:46:38Z</dc:date>
    <item>
      <title>Release Monitoring not working on processes without Code-Module?</title>
      <link>https://community.dynatrace.com/t5/Container-platforms/Release-Monitoring-not-working-on-processes-without-Code-Module/m-p/183209#M358</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was rather surprised to learn that the &lt;A href="https://www.dynatrace.com/support/help/how-to-use-dynatrace/cloud-automation/release-monitoring/version-detection-strategies" target="_self"&gt;release monitoring feature&lt;/A&gt; of Dynatrace seems to NOT WORK with processes where no code-level module exists.&lt;/P&gt;&lt;P&gt;I have two pods in my K8s playground, one contains a Nginx container and the other one a Python container. Both are configured with the same standard k8s labels for version, which is also propagated ton environment variables of the process in the deployment spec (as described in the &lt;A href="https://www.dynatrace.com/support/help/how-to-use-dynatrace/cloud-automation/release-monitoring/version-detection-strategies" target="_self"&gt;documentation&lt;/A&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;spec:
  replicas: 1
  selector:
    matchLabels:
      app: dt-metricexport
  template:
    metadata:
      name: dt-metricexport
      labels:
        app: dt-metricexport
        app.kubernetes.io/version: 1.0.0
    spec:
      containers:
        - name: dt-metricexport
          image: 360performance/dt-metricexport:latest
          imagePullPolicy: Always
          env:
          - name: PYTHONUNBUFFERED
            value: "1"
          - name: DT_RELEASE_VERSION
            valueFrom:
              fieldRef:
                fieldPath: metadata.labels['app.kubernetes.io/version']&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Dynatrace we can confirm the pod labels, however for Nginx (code module exists) more details are picked up (environment variables are propagated to tags automatically, release and stage meta info is created):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="r_weber_0-1648111819196.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/4982i97D03F5345AF979A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="r_weber_0-1648111819196.png" alt="r_weber_0-1648111819196.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For python however (no code module), only the pod label is detected:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="r_weber_1-1648111830670.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/4983iE4003D80C673C718/image-size/medium?v=v2&amp;amp;px=400" role="button" title="r_weber_1-1648111830670.png" alt="r_weber_1-1648111830670.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Release overview page only shows Nginx:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="r_weber_2-1648111960127.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/4984i2BBC29675160C2A5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="r_weber_2-1648111960127.png" alt="r_weber_2-1648111960127.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my opinion this means the feature is not complete and/or the &lt;A href="https://www.dynatrace.com/support/help/how-to-use-dynatrace/cloud-automation/release-monitoring/version-detection-strategies" target="_self"&gt;documentation for it&lt;/A&gt; is not correct.&lt;BR /&gt;Please correct me if I'm wrong &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;According to the documentation you can use &lt;EM&gt;either&lt;/EM&gt; environment variables OR K8s pod labels. Although the example states to also propagate the labels to environment variables.&lt;BR /&gt;In reality it seems that &lt;EM&gt;only&lt;/EM&gt; environment variables (or the tags created from it?) are being used, and since environment variables are only evaluated for processes with code modules it fails for e.g. python processes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since the documentation states to stick to k8s recommendations for labeling, Dynatrace should also stick to using these labels directly. Otherwise there will be a discrepancy between other K8s management solutions and what can be seen in Dynatrace. That would be a shame and leaves this feature somewhat crippled.&lt;/P&gt;&lt;P&gt;I'd expect to see all processes on the release overview, not only those where Dynatrace is able to detect services due to code module support.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;kr,&lt;/P&gt;&lt;P&gt;Reinhard&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Mar 2022 09:01:06 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Container-platforms/Release-Monitoring-not-working-on-processes-without-Code-Module/m-p/183209#M358</guid>
      <dc:creator>r_weber</dc:creator>
      <dc:date>2022-03-24T09:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: Release Monitoring not working on processes without Code-Module?</title>
      <link>https://community.dynatrace.com/t5/Container-platforms/Release-Monitoring-not-working-on-processes-without-Code-Module/m-p/183265#M359</link>
      <description>&lt;P&gt;Just confirmed by Dynatrace: my assumption was correct, release tracking only works with processes where code level modules are available and not for generic processes...that's a bummer.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Mar 2022 08:54:05 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Container-platforms/Release-Monitoring-not-working-on-processes-without-Code-Module/m-p/183265#M359</guid>
      <dc:creator>r_weber</dc:creator>
      <dc:date>2022-03-25T08:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Release Monitoring not working on processes without Code-Module?</title>
      <link>https://community.dynatrace.com/t5/Container-platforms/Release-Monitoring-not-working-on-processes-without-Code-Module/m-p/183328#M360</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/35901"&gt;@r_weber&lt;/a&gt;&amp;nbsp;, thanks for the feedback - we are aware of the limitation and have the plans in place to also propagate the k8s labels automatically as env.variables.&lt;/P&gt;
&lt;P&gt;As stated in documentation, we recommend env.variables, as the full version visibility you can only have with env.variables. This way you&amp;nbsp;also get traces decorated with this data, so that you can split any data based on versions. If you have any further questions to planned features, please also check out the backlog:&amp;nbsp;&lt;A href="https://community.dynatrace.com/t5/Feedback-channel/Planned-features-for-Release-Analysis/m-p/168249#M565" target="_blank" rel="noopener"&gt;https://community.dynatrace.com/t5/Feedback-channel/Planned-features-for-Release-Analysis/m-p/168249#M565&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Mar 2022 07:46:38 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Container-platforms/Release-Monitoring-not-working-on-processes-without-Code-Module/m-p/183328#M360</guid>
      <dc:creator>wolfgang_heider</dc:creator>
      <dc:date>2022-03-25T07:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: Release Monitoring not working on processes without Code-Module?</title>
      <link>https://community.dynatrace.com/t5/Container-platforms/Release-Monitoring-not-working-on-processes-without-Code-Module/m-p/183329#M361</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/26788"&gt;@wolfgang_heider&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for confirming. The manual propagation is not that big issue, but even if they are propagted we would not get version/release info on containers with generic processes ( where no codwlevel visibility exists ).&lt;/P&gt;&lt;P&gt;IMO this has to do with the fact that Dynatrace does not evaluate env variables into tags for non-code module technology processes.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Mar 2022 07:55:25 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Container-platforms/Release-Monitoring-not-working-on-processes-without-Code-Module/m-p/183329#M361</guid>
      <dc:creator>r_weber</dc:creator>
      <dc:date>2022-03-25T07:55:25Z</dc:date>
    </item>
  </channel>
</rss>

