<?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 Proxyless NodeJS - BTs being named with &amp;quot;FIXME&amp;quot;  suffix in Splunk AppDynamics</title>
    <link>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723380#M3691</link>
    <description>&lt;P&gt;Hi there!&lt;/P&gt;

&lt;P&gt;I'was experimenting the proxyless NodeJS agent by setting "libagent: true" in the appdynamics&amp;nbsp;profile settings.&lt;/P&gt;

&lt;P&gt;Although, new Business Transactions were created with a "FIXME" suffix.&lt;/P&gt;
&lt;P&gt;E.g.: /authenticate =&amp;gt; /authenticate.FIXME&lt;/P&gt;

&lt;P&gt;Do you guys have any idea why that happens and how I could fix that?&lt;/P&gt;

&lt;P&gt;Thanks in advance,&lt;/P&gt;
&lt;P&gt;- Gabriel Saldanha (@gcrsaldanha)&lt;/P&gt;</description>
    <pubDate>Wed, 29 Nov 2017 22:13:28 GMT</pubDate>
    <dc:creator>CommunityUser</dc:creator>
    <dc:date>2017-11-29T22:13:28Z</dc:date>
    <item>
      <title>Proxyless NodeJS - BTs being named with "FIXME"  suffix</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723380#M3691</link>
      <description>&lt;P&gt;Hi there!&lt;/P&gt;

&lt;P&gt;I'was experimenting the proxyless NodeJS agent by setting "libagent: true" in the appdynamics&amp;nbsp;profile settings.&lt;/P&gt;

&lt;P&gt;Although, new Business Transactions were created with a "FIXME" suffix.&lt;/P&gt;
&lt;P&gt;E.g.: /authenticate =&amp;gt; /authenticate.FIXME&lt;/P&gt;

&lt;P&gt;Do you guys have any idea why that happens and how I could fix that?&lt;/P&gt;

&lt;P&gt;Thanks in advance,&lt;/P&gt;
&lt;P&gt;- Gabriel Saldanha (@gcrsaldanha)&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 22:13:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723380#M3691</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2017-11-29T22:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: Proxyless NodeJS - BTs being named with "FIXME"  suffix</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723381#M3692</link>
      <description>&lt;P&gt;Hi Gabriel,&lt;/P&gt;

&lt;P&gt;Could you provide a small code sample of what you're trying to instrument? Also, what version of the agent is this?&lt;/P&gt;

&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Kyle&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 19:27:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723381#M3692</guid>
      <dc:creator>Kyle_Furlong</dc:creator>
      <dc:date>2017-11-30T19:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: Proxyless NodeJS - BTs being named with "FIXME"  suffix</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723382#M3693</link>
      <description>&lt;P&gt;Hi Kyle!&lt;/P&gt;

&lt;P&gt;Thanks for your reply and sorry for taking so long to post this.&lt;/P&gt;

&lt;P&gt;My NodeJS Agent is 4.3.5.&lt;/P&gt;

