<?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>article How to Set Environment Variables in Apache HTTPD.conf file in Troubleshooting</title>
    <link>https://community.dynatrace.com/t5/Troubleshooting/How-to-Set-Environment-Variables-in-Apache-HTTPD-conf-file/ta-p/251298</link>
    <description>&lt;P&gt;&lt;LI-TOC indent="15" liststyle="disc" maxheadinglevel="3"&gt;&lt;/LI-TOC&gt;&lt;/P&gt;
&lt;DIV class="lia-message-template-content-zone"&gt;
&lt;H1&gt;&amp;nbsp;&lt;/H1&gt;
&lt;H1&gt;&lt;STRONG&gt;Description&lt;/STRONG&gt;&lt;/H1&gt;
&lt;P&gt;Dynatrace automatically detects the metadata values of processes and displays them in UI. However, in circumstances where the metadata cannot be detected, and used for TAGGING or process group Detection etc,&amp;nbsp; we have &lt;A href="https://docs.dynatrace.com/docs/shortlink/process-group-properties#variables" target="_blank" rel="noopener"&gt;Environment variables&lt;/A&gt; options to set to achieve this.&lt;BR /&gt;Environment variables cover most technologies (Java and non-Java processes like NGINX, Apache HTTP server, FPM/PHP, Node.js, IIS, and .NET.)&lt;/P&gt;
&lt;H1&gt;&lt;STRONG&gt;Issue&lt;/STRONG&gt;&lt;/H1&gt;
&lt;P&gt;After setting environment variables in the HTTPD file and restarting, the environment variables do not show up in Dynatrace. The below example shows that some environment variables have been set in &lt;STRONG&gt;/etc/httpd/conf/httpd.conf.&lt;/STRONG&gt;&amp;nbsp;However, even after a restart of the relevant services it doesn't reflect in the properties and tags section of the Process page.&lt;/P&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chiranjitdutta_6-1721728473415.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/21281i13A3C9A0EC0F1C7D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chiranjitdutta_6-1721728473415.png" alt="chiranjitdutta_6-1721728473415.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H1&gt;&lt;STRONG&gt;Solution&lt;/STRONG&gt;&lt;/H1&gt;
&lt;H2&gt;&lt;STRONG&gt;For Linux&lt;/STRONG&gt;&lt;/H2&gt;
&lt;P&gt;Dynatrace doesn't support/ apply metadata in environment variables within the Apache httpd.conf file. Httpd.conf is specifically for configuring the Apache web server itself, not for setting environment variables. Also the "SetEnv" is not the correct parameter for this.&lt;/P&gt;
&lt;P&gt;There are few options users can try setting the environment variables outside of httpd.conf and letting them influence the processes spawned by Apache&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Option 1&lt;/STRONG&gt;&lt;/H3&gt;
&lt;UL&gt;
&lt;LI&gt;Modify the systemd service file (or similar init script) that starts the Apache service.
&lt;UL&gt;
&lt;LI&gt;Example (systemd):&lt;BR /&gt;[Service]&lt;BR /&gt;... (other service configurations)&lt;BR /&gt;Environment="DT_CUSTOM_PROP=TeamName=DevOps,Environment=Production"&lt;BR /&gt;ExecStart=/usr/sbin/httpd -f /etc/httpd/conf/httpd.conf&lt;BR /&gt;... (other service configurations)&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;This injects the DT_CUSTOM_PROP environment variable with your desired metadata before starting Apache. The Apache processes will inherit this variable and Dynatrace can pick it up.&lt;/LI&gt;
&lt;LI&gt;Make sure the script or systemd service has proper permissions to execute Apache.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;After adding the variable and restarting the services it starts reflecting in the Process page.&lt;/P&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chiranjitdutta_7-1721728511555.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/21282i4F0DA4C6BECCA73E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chiranjitdutta_7-1721728511555.png" alt="chiranjitdutta_7-1721728511555.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Option 2&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;Setting Environment Variables in a Script:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Create a script that sets the environment variables and then starts Apache.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Example (bash script):&lt;BR /&gt;#!/bin/bash&lt;BR /&gt;export DT_CUSTOM_PROP=TeamName=DevOps,Environment=Production /usr/sbin/httpd -f /etc/httpd/conf/httpd.conf&lt;BR /&gt;# Alternatively, use exec to replace the script with Apache process&lt;BR /&gt;# exec /usr/sbin/httpd -f /etc/httpd/conf/httpd.conf&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;This script sets the DT_CUSTOM_PROP and then executes the Apache process with the environment variable available.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Important Note:&lt;/STRONG&gt; Remember to adjust the paths and variable names according to your specific setup. Make sure the script or systemd service has proper permissions to execute Apache.&lt;/P&gt;
&lt;H2&gt;&lt;STRONG&gt;For Windows&lt;/STRONG&gt;&lt;/H2&gt;
&lt;P&gt;There are also many ways to set the Environment variables but that depends on the requirement.&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Option 1&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;Using a Batch or PowerShell Script where Applications started via scripts.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Create a batch or PowerShell script to set the environment variables and start the application.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Execute the script to start the application with the desired environment variables.&lt;BR /&gt;$env:DT_CUSTOM_PROP = "TeamName=DevOps,Environment=Production" Start-Process "path_to_your_application.exe"&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;&lt;STRONG&gt;Option 2 (recommended/easy way)&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&lt;STRONG&gt;Modifying the Registry of the&lt;/STRONG&gt; &lt;A href="https://docs.dynatrace.com/docs/manage/tags-and-metadata/setup/define-tags-based-on-environment-variables#variables" target="_blank" rel="noopener"&gt;Service&lt;/A&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Open Registry Editor (regedit.exe).&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\&amp;lt;service_name&amp;gt;.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Create a new key named "Environment" with type REG_MULTI_SZ.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Add string values for your environment variables in the format DT_CUSTOM_PROP=TeamName=DevOps,Environment=Production.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Below is an example of one of the dynatrace service which we applied Environment variable and TAG.&amp;nbsp;&lt;/P&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chiranjitdutta_9-1721728636173.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/21284i2FD5F5C98FB886FD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chiranjitdutta_9-1721728636173.png" alt="chiranjitdutta_9-1721728636173.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chiranjitdutta_10-1721728649283.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/21285i8977258B3FDD6271/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chiranjitdutta_10-1721728649283.png" alt="chiranjitdutta_10-1721728649283.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;H3&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;&lt;/H3&gt;
For every change a Service restart is required&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;</description>
    <pubDate>Tue, 30 Jul 2024 09:25:08 GMT</pubDate>
    <dc:creator>chiranjitdutta</dc:creator>
    <dc:date>2024-07-30T09:25:08Z</dc:date>
    <item>
      <title>How to Set Environment Variables in Apache HTTPD.conf file</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/How-to-Set-Environment-Variables-in-Apache-HTTPD-conf-file/ta-p/251298</link>
      <description>&lt;P&gt;&lt;LI-TOC indent="15" liststyle="disc" maxheadinglevel="3"&gt;&lt;/LI-TOC&gt;&lt;/P&gt;
