<?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 Can't configure process group in Open Q&amp;A</title>
    <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280556#M36921</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I'm trying to make 2 simple node js processes and add them in process group.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is my current setup:&lt;/P&gt;
&lt;P&gt;2 oneagents on 2 hosts - &lt;STRONG&gt;ariel&lt;/STRONG&gt; and &lt;STRONG&gt;earth&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;node js source code:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;#!/usr/bin/env node&lt;/P&gt;
&lt;P&gt;setInterval(() =&amp;gt; {&lt;BR /&gt;console.log('Process 1 is running...');&lt;BR /&gt;}, 60000);&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;service config files content:&lt;BR /&gt;&lt;/STRONG&gt;[Unit]&lt;BR /&gt;Description=My Dummy Process&lt;BR /&gt;After=network.target&lt;/P&gt;
&lt;P&gt;[Service]&lt;BR /&gt;Environment=NODE_GROUP=nodejs-test&lt;BR /&gt;ExecStart=/home/deni/test_process.js&lt;BR /&gt;Restart=always&lt;BR /&gt;User=deni&lt;BR /&gt;Group=deni&lt;/P&gt;
&lt;P&gt;[Install]&lt;BR /&gt;WantedBy=multi-user.target&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;I have 4 such files:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;on earth:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;/etc/systemd/system/test_process_1.service&lt;BR /&gt;/etc/systemd/system/test_process_2.service&lt;BR /&gt;/etc/systemd/system/test_process_3.service&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;on ariel:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;/etc/systemd/system/test_process_1.service&lt;/P&gt;
&lt;P&gt;I started them via systemctl start command&lt;/P&gt;
&lt;P&gt;I saw in the documentation that there are minimum requirements for process to be detected, but also that I can manually configure simple and advanced detection rules:&lt;/P&gt;
&lt;P&gt;1. Process availability:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28762i952F8AB5EFB1E81E/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;2. Simple detection rule:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gencheva_0-1751398055662.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28763i72561890779F5B0F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gencheva_0-1751398055662.png" alt="gencheva_0-1751398055662.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;3. Advanced detection rule:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gencheva_1-1751398101010.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28764i6492AB5F5BF010FF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gencheva_1-1751398101010.png" alt="gencheva_1-1751398101010.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;deni@earth:~$ ps aux | grep test_process&lt;BR /&gt;deni 2471839 0.9 1.3 1524292 107536 ? Ssl 15:56 3:24 node /home/deni/test_process.js&lt;BR /&gt;deni 2519941 0.9 1.4 1451128 113156 ? Ssl 20:25 0:55 node /home/deni/test_process.js&lt;BR /&gt;deni 2520441 0.9 1.3 1524392 109880 ? Ssl 20:28 0:54 node /home/deni/test_process.js&lt;/P&gt;
&lt;P&gt;deni@ariel:~$ ps aux | grep test_process&lt;BR /&gt;deni 185724 3.9 0.1 12203484 126772 ? Ssl 16:48 0:01 node /home/deni/test_process.js&lt;/P&gt;
&lt;P&gt;The final result is:&lt;/P&gt;
&lt;P&gt;1. I have 2 process groups with 1 process in each on earth:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gencheva_2-1751398150198.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28765i2C4459EB6BE3A716/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gencheva_2-1751398150198.png" alt="gencheva_2-1751398150198.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;2. Nothing on ariel&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I don't understand is:&lt;/P&gt;
&lt;P&gt;1. Why there are 4 started processes, but only 2 are visible?&lt;/P&gt;
&lt;P&gt;2. Even they have the same env variable why the simple detection rule don't group them?&lt;/P&gt;
&lt;P&gt;3. Why the one is shown as "node /home/deni/test_process.js" and the other as "/home/deni/test_process.js"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;Regards, Deni&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 02 Jul 2025 07:05:09 GMT</pubDate>
    <dc:creator>deni</dc:creator>
    <dc:date>2025-07-02T07:05:09Z</dc:date>
    <item>
      <title>Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280556#M36921</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I'm trying to make 2 simple node js processes and add them in process group.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is my current setup:&lt;/P&gt;