&lt;P&gt;I'm not sure I can provide a code sample, I can give an overview of the architecture though:&lt;/P&gt;
&lt;P&gt;- I have a config.js file containing a JavaScript object with the AppDynamics configuration (which would be placed in the .profile(...) method of the agent). For example:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;appdynamics : {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; libagent: true,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; controllerHostName: ...,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; controllerPort: ...,&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;

&lt;P&gt;This config object is imported by an app.js file, which also imports the appdynamics agent and initiliazes it:&lt;/P&gt;
&lt;P&gt;app.js:&lt;/P&gt;
&lt;P&gt;import appd from 'appdynamics';&lt;/P&gt;
&lt;P&gt;import config from '../config';&lt;/P&gt;
&lt;P&gt;appd.profile(config.appdynamics);&lt;/P&gt;

&lt;P&gt;When libagent is NOT true (or is inexistent), my BTs are showing fine in the Controller view. Although, as soon as I run my app with libagent: true, every BT is suffixed with ".FIXME" as said in the post.&lt;/P&gt;
&lt;P&gt;I have no ideia what could be wrong. Please let me know if there's anything else I can provide to make it clearer (e.g., a sample app on a Github repo).&lt;/P&gt;

&lt;P&gt;Thanks in advance,&lt;/P&gt;
&lt;P&gt;- Gabriel Saldanha (@gcrsaldanha)&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2017 20:31:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723382#M3693</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2017-12-04T20:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: Proxyless NodeJS - BTs being named with "FIXME"  suffix</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723383#M3694</link>
      <description>&lt;P&gt;Hey Gabriel,&lt;/P&gt;

&lt;P&gt;No worries, always in your own time, and thanks for all the good data. Could you try running with the 4.3.8 agent we just released and libagent mode? Does it still show the FIXME BT naming?&lt;/P&gt;

&lt;P&gt;Thanks an regards,&lt;/P&gt;
&lt;P&gt;Kyle&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2017 20:46:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723383#M3694</guid>
      <dc:creator>Kyle_Furlong</dc:creator>
      <dc:date>2017-12-04T20:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Proxyless NodeJS - BTs being named with "FIXME"  suffix</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723384#M3695</link>
      <description>&lt;P&gt;Hi Kyle!&lt;/P&gt;

&lt;P&gt;I've installed the 4.3.8 agent and it's still showing 'FIXME' suffix.&lt;/P&gt;

&lt;P&gt;Would it be possible that this issue happens because of the fact I had previously discovered BTs (using proxy) and their names would now be duplicated (when running proxyless&amp;nbsp;agent), therefore&amp;nbsp;&amp;nbsp;the suffix is a way to avoid this duplication... Just guessing.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2017 22:49:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723384#M3695</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2017-12-04T22:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: Proxyless NodeJS - BTs being named with "FIXME"  suffix</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723385#M3696</link>
      <description>&lt;P&gt;Hmm, it's possible. Could you try stopping the app, deleting the BTs, then restarting the app?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2017 23:02:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723385#M3696</guid>
      <dc:creator>Kyle_Furlong</dc:creator>
      <dc:date>2017-12-04T23:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: Proxyless NodeJS - BTs being named with "FIXME"  suffix</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723386#M3697</link>
      <description>&lt;P&gt;Hi Kyle,&lt;/P&gt;

&lt;P&gt;I've done it. The authenticate BT is showing only as "authenticate.FIXME". No regular BT. =(&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2017 23:44:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723386#M3697</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2017-12-04T23:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Proxyless NodeJS - BTs being named with "FIXME"  suffix</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723387#M3698</link>
      <description>&lt;P&gt;Hi Gabriel,&lt;/P&gt;

&lt;P&gt;I hate to do this, but I think the only way forward at this point would be to put together a small app that reproduces the issue so that our engineers can take a look at this. Would that be possible?&lt;/P&gt;

&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Kyle&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2017 23:49:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723387#M3698</guid>
      <dc:creator>Kyle_Furlong</dc:creator>
      <dc:date>2017-12-04T23:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Proxyless NodeJS - BTs being named with "FIXME"  suffix</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723388#M3699</link>
      <description>&lt;P&gt;Hi Kyle!&lt;/P&gt;

&lt;P&gt;No problem, I'll make it and I post the code to the GitHub repo here.&lt;/P&gt;

&lt;P&gt;Thanks again for your attention,&lt;/P&gt;
&lt;P&gt;- Gabriel Saldanha (@gcrsaldanha)&lt;/P&gt;</description>
      <pubDate>Tue, 05 Dec 2017 11:08:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723388#M3699</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2017-12-05T11:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: Proxyless NodeJS - BTs being named with "FIXME"  suffix</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723389#M3700</link>
      <description>&lt;P&gt;Hi Kyle!&lt;/P&gt;

&lt;P&gt;I didn't have time to create a sample app yet, although I tried creating a new AppDynamics App and from the beginning setting my agent to NOT use the Proxy (i.e., libagent = true). I am using the SAME NodeJS app.&lt;/P&gt;
&lt;P&gt;The outcome is that everything works normally, so it's good and bad news. Good because it's working, bad because we won't be able to find the root cause of the ".FIXME" problem.&lt;/P&gt;

&lt;P&gt;It's a temporary solution (creating another AppDynamics app). Hope it helps anyone else changing from Proxy -&amp;gt; Proxyless mode.&lt;/P&gt;

&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;- Gabriel Saldanha (@gcrsaldanha)&lt;/P&gt;</description>
      <pubDate>Tue, 05 Dec 2017 17:08:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723389#M3700</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2017-12-05T17:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: Proxyless NodeJS - BTs being named with "FIXME"  suffix</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723390#M3701</link>
      <description>&lt;P&gt;Hi Gabriel,&lt;/P&gt;

&lt;P&gt;Very interesting. We'll keep that in mind in the future. Nice detective work.&lt;/P&gt;

&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Kyle&lt;/P&gt;</description>
      <pubDate>Tue, 05 Dec 2017 17:33:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Proxyless-NodeJS-BTs-being-named-with-quot-FIXME-quot-suffix/m-p/723390#M3701</guid>
      <dc:creator>Kyle_Furlong</dc:creator>
      <dc:date>2017-12-05T17:33:47Z</dc:date>
    </item>
  </channel>
</rss>