&lt;DIV class="lia-message-template-content-zone"&gt;
&lt;H1&gt;&amp;nbsp;&lt;/H1&gt;
&lt;H1&gt;&lt;STRONG&gt;Description&lt;/STRONG&gt;&lt;/H1&gt;
&lt;P&gt;Dynatrace automatically detects the metadata values of processes and displays them in UI. However, in circumstances where the metadata cannot be detected, and used for TAGGING or process group Detection etc,&amp;nbsp; we have &lt;A href="https://docs.dynatrace.com/docs/shortlink/process-group-properties#variables" target="_blank" rel="noopener"&gt;Environment variables&lt;/A&gt; options to set to achieve this.&lt;BR /&gt;Environment variables cover most technologies (Java and non-Java processes like NGINX, Apache HTTP server, FPM/PHP, Node.js, IIS, and .NET.)&lt;/P&gt;
&lt;H1&gt;&lt;STRONG&gt;Issue&lt;/STRONG&gt;&lt;/H1&gt;
&lt;P&gt;After setting environment variables in the HTTPD file and restarting, the environment variables do not show up in Dynatrace. The below example shows that some environment variables have been set in &lt;STRONG&gt;/etc/httpd/conf/httpd.conf.&lt;/STRONG&gt;&amp;nbsp;However, even after a restart of the relevant services it doesn't reflect in the properties and tags section of the Process page.&lt;/P&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chiranjitdutta_6-1721728473415.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/21281i13A3C9A0EC0F1C7D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chiranjitdutta_6-1721728473415.png" alt="chiranjitdutta_6-1721728473415.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H1&gt;&lt;STRONG&gt;Solution&lt;/STRONG&gt;&lt;/H1&gt;
&lt;H2&gt;&lt;STRONG&gt;For Linux&lt;/STRONG&gt;&lt;/H2&gt;
&lt;P&gt;Dynatrace doesn't support/ apply metadata in environment variables within the Apache httpd.conf file. Httpd.conf is specifically for configuring the Apache web server itself, not for setting environment variables. Also the "SetEnv" is not the correct parameter for this.&lt;/P&gt;
&lt;P&gt;There are few options users can try setting the environment variables outside of httpd.conf and letting them influence the processes spawned by Apache&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Option 1&lt;/STRONG&gt;&lt;/H3&gt;
&lt;UL&gt;
&lt;LI&gt;Modify the systemd service file (or similar init script) that starts the Apache service.
&lt;UL&gt;
&lt;LI&gt;Example (systemd):&lt;BR /&gt;[Service]&lt;BR /&gt;... (other service configurations)&lt;BR /&gt;Environment="DT_CUSTOM_PROP=TeamName=DevOps,Environment=Production"&lt;BR /&gt;ExecStart=/usr/sbin/httpd -f /etc/httpd/conf/httpd.conf&lt;BR /&gt;... (other service configurations)&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;This injects the DT_CUSTOM_PROP environment variable with your desired metadata before starting Apache. The Apache processes will inherit this variable and Dynatrace can pick it up.&lt;/LI&gt;
&lt;LI&gt;Make sure the script or systemd service has proper permissions to execute Apache.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;After adding the variable and restarting the services it starts reflecting in the Process page.&lt;/P&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chiranjitdutta_7-1721728511555.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/21282i4F0DA4C6BECCA73E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chiranjitdutta_7-1721728511555.png" alt="chiranjitdutta_7-1721728511555.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Option 2&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;Setting Environment Variables in a Script:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Create a script that sets the environment variables and then starts Apache.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Example (bash script):&lt;BR /&gt;#!/bin/bash&lt;BR /&gt;export DT_CUSTOM_PROP=TeamName=DevOps,Environment=Production /usr/sbin/httpd -f /etc/httpd/conf/httpd.conf&lt;BR /&gt;# Alternatively, use exec to replace the script with Apache process&lt;BR /&gt;# exec /usr/sbin/httpd -f /etc/httpd/conf/httpd.conf&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;This script sets the DT_CUSTOM_PROP and then executes the Apache process with the environment variable available.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Important Note:&lt;/STRONG&gt; Remember to adjust the paths and variable names according to your specific setup. Make sure the script or systemd service has proper permissions to execute Apache.&lt;/P&gt;
&lt;H2&gt;&lt;STRONG&gt;For Windows&lt;/STRONG&gt;&lt;/H2&gt;
&lt;P&gt;There are also many ways to set the Environment variables but that depends on the requirement.&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Option 1&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;Using a Batch or PowerShell Script where Applications started via scripts.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Create a batch or PowerShell script to set the environment variables and start the application.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Execute the script to start the application with the desired environment variables.&lt;BR /&gt;$env:DT_CUSTOM_PROP = "TeamName=DevOps,Environment=Production" Start-Process "path_to_your_application.exe"&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;&lt;STRONG&gt;Option 2 (recommended/easy way)&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&lt;STRONG&gt;Modifying the Registry of the&lt;/STRONG&gt; &lt;A href="https://docs.dynatrace.com/docs/manage/tags-and-metadata/setup/define-tags-based-on-environment-variables#variables" target="_blank" rel="noopener"&gt;Service&lt;/A&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Open Registry Editor (regedit.exe).&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\&amp;lt;service_name&amp;gt;.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Create a new key named "Environment" with type REG_MULTI_SZ.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Add string values for your environment variables in the format DT_CUSTOM_PROP=TeamName=DevOps,Environment=Production.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Below is an example of one of the dynatrace service which we applied Environment variable and TAG.&amp;nbsp;&lt;/P&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chiranjitdutta_9-1721728636173.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/21284i2FD5F5C98FB886FD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chiranjitdutta_9-1721728636173.png" alt="chiranjitdutta_9-1721728636173.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chiranjitdutta_10-1721728649283.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/21285i8977258B3FDD6271/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chiranjitdutta_10-1721728649283.png" alt="chiranjitdutta_10-1721728649283.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;H3&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;&lt;/H3&gt;
For every change a Service restart is required&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 30 Jul 2024 09:25:08 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/How-to-Set-Environment-Variables-in-Apache-HTTPD-conf-file/ta-p/251298</guid>
      <dc:creator>chiranjitdutta</dc:creator>
      <dc:date>2024-07-30T09:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set Environment Variables in Apache HTTPD.conf file</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/How-to-Set-Environment-Variables-in-Apache-HTTPD-conf-file/tac-p/251828#M710</link>
      <description>&lt;P&gt;Thank you!&amp;nbsp;&lt;img class="lia-deferred-image lia-image-emoji" src="https://community.dynatrace.com/html/@9BD876A77FEF3D5EF4BC972CF8A97CB1/images/emoticons/take_my_money.png" alt=":take_my_money:" title=":take_my_money:" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 10:31:27 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/How-to-Set-Environment-Variables-in-Apache-HTTPD-conf-file/tac-p/251828#M710</guid>
      <dc:creator>AntonPineiro</dc:creator>
      <dc:date>2024-07-29T10:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set Environment Variables in Apache HTTPD.conf file</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/How-to-Set-Environment-Variables-in-Apache-HTTPD-conf-file/tac-p/254313#M723</link>
      <description>&lt;P&gt;Thanks!!!!&lt;/P&gt;</description>
      <pubDate>Tue, 27 Aug 2024 15:05:16 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/How-to-Set-Environment-Variables-in-Apache-HTTPD-conf-file/tac-p/254313#M723</guid>
      <dc:creator>Miguel_RinconG</dc:creator>
      <dc:date>2024-08-27T15:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set Environment Variables in Apache HTTPD.conf file</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/How-to-Set-Environment-Variables-in-Apache-HTTPD-conf-file/tac-p/285773#M975</link>
      <description>&lt;P&gt;Chiranjit explained it very well for Apache HTTP Server. We tried for OHS server, but it did not work, If anyone struggling with OHS Server, then try below steps it worked for us. For Oracle HTTP Server passed environment variables in&amp;nbsp;&lt;SPAN data-teams="true"&gt;&lt;A id="menurl63" class="fui-Link ___1q1shib f2hkw1w f3rmtva f1ewtqcl fyind8e f1k6fduh f1w7gpdv fk6fouc fjoy568 figsok6 f1s184ao f1mk8lai fnbmjn9 f1o700av f13mvf36 f1cmlufx f9n3di6 f1ids18y f1tx3yz7 f1deo86v f1eh06m1 f1iescvh fhgqx19 f1olyrje f1p93eir f1nev41a f1h8hb77 f1lqvz6u f10aw75t fsle3fq f17ae5zn" title="https://docs.oracle.com/middleware/12213/webtier/administer-ohs/guid-4a90d621-bf19-4bc0-93cf-eec242ed850f.htm#hsadm-guid-4a90d621-bf19-4bc0-93cf-eec242ed850f" href="https://docs.oracle.com/middleware/12213/webtier/administer-ohs/GUID-4A90D621-BF19-4BC0-93CF-EEC242ED850F.htm#HSADM-GUID-4A90D621-BF19-4BC0-93CF-EEC242ED850F" target="_blank" rel="noreferrer noopener" aria-label="Link ohs.plugins.nodemanager.properties File"&gt;ohs.plugins.nodemanager.properties File&lt;/A&gt;&amp;nbsp;example as follows for process grouping and can be referred for Metadata as well.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;environment.DT_CLUSTER_ID=Value&lt;BR /&gt;environment.DT_NODE_ID=Value&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2025 09:08:00 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/How-to-Set-Environment-Variables-in-Apache-HTTPD-conf-file/tac-p/285773#M975</guid>
      <dc:creator>prashant_shinde</dc:creator>
      <dc:date>2025-09-11T09:08:00Z</dc:date>
    </item>
  </channel>
</rss>