&lt;P&gt;2 oneagents on 2 hosts - &lt;STRONG&gt;ariel&lt;/STRONG&gt; and &lt;STRONG&gt;earth&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;node js source code:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;#!/usr/bin/env node&lt;/P&gt;
&lt;P&gt;setInterval(() =&amp;gt; {&lt;BR /&gt;console.log('Process 1 is running...');&lt;BR /&gt;}, 60000);&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;service config files content:&lt;BR /&gt;&lt;/STRONG&gt;[Unit]&lt;BR /&gt;Description=My Dummy Process&lt;BR /&gt;After=network.target&lt;/P&gt;
&lt;P&gt;[Service]&lt;BR /&gt;Environment=NODE_GROUP=nodejs-test&lt;BR /&gt;ExecStart=/home/deni/test_process.js&lt;BR /&gt;Restart=always&lt;BR /&gt;User=deni&lt;BR /&gt;Group=deni&lt;/P&gt;
&lt;P&gt;[Install]&lt;BR /&gt;WantedBy=multi-user.target&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;I have 4 such files:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;on earth:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;/etc/systemd/system/test_process_1.service&lt;BR /&gt;/etc/systemd/system/test_process_2.service&lt;BR /&gt;/etc/systemd/system/test_process_3.service&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;on ariel:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;/etc/systemd/system/test_process_1.service&lt;/P&gt;
&lt;P&gt;I started them via systemctl start command&lt;/P&gt;
&lt;P&gt;I saw in the documentation that there are minimum requirements for process to be detected, but also that I can manually configure simple and advanced detection rules:&lt;/P&gt;
&lt;P&gt;1. Process availability:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28762i952F8AB5EFB1E81E/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;2. Simple detection rule:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gencheva_0-1751398055662.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28763i72561890779F5B0F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gencheva_0-1751398055662.png" alt="gencheva_0-1751398055662.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;3. Advanced detection rule:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gencheva_1-1751398101010.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28764i6492AB5F5BF010FF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gencheva_1-1751398101010.png" alt="gencheva_1-1751398101010.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;deni@earth:~$ ps aux | grep test_process&lt;BR /&gt;deni 2471839 0.9 1.3 1524292 107536 ? Ssl 15:56 3:24 node /home/deni/test_process.js&lt;BR /&gt;deni 2519941 0.9 1.4 1451128 113156 ? Ssl 20:25 0:55 node /home/deni/test_process.js&lt;BR /&gt;deni 2520441 0.9 1.3 1524392 109880 ? Ssl 20:28 0:54 node /home/deni/test_process.js&lt;/P&gt;
&lt;P&gt;deni@ariel:~$ ps aux | grep test_process&lt;BR /&gt;deni 185724 3.9 0.1 12203484 126772 ? Ssl 16:48 0:01 node /home/deni/test_process.js&lt;/P&gt;
&lt;P&gt;The final result is:&lt;/P&gt;
&lt;P&gt;1. I have 2 process groups with 1 process in each on earth:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gencheva_2-1751398150198.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28765i2C4459EB6BE3A716/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gencheva_2-1751398150198.png" alt="gencheva_2-1751398150198.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;2. Nothing on ariel&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I don't understand is:&lt;/P&gt;
&lt;P&gt;1. Why there are 4 started processes, but only 2 are visible?&lt;/P&gt;
&lt;P&gt;2. Even they have the same env variable why the simple detection rule don't group them?&lt;/P&gt;
&lt;P&gt;3. Why the one is shown as "node /home/deni/test_process.js" and the other as "/home/deni/test_process.js"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;Regards, Deni&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 07:05:09 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280556#M36921</guid>
      <dc:creator>deni</dc:creator>
      <dc:date>2025-07-02T07:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280561#M36922</link>
      <description>&lt;P&gt;If I understood correctly, you want to see all four processes in four different process groups. If that’s correct, you can achieve it using a simple detection rule. For this, you need to use a proper environment variable to identify each process.&lt;BR /&gt;&lt;BR /&gt;In my case I have added &amp;nbsp;below &amp;nbsp;variables and started the service . I could see expected result here.&lt;/P&gt;&lt;P&gt;export MY_PG_NAME=nodejs1&lt;BR /&gt;export MY_PG_INSTANCE_NAME=nodejs_1&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-07-01 at 8.31.48 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28766i857ABAD06A3B1E09/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-07-01 at 8.31.48 PM.png" alt="Screenshot 2025-07-01 at 8.31.48 PM.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-07-01 at 8.32.11 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28767i44D1CBB5C42DC6E5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-07-01 at 8.32.11 PM.png" alt="Screenshot 2025-07-01 at 8.32.11 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is the document :&amp;nbsp;&lt;A href="https://docs.dynatrace.com/docs/observe/infrastructure-monitoring/process-groups/configuration/pg-detection#simple" target="_blank"&gt;https://docs.dynatrace.com/docs/observe/infrastructure-monitoring/process-groups/configuration/pg-detection#simple&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If you do not explicitly define the rule, Dynatrace will detect all these processes as a single process group and its instance. It will then treat the other processes as worker processes under that group.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 01:44:50 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280561#M36922</guid>
      <dc:creator>Akhil-Jayendran</dc:creator>
      <dc:date>2025-07-02T01:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280564#M36923</link>
      <description>&lt;P&gt;No, I want to see them in one group.&amp;nbsp; I followed the same document and I have simple and advanced detection rules (there are screenshots in my first post ). That is why I&amp;nbsp; have this line in service definition: "Environment=NODE_GROUP=nodejs-test" and in my simple detection rule I'm using environment variable and I have group identifier "nodejs-test".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;deni@ariel:~$ ps aux | grep test_process&lt;BR /&gt;deni 185724 0.4 0.1 12203740 131128 ? Ssl Jul01 4:29 node /home/deni/test_process.js&lt;BR /&gt;deni 602635 0.0 0.0 9616 2880 pts/0 S+ 09:15 0:00 grep test_process&lt;BR /&gt;deni@ariel:~$ cat /proc/185724/environ&lt;BR /&gt;LANG=en_US.UTF-8LANGUAGE=en_US:enPATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/binXDG_DATA_DIRS=/var/lib/flatpak/exports/share:/usr/local/share/:/usr/share/HOME=/home/deniLOGNAME=deniUSER=deniSHELL=/bin/bashINVOCATION_ID=69466538697a41d1b241d6481019bab6JOURNAL_STREAM=8:1726884SYSTEMD_EXEC_PID=185724&lt;STRONG&gt;NODE_GROUP=nodejs-test&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;deni@earth:~$ ps aux | grep test_process&lt;BR /&gt;deni 2471839 0.8 1.3 1524804 111480 ? Ssl Jul01 9:14 node /home/deni/test_process.js&lt;BR /&gt;deni 2519941 0.8 1.4 1451384 115300 ? Ssl Jul01 6:45 node /home/deni/test_process.js&lt;BR /&gt;deni 2520441 0.8 1.4 1524648 112892 ? Ssl Jul01 6:43 node /home/deni/test_process.js&lt;BR /&gt;deni 2657402 0.0 0.0 9456 2096 pts/1 S+ 09:16 0:00 grep test_process&lt;BR /&gt;deni@earth:~$ cat /proc/2471839/environ&lt;BR /&gt;LANG=en_US.UTF-8LANGUAGE=en_US:enPATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/binHOME=/home/deniLOGNAME=deniUSER=deniSHELL=/bin/bashINVOCATION_ID=644556a451b0474f87f57f0e85318a8cJOURNAL_STREAM=8:6499546deni@earth:~$ ps aux | grep test_process&lt;BR /&gt;deni 2471839 0.8 1.3 1524804 111480 ? Ssl Jul01 9:14 node /home/deni/test_process.js&lt;BR /&gt;deni 2519941 0.8 1.4 1451384 115300 ? Ssl Jul01 6:45 node /home/deni/test_process.js&lt;BR /&gt;deni 2520441 0.8 1.4 1524648 112892 ? Ssl Jul01 6:43 node /home/deni/test_process.js&lt;BR /&gt;deni 2657402 0.0 0.0 9456 2096 pts/1 S+ 09:16 0:00 grep test_process&lt;BR /&gt;deni@earth:~$ cat /proc/2471839/environ&lt;BR /&gt;LANG=en_US.UTF-8LANGUAGE=en_US:enPATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/binHOME=/home/deniLOGNAME=deniUSER=deniSHELL=/bin/bashINVOCATION_ID=644556a451b0474f87f57f0e85318a8cJOURNAL_STREAM=8:6499546NODE_GROUP=nodejs-testdeni@earth:~$&lt;BR /&gt;deni@earth:~$ cat /proc/2519941/environ&lt;BR /&gt;LANG=en_US.UTF-8LANGUAGE=en_US:enPATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/binHOME=/home/deniLOGNAME=deniUSER=deniSHELL=/bin/bashINVOCATION_ID=dab07f3b2e7749368af80272c7a08f50JOURNAL_STREAM=8:6573636NODE_GROUP=nodejs-testdeni@earth:~$&lt;BR /&gt;deni@earth:~$ cat /proc/2520441/environ&lt;BR /&gt;LANG=en_US.UTF-8LANGUAGE=en_US:enPATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/binHOME=/home/deniLOGNAME=deniUSER=deniSHELL=/bin/bashINVOCATION_ID=a80a5b374aa64daf8a018f9a3aaffa92JOURNAL_STREAM=8:6574482&lt;STRONG&gt;NODE_GROUP=nodejs-test&lt;/STRONG&gt;&lt;BR /&gt;deni@earth:~$&lt;BR /&gt;deni@earth:~$ cat /proc/2519941/environ&lt;BR /&gt;LANG=en_US.UTF-8LANGUAGE=en_US:enPATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/binHOME=/home/deniLOGNAME=deniUSER=deniSHELL=/bin/bashINVOCATION_ID=dab07f3b2e7749368af80272c7a08f50JOURNAL_STREAM=8:6573636NODE_GROUP=&lt;STRONG&gt;nodejs-test&lt;/STRONG&gt;&lt;BR /&gt;deni@earth:~$ cat /proc/2520441/environ&lt;BR /&gt;LANG=en_US.UTF-8LANGUAGE=en_US:enPATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/binHOME=/home/deniLOGNAME=deniUSER=deniSHELL=/bin/bashINVOCATION_ID=a80a5b374aa64daf8a018f9a3aaffa92JOURNAL_STREAM=8:6574482&lt;STRONG&gt;NODE_GROUP=nodejs-test&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 06:18:38 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280564#M36923</guid>
      <dc:creator>deni</dc:creator>
      <dc:date>2025-07-02T06:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280613#M36930</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/90225"&gt;@deni&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think there is a small error in your simple detection rule. Usually, in that configuration, you should provide your environment variable key as the group identifier [ which is &lt;STRONG&gt;NODE_GROUP&lt;/STRONG&gt; ], and Dynatrace will use the value of this key as the name of the process group. and app process as its workers .&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-07-02 at 10.14.35 AM.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28777i3D6E3B315C3DF733/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-07-02 at 10.14.35 AM.png" alt="Screenshot 2025-07-02 at 10.14.35 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 15:15:43 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280613#M36930</guid>
      <dc:creator>Akhil-Jayendran</dc:creator>
      <dc:date>2025-07-02T15:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280624#M36932</link>
      <description>&lt;P&gt;I tried to change it:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gencheva_0-1751472822437.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28779i90078C169970FFFE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gencheva_0-1751472822437.png" alt="gencheva_0-1751472822437.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;and also removed the other two rules - advanced and availability, but the result is still the same.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 16:14:29 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280624#M36932</guid>
      <dc:creator>deni</dc:creator>
      <dc:date>2025-07-02T16:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280629#M36934</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/90225"&gt;@deni&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Have you restarted the Node.js process after making this change? I replicated the exact same scenario as you and got the expected result.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-07-02 at 12.24.39 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28781i889214527FF9EEEF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-07-02 at 12.24.39 PM.png" alt="Screenshot 2025-07-02 at 12.24.39 PM.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-07-02 at 12.24.56 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28782iB2A0EA3F0C782A09/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-07-02 at 12.24.56 PM.png" alt="Screenshot 2025-07-02 at 12.24.56 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Started the service using &amp;nbsp;below command&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;export MY_PG_NAME=nodejs_test;export MY_PG_INSTANCE_NAME=nodejs_1;/bin/node /root/node-scripts/process.js &amp;amp;&lt;BR /&gt;export MY_PG_NAME=nodejs_test;export MY_PG_INSTANCE_NAME=nodejs_2;/bin/node /root/node-scripts/process.js &amp;amp;&lt;BR /&gt;export MY_PG_NAME=nodejs_test;export MY_PG_INSTANCE_NAME=nodejs_3;/bin/node /root/node-scripts/process.js &amp;amp;&lt;BR /&gt;&lt;BR /&gt;Not sure what's going wrong&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 17:31:30 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280629#M36934</guid>
      <dc:creator>Akhil-Jayendran</dc:creator>
      <dc:date>2025-07-02T17:31:30Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280634#M36936</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;I tried to follow your steps, if I understand correct:&lt;/P&gt;&lt;P&gt;1. Modify my simple detection rule:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gencheva_0-1751482310946.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28783i952043FD88013C20/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gencheva_0-1751482310946.png" alt="gencheva_0-1751482310946.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;2. Stop all of my started with systemctl processes.&lt;/P&gt;&lt;P&gt;3. Started them again as you advised:&lt;/P&gt;&lt;P&gt;deni@earth:~$ export MY_PG_NAME=nodejs_test;export MY_PG_INSTANCE_NAME=nodejs_1;/bin/node /home/deni/test_process.js &amp;amp;&lt;BR /&gt;[1] 2798310&lt;BR /&gt;deni@earth:~$ export MY_PG_NAME=nodejs_test;export MY_PG_INSTANCE_NAME=nodejs_2;/bin/node /home/deni/test_process.js &amp;amp;&lt;BR /&gt;[2] 2798366&lt;BR /&gt;deni@earth:~$ export MY_PG_NAME=nodejs_test;export MY_PG_INSTANCE_NAME=nodejs_3;/bin/node /home/deni/test_process.js &amp;amp;&lt;BR /&gt;[3] 2798400&lt;BR /&gt;deni@earth:~$ ps -aux | grep test_pr&lt;BR /&gt;deni 2798310 3.2 1.2 1524072 102404 pts/2 Sl 21:44 0:00 /bin/node /home/deni/test_process.js&lt;BR /&gt;deni 2798366 4.1 1.2 1524268 98004 pts/2 Sl 21:44 0:00 /bin/node /home/deni/test_process.js&lt;BR /&gt;deni 2798400 5.3 1.3 1521916 103924 pts/2 Sl 21:44 0:00 /bin/node /home/deni/test_process.js&lt;BR /&gt;deni 2798446 0.0 0.0 9456 2208 pts/2 S+ 21:44 0:00 grep test_pr&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;deni@ariel:~$ export MY_PG_NAME=nodejs_test;export MY_PG_INSTANCE_NAME=nodejs_4;/bin/node /home/deni/test_process.js &amp;amp;&lt;BR /&gt;[2] 169536&lt;BR /&gt;[1] Exit 143 /bin/node /home/deni/test_process.js&lt;BR /&gt;deni@ariel:~$ ps -aux | grep test_pr&lt;BR /&gt;deni 169536 10.9 0.1 12276956 126808 pts/0 Sl 21:43 0:01 /bin/node /home/deni/test_process.js&lt;BR /&gt;deni 169710 0.0 0.0 9616 2896 pts/0 S+ 21:43 0:00 grep test_pr&lt;BR /&gt;deni@ariel:~$ Process 1 is running...&lt;BR /&gt;^C&lt;BR /&gt;deni@ariel:~$ ps -aux | grep test_pr&lt;BR /&gt;deni 169536 2.1 0.1 12277212 127124 pts/0 Sl 21:43 0:02 /bin/node /home/deni/test_process.js&lt;BR /&gt;deni 170949 0.0 0.0 9616 2896 pts/0 S+ 21:45 0:00 grep test_pr&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I see 4 processes detected all on earth:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gencheva_1-1751482459561.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28784i2CC6A69B3CC99D1C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gencheva_1-1751482459561.png" alt="gencheva_1-1751482459561.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(I opened them one by one to check that the host is earth)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the host process analysis I see:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gencheva_2-1751482545387.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28785i85E166FFA9E0D251/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gencheva_2-1751482545387.png" alt="gencheva_2-1751482545387.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;On ariel&amp;nbsp;&amp;nbsp; there is nothing.&lt;/P&gt;&lt;P&gt;I still don't understand why there is nothing on ariel and why it can generated so different names of the process on earth?&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 18:58:11 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280634#M36936</guid>
      <dc:creator>deni</dc:creator>
      <dc:date>2025-07-02T18:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280636#M36937</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/52584"&gt;@Akhil-Jayendran&lt;/a&gt;From which screen is your screenshot? For now I only check the host -&amp;gt; process analysis and technologies &amp;amp; processes?&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 19:08:26 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280636#M36937</guid>
      <dc:creator>deni</dc:creator>
      <dc:date>2025-07-02T19:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280637#M36938</link>
      <description>&lt;P&gt;The environment variables might not have been passed correctly to the Node.js process.&lt;BR /&gt;Verify they are present using the following command:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;cat /proc/&amp;lt;PID&amp;gt;/environ | tr '\0' '\n' | grep MY_&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 19:24:33 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280637#M36938</guid>
      <dc:creator>radek_jasinski</dc:creator>
      <dc:date>2025-07-02T19:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280645#M36942</link>
      <description>&lt;P&gt;deni@earth:~$ ps -aux | grep test_pr&lt;BR /&gt;deni 2835174 4.4 1.2 1523952 100092 pts/1 Sl 01:10 0:00 /bin/node /home/deni/test_process.js&lt;BR /&gt;deni 2835232 6.0 1.3 1455276 106920 pts/1 Sl 01:10 0:00 /bin/node /home/deni/test_process.js&lt;BR /&gt;deni 2835267 13.0 1.2 1529760 103516 pts/1 Sl 01:10 0:00 /bin/node /home/deni/test_process.js&lt;BR /&gt;deni 2835293 0.0 0.0 9456 2024 pts/1 S+ 01:10 0:00 grep test_pr&lt;BR /&gt;deni@earth:~$ cat /proc/2835174/environ&lt;BR /&gt;SHELL=/bin/bash&lt;STRONG&gt;MY_PG_INSTANCE_NAME=nodejs_1&lt;/STRONG&gt;LANGUAGE=en_US:en&lt;STRONG&gt;MY_PG_NAME=nodejs_test&lt;/STRONG&gt;PWD=/home/deniLOGNAME=deniXDG_SESSION_TYPE=ttyMOTD_SHOWN=pamHOME=/home/deniLANG=en_US.UTF-8LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:SSH_CONNECTION=192.168.0.2 39448 192.168.0.110 22XDG_SESSION_CLASS=userTERM=xterm-256colorUSER=deniSHLVL=0XDG_SESSION_ID=2446XDG_RUNTIME_DIR=/run/user/1000SSH_CLIENT=192.168.0.2 39448 22PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/gamesDBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/busSSH_TTY=/dev/pts/1_=/bin/nodedeni@earth:~$&lt;BR /&gt;deni@earth:~$ cat /proc/2835232/environ&lt;BR /&gt;SHELL=/bin/bash&lt;STRONG&gt;MY_PG_INSTANCE_NAME=nodejs_2&lt;/STRONG&gt;LANGUAGE=en_US:en&lt;STRONG&gt;MY_PG_NAME=nodejs_test&lt;/STRONG&gt;PWD=/home/deniLOGNAME=deniXDG_SESSION_TYPE=ttyMOTD_SHOWN=pamHOME=/home/deniLANG=en_US.UTF-8LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:SSH_CONNECTION=192.168.0.2 39448 192.168.0.110 22XDG_SESSION_CLASS=userTERM=xterm-256colorUSER=deniSHLVL=0XDG_SESSION_ID=2446XDG_RUNTIME_DIR=/run/user/1000SSH_CLIENT=192.168.0.2 39448 22PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/gamesDBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/busSSH_TTY=/dev/pts/1_=/bin/nodedeni@earth:~$&lt;BR /&gt;deni@earth:~$ cat /proc/2835267/environ&lt;BR /&gt;SHELL=/bin/bash&lt;STRONG&gt;MY_PG_INSTANCE_NAME=nodejs_1&lt;/STRONG&gt;LANGUAGE=en_US:en&lt;STRONG&gt;MY_PG_NAME=nodejs_test&lt;/STRONG&gt;PWD=/home/deniLOGNAME=deniXDG_SESSION_TYPE=ttyMOTD_SHOWN=pamHOME=/home/deniLANG=en_US.UTF-8LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:SSH_CONNECTION=192.168.0.2 39448 192.168.0.110 22XDG_SESSION_CLASS=userTERM=xterm-256colorUSER=deniSHLVL=0XDG_SESSION_ID=2446XDG_RUNTIME_DIR=/run/user/1000SSH_CLIENT=192.168.0.2 39448 22PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/gamesDBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/busSSH_TTY=/dev/pts/1_=/bin/nodede&lt;BR /&gt;&lt;BR /&gt;deni@ariel:~$ ps -aux | grep test_pr&lt;BR /&gt;deni 169536 0.5 0.1 12277212 130500 pts/0 Sl Jul02 1:07 /bin/node /home/deni/test_process.js&lt;BR /&gt;deni 256285 0.0 0.0 9616 2860 pts/0 S+ 01:09 0:00 grep test_pr&lt;BR /&gt;deni@ariel:~$ cat /proc/169536/environ&lt;BR /&gt;SHELL=/bin/bashSESSION_MANAGER=local/ariel:@/tmp/.ICE-unix/8734,unix/ariel:/tmp/.ICE-unix/8734QT_ACCESSIBILITY=1COLORTERM=truecolor&lt;STRONG&gt;MY_PG_INSTANCE_NAME=nodejs_4&lt;/STRONG&gt;NVM_INC=/home/deni/.nvm/versions/node/v12.18.1/include/nodeXDG_MENU_PREFIX=gnome-GNOME_DESKTOP_SESSION_ID=this-is-deprecatedGTK_IM_MODULE=ibusFNM_ARCH=x64LANGUAGE=en_US:enJAVA_HOME=/usr/lib/jvm/zulu-17-amd64SSH_AUTH_SOCK=/run/user/1000/keyring/sshFNM_NODE_DIST_MIRROR=&lt;A href="https://nodejs.org/distSDKMAN_CANDIDATES_DIR=/home/deni/.sdkman/candidatesXMODIFIERS=@im=ibusDESKTOP_SESSION=gnome-xorgSSH_AGENT_PID=8666" target="_blank"&gt;https://nodejs.org/distSDKMAN_CANDIDATES_DIR=/home/deni/.sdkman/candidatesXMODIFIERS=@im=ibusDESKTOP_SESSION=gnome-xorgSSH_AGENT_PID=8666&lt;/A&gt;&lt;STRONG&gt;MY_PG_NAME=nodejs_test&lt;/STRONG&gt;GTK_MODULES=gail:atk-bridgePWD=/home/deniLOGNAME=deniXDG_SESSION_DESKTOP=gnome-xorgXDG_SESSION_TYPE=x11GPG_AGENT_INFO=/run/user/1000/gnupg/S.gpg-agent:0:1SYSTEMD_EXEC_PID=8751XAUTHORITY=/run/user/1000/gdm/XauthorityWINDOWPATH=2GDM_LANG=en_US.UTF-8HOME=/home/deniUSERNAME=deniLANG=en_US.UTF-8LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.swp=00;90:*.tmp=00;90:*.dpkg-dist=00;90:*.dpkg-old=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:XDG_CURRENT_DESKTOP=GNOMEVTE_VERSION=7006SDKMAN_VERSION=5.15.0GNOME_TERMINAL_SCREEN=/org/gnome/Terminal/screen/262c6731_06b9_4f8c_9d1f_fa530d43cbacNVM_DIR=/home/deni/.nvmXDG_SESSION_CLASS=userTERM=xterm-256colorUSER=deniGNOME_TERMINAL_SERVICE=:1.104SDKMAN_DIR=/home/deni/.sdkmanDISPLAY=:0SHLVL=0NVM_CD_FLAGS=QT_IM_MODULE=ibusSDKMAN_CANDIDATES_API=&lt;A href="https://api.sdkman.io/2XDG_RUNTIME_DIR=/run/user/1000MVND_HOME=/home/deni/.sdkman/candidates/mvnd/currentXDG_DATA_DIRS=/usr/share/gnome:/home/deni/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share/:/usr/share/:/var/lib/snapd/desktopPATH=/home/deni/.sdkman/candidates/mvnd/current/bin:/tmp/fnm_multishells/22860_1751470566343/bin:/home/deni/.fnm:/home/deni/.nvm/versions/node/v12.18.1/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/snap/bin:/home/deni/.dotnet/tools:/sbin:/home/deni/.local/bin:/opt/dynatrace/oneagent/agent/toolsGDMSESSION=gnome-xorgDBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/busSDKMAN_PLATFORM=linuxx64NVM_BIN=/home/deni/.nvm/versions/node/v12.18.1/binFNM_DIR=/home/deni/.fnmFNM_MULTISHELL_PATH=/tmp/fnm_multishells/22860_1751470566343FNM_LOGLEVEL=infoOLDPWD=/home/deni/downloads/certs_=/bin/nodedeni@ariel:~$" target="_blank"&gt;https://api.sdkman.io/2XDG_RUNTIME_DIR=/run/user/1000MVND_HOME=/home/deni/.sdkman/candidates/mvnd/currentXDG_DATA_DIRS=/usr/share/gnome:/home/deni/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share/:/usr/share/:/var/lib/snapd/desktopPATH=/home/deni/.sdkman/candidates/mvnd/current/bin:/tmp/fnm_multishells/22860_1751470566343/bin:/home/deni/.fnm:/home/deni/.nvm/versions/node/v12.18.1/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/snap/bin:/home/deni/.dotnet/tools:/sbin:/home/deni/.local/bin:/opt/dynatrace/oneagent/agent/toolsGDMSESSION=gnome-xorgDBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/busSDKMAN_PLATFORM=linuxx64NVM_BIN=/home/deni/.nvm/versions/node/v12.18.1/binFNM_DIR=/home/deni/.fnmFNM_MULTISHELL_PATH=/tmp/fnm_multishells/22860_1751470566343FNM_LOGLEVEL=infoOLDPWD=/home/deni/downloads/certs_=/bin/nodedeni@ariel:~$&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 22:21:46 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280645#M36942</guid>
      <dc:creator>deni</dc:creator>
      <dc:date>2025-07-02T22:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280646#M36943</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/90225"&gt;@deni&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Since you’ve conducted many experiments, Dynatrace has already created some process groups, which will remain in the historical data and can be ignored. At the top, there’s a time picker and please select the last 10 minutes or so and check which process group is actively delivering metrics. You can ignore all the inactive ones. after your change you should &amp;nbsp;see only one active process group and that have data. Can you confirm that ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 22:48:42 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280646#M36943</guid>
      <dc:creator>Akhil-Jayendran</dc:creator>
      <dc:date>2025-07-02T22:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280683#M36957</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/52584"&gt;@Akhil-Jayendran&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;Yes, I'm currently learning for the Foundation Certificate and experimenting to understand how all this works in practice.&lt;/P&gt;&lt;P&gt;I switch the filter to last 10 minutes (the processes are as in my last comment - 3 on earth and 1 on ariel). Now I see only one process on earth:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gencheva_0-1751539443128.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28793i09FEC584B54C29DD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gencheva_0-1751539443128.png" alt="gencheva_0-1751539443128.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I still don't understand how Dynatrace choose this process names - till now I saw a lot - full path, full path with node in-front, js file name and now the env variable name.&lt;BR /&gt;I have no idea why on host ariel nothing is detected even that the configs are the same (I copy and paste them). Is there some oneagent logs or some place where I can check which rule Dynatrace use to detect the process, may be some errors ...?&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jul 2025 10:50:24 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280683#M36957</guid>
      <dc:creator>deni</dc:creator>
      <dc:date>2025-07-03T10:50:24Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280706#M36959</link>
      <description>&lt;DIV&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/90225"&gt;@deni&lt;/a&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;BR /&gt;I think this is an excellent result . You can see only one process group based on the environment variable value. Within this process group, you’ll likely see two process instances — one for Earth and one for Arial. If you’d like to see two separate process groups, there are a couple of ways to achieve that:&lt;/DIV&gt;&lt;DIV&gt;- Use a unique environment variable for each host process — for example, on the Earth host: &lt;STRONG&gt;MY_PG_NAME=nodejs_test_earth,&lt;/STRONG&gt; and on the Arial host: &lt;STRONG&gt;MY_PG_NAME=nodejs_test_arial&lt;/STRONG&gt;. This will result in two distinct process groups as shown in the screenshot.&lt;/DIV&gt;&lt;DIV&gt;- Alternatively, you can use a unique host group for each host. This will not only separate the Node.js processes but also group all processes by their respective hosts.&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;Wishing you a great learning experience! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; !!&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jul 2025 13:17:50 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280706#M36959</guid>
      <dc:creator>Akhil-Jayendran</dc:creator>
      <dc:date>2025-07-03T13:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280738#M36961</link>
      <description>&lt;P&gt;Can you confirm ariel and earth are in the same hostgroup? &amp;nbsp;Process groups can't span different host groups.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jul 2025 15:51:27 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280738#M36961</guid>
      <dc:creator>mgome</dc:creator>
      <dc:date>2025-07-03T15:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280759#M36962</link>
      <description>&lt;P&gt;I didn't assign host group to them:&lt;BR /&gt;deni@earth:~$ sudo /opt/dynatrace/oneagent/agent/tools/oneagentctl --get-host-group&lt;BR /&gt;&lt;A href="mailto:deni@earth:~$" target="_blank"&gt;deni@earth:~$ &lt;/A&gt;&lt;/P&gt;&lt;P&gt;deni@ariel:~$ sudo oneagentctl --get-host-group&lt;BR /&gt;deni@ariel:~$&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jul 2025 20:30:34 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280759#M36962</guid>
      <dc:creator>deni</dc:creator>
      <dc:date>2025-07-03T20:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280760#M36963</link>
      <description>&lt;P&gt;Thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; I'm actively learning and with your help I'm sure I'll succeed &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I want to see one process group with at least 2 processes. Still don't understand why I see only one process in this process group.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jul 2025 20:33:15 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280760#M36963</guid>
      <dc:creator>deni</dc:creator>
      <dc:date>2025-07-03T20:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280872#M36969</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/90225"&gt;@deni&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;If you follow the instructions, you should see something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One process group:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-07-04 at 1.31.39 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28834iCC3630869299E563/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-07-04 at 1.31.39 PM.png" alt="Screenshot 2025-07-04 at 1.31.39 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Two process instances — one for each server&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="Screenshot 2025-07-04 at 1.32.09 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28835i2809174AD060C3EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-07-04 at 1.32.09 PM.png" alt="Screenshot 2025-07-04 at 1.32.09 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you’re not seeing this on your Arial host, please make sure the OneAgent is active, and that Node.js is properly installed and running.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jul 2025 18:41:15 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280872#M36969</guid>
      <dc:creator>Akhil-Jayendran</dc:creator>
      <dc:date>2025-07-04T18:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: Can't configure process group</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280873#M36970</link>
      <description>&lt;P&gt;Yes, this is what I'm trying to do.&lt;/P&gt;&lt;P&gt;I tried something else: Wrote two python scrips which open ports and should be detected&amp;nbsp; automatically by Dynatrace (without any configuration). I noticed that process names differs on two hosts - python3 on ariel and test_python.py on earth. The difference between two hosts is the Debian version:&lt;/P&gt;&lt;P&gt;deni@earth:~$ uname -a&lt;BR /&gt;Linux earth 5.10.0-1-amd64 #1 SMP Debian 5.10.4-1 (2020-12-31) x86_64 GNU/Linux&lt;/P&gt;&lt;P&gt;deni@ariel:~/dynatrace/easytrade$ uname -a&lt;BR /&gt;Linux ariel 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64 GNU/Linux&lt;/P&gt;&lt;P&gt;So I still don't understand how Dynatrace chooses the process names. Of course they were in 2 different groups because of the name. I fixed this by setting process name in the python script so I can see both python processes in one process group.&lt;/P&gt;&lt;P&gt;For me this means that onegents works as expected on both hosts and the problem is with the simple process detection or may be nodejs?&lt;BR /&gt;deni@ariel:~/dynatrace/easytrade$ node -v&lt;BR /&gt;v14.18.1&lt;/P&gt;&lt;P&gt;deni@earth:~$ node -v&lt;BR /&gt;v12.22.12&lt;BR /&gt;But since the process is visible on ariel with ps -aux it should running properly, so may be the problem is somewhere with its name detection? Can it be something like this? Does oneagent has some log directories where I can see some debug info on how it detects processes? May be to start it with some debug flag?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jul 2025 19:42:10 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Can-t-configure-process-group/m-p/280873#M36970</guid>
      <dc:creator>deni</dc:creator>
      <dc:date>2025-07-04T19:42:10Z</dc:date>
    </item>
  </channel>
</rss>

