<?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: Getter Chain in Splunk AppDynamics</title>
    <link>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733364#M8445</link>
    <description>&lt;P&gt;Another scenarios: How to achive it.&lt;/P&gt;
&lt;P&gt;1)&amp;nbsp;private bool SendBulkOrders(List&amp;lt;Order&amp;gt; orders) {}&lt;/P&gt;

&lt;P&gt;how to collect data from parameter which is collection of data. In above example i want to cllect orders[0].BucketId&amp;nbsp;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;2)&amp;nbsp;private bool SendObject(Object sender) {}&lt;/P&gt;

&lt;P&gt;In above example, i want to typecast sender to Employee type and collect employe id. like ((Employe)sender).EmpId&lt;/P&gt;</description>
    <pubDate>Thu, 04 Apr 2019 16:25:29 GMT</pubDate>
    <dc:creator>CommunityUser</dc:creator>
    <dc:date>2019-04-04T16:25:29Z</dc:date>
    <item>
      <title>Getter Chain</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733355#M8436</link>
      <description>&lt;P&gt;Hi team,&lt;/P&gt;

&lt;P&gt;We have the following custom code created in order to monitor calls to IBM MQs:&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;private String component&lt;STRONG&gt;,&lt;/STRONG&gt; process&lt;STRONG&gt;,&lt;/STRONG&gt; activity&lt;STRONG&gt;,&lt;/STRONG&gt; sentTo&lt;STRONG&gt;,&lt;/STRONG&gt; origin&lt;STRONG&gt;,&lt;/STRONG&gt; message&lt;STRONG&gt;,&lt;/STRONG&gt; response&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;public String init&lt;STRONG&gt;(&lt;/STRONG&gt;String component&lt;STRONG&gt;,&lt;/STRONG&gt; String process&lt;STRONG&gt;,&lt;/STRONG&gt; String activity&lt;STRONG&gt;,&lt;/STRONG&gt; String payload&lt;STRONG&gt;,&lt;/STRONG&gt; String regex&lt;STRONG&gt;,&lt;/STRONG&gt; String queueOrigin&lt;STRONG&gt;)&lt;/STRONG&gt; &lt;STRONG&gt;{&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;That method returns a "message".&lt;/P&gt;

&lt;P&gt;Then the following "get" methods have been created for each case, for example to capture the size of the message:&lt;/P&gt;

&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public int getMessageSizeBytes&lt;STRONG&gt;(){&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;return&lt;/STRONG&gt; message&lt;STRONG&gt;.&lt;/STRONG&gt;getBytes&lt;STRONG&gt;().&lt;/STRONG&gt;length&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;}&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;How to use them as getter chains to capture those information on Data Collectors? How to capture the result of&amp;nbsp;&lt;SPAN&gt;getMessageSizeBytes? &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I mean, the first method returns a message, that is already captured but... how to obtain its size? &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The method&amp;nbsp;getMessageSizeBytes is already added on the code, but the getter chain is not capturing that value...&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Which configuration should be used? Please kindly check attached image&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 19 Apr 2018 10:50:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733355#M8436</guid>
      <dc:creator>Maria_Garcia</dc:creator>
      <dc:date>2018-04-19T10:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: Getter Chain</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733356#M8437</link>
      <description>&lt;P&gt;Moco,&lt;/P&gt;

&lt;P&gt;You need to &lt;A href="https://docs.appdynamics.com/display/PRO44/Data+Collectors" target="_self" rel="nofollow noopener noreferrer"&gt;define a data collector&lt;/A&gt; on a method that is called as part of the processing of the BT.&lt;/P&gt;

&lt;P&gt;That data collector can access methods on any of:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;the object instance on which&amp;nbsp;the instrumented method is run&lt;/LI&gt;
&lt;LI&gt;the object(s) passed to the instrumented method as parameters&lt;/LI&gt;
&lt;LI&gt;the object returned from the instrumented method&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;The key here is that a data collector is passive - it needs to be placed on a method that will be run in the course of the processing of the BT in order that it can step in and collect the data you need.&lt;/P&gt;

&lt;P&gt;Warm regards,&lt;/P&gt;
&lt;P&gt;Peter&lt;/P&gt;</description>
      <pubDate>Thu, 19 Apr 2018 11:02:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733356#M8437</guid>
      <dc:creator>Peter_Holditch</dc:creator>
      <dc:date>2018-04-19T11:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: Getter Chain</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733357#M8438</link>
      <description>&lt;P&gt;Thanks Petter,&lt;/P&gt;

&lt;P&gt;As you can see in the attached image, we are trying to define the getter chains on a method invocation data collector for the initial method "init"... is this configuration correct, please?&lt;/P&gt;
&lt;P&gt;The input parameters and the return message are properly detected, however the value returned by the get size function is not properly obtained... do you know why?&lt;/P&gt;
&lt;P&gt;Which getter chain expression shuld we use exactly?&lt;/P&gt;
&lt;P&gt;Thanks a lot!&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Apr 2018 11:46:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733357#M8438</guid>
      <dc:creator>Maria_Garcia</dc:creator>
      <dc:date>2018-04-19T11:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: Getter Chain</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733358#M8439</link>
      <description>&lt;P&gt;So when&amp;nbsp;during&amp;nbsp;the BT execution is your init method called?&amp;nbsp; Can you provide a snippet of the application code that shows the context of that call?&lt;/P&gt;

&lt;P&gt;Warm regards,&lt;/P&gt;
&lt;P&gt;Peter&lt;/P&gt;</description>
      <pubDate>Thu, 19 Apr 2018 12:01:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733358#M8439</guid>
      <dc:creator>Peter_Holditch</dc:creator>
      <dc:date>2018-04-19T12:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Getter Chain</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733359#M8440</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Yes, init method is being captured in AppDynamics BTs.&lt;/P&gt;
&lt;P&gt;In fact the returned message is properly displayed as data collector (please see attached image with all the parameters), using the "ReturnValue.toString()" configured as Method Data Invocation:&lt;/P&gt;
&lt;P&gt;- Collection Data From: Return Value&lt;/P&gt;
&lt;P&gt;- Operation on Invoked Object: Use toString()&lt;/P&gt;

&lt;P&gt;But the issue heer is which getter chain expression should be used to capture the size of the message, calculated with&lt;/P&gt;
&lt;P&gt;public int getMessageSizeBytes(){&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return message.getBytes().length;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }.&lt;/P&gt;
&lt;P&gt;Sorry, but I do not have access all the code, just that related to those method (please find it attached)&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 19 Apr 2018 14:18:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733359#M8440</guid>
      <dc:creator>Maria_Garcia</dc:creator>
      <dc:date>2018-04-19T14:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Getter Chain</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733360#M8441</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Yes, init method is being captured in AppDynamics BTs.&lt;/P&gt;
&lt;P&gt;In fact the returned message is properly displayed as data collector (please see attached image with all the parameters), using the "ReturnValue.toString()" configured as Method Data Invocation:&lt;/P&gt;
&lt;P&gt;- Collection Data From: Return Value&lt;/P&gt;
&lt;P&gt;- Operation on Invoked Object: Use toString()&lt;/P&gt;

&lt;P&gt;But the issue heer is which getter chain expression should be used to capture the size of the message, calculated with&lt;/P&gt;
&lt;P&gt;public int getMessageSizeBytes(){&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return message.getBytes().length;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }.&lt;/P&gt;
&lt;P&gt;Sorry, but I do not have access all the code, just that related to those method (please find it attached)&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 19 Apr 2018 14:18:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733360#M8441</guid>
      <dc:creator>Maria_Garcia</dc:creator>
      <dc:date>2018-04-19T14:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: Getter Chain</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733361#M8442</link>
      <description>&lt;P&gt;Ah, OK.&amp;nbsp; That validates that the collector is getting called, which is what I wanted to confirm.&lt;/P&gt;

&lt;P&gt;I think the problem you're running in to is that the getter chain wants to get the data value as a string, and since your method returns an un-boxed int, it can't do the necessary type conversion.&lt;/P&gt;

&lt;P&gt;It should work if you change your method to return the length as a String, or an an Integer (which has a toString method that could be used to yield a string result)&lt;/P&gt;

&lt;P&gt;Warm regards,&lt;BR /&gt;Peter&lt;/P&gt;</description>
      <pubDate>Thu, 19 Apr 2018 14:31:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733361#M8442</guid>
      <dc:creator>Peter_Holditch</dc:creator>
      <dc:date>2018-04-19T14:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: Getter Chain</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733362#M8443</link>
      <description>&lt;P&gt;Public Class Order {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; public string ClOrdID&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;get;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; set;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;

&lt;P&gt;public Order SendOrder(Order ord) {}&lt;/P&gt;

&lt;P&gt;What will be getter chain for collecting value of&amp;nbsp;ClOrdID.&amp;nbsp; Remember its .net property and there is no getClordID() method defined explicitly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2019 18:53:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733362#M8443</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2019-04-03T18:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: Getter Chain</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733363#M8444</link>
      <description>&lt;P&gt;For .NET properties, you can just use the property name and the agent will automatically use the get internally: &lt;EM&gt;ClOrdID&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 15:47:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733363#M8444</guid>
      <dc:creator>Alex_Fedotyev</dc:creator>
      <dc:date>2019-04-04T15:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Getter Chain</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733364#M8445</link>
      <description>&lt;P&gt;Another scenarios: How to achive it.&lt;/P&gt;
&lt;P&gt;1)&amp;nbsp;private bool SendBulkOrders(List&amp;lt;Order&amp;gt; orders) {}&lt;/P&gt;

&lt;P&gt;how to collect data from parameter which is collection of data. In above example i want to cllect orders[0].BucketId&amp;nbsp;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;2)&amp;nbsp;private bool SendObject(Object sender) {}&lt;/P&gt;

&lt;P&gt;In above example, i want to typecast sender to Employee type and collect employe id. like ((Employe)sender).EmpId&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 16:25:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733364#M8445</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2019-04-04T16:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: Getter Chain</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733365#M8446</link>
      <description>&lt;P&gt;Do you have a way to try these?&lt;/P&gt;
&lt;P&gt;I think following should just work:&lt;/P&gt;

&lt;P&gt;1.&amp;nbsp;&lt;SPAN&gt;private bool SendBulkOrders(List&amp;lt;Order&amp;gt; orders) {}&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;DataCollector for method&amp;nbsp;&lt;SPAN&gt;SendBulkOrders&amp;nbsp;&lt;/SPAN&gt;collecting Parameter 0.&lt;/P&gt;
&lt;P&gt;Getter chain: [0].&lt;SPAN&gt;BucketId&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;(If you have a class which has a property type of List, then you would need to do something like "MyProperty.[0].BucketId")&lt;/SPAN&gt;&lt;/P&gt;


&lt;P&gt;2.&amp;nbsp;&lt;SPAN&gt;private bool SendObject(Object sender) {}&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Again,DataCollector for method&amp;nbsp;&lt;SPAN&gt;SendObject&amp;nbsp;&lt;/SPAN&gt;collecting Parameter 0.&lt;/P&gt;
&lt;P&gt;Getter chain:&amp;nbsp;&lt;SPAN&gt;EmpId&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Internally agent should be aware of the runtime type of the parameter, therefore I don't think you need to cast it in the getter chain.&lt;/SPAN&gt;&lt;/P&gt;


&lt;P&gt;&lt;SPAN&gt;Let me know if this doesn't work, I'll look up further.&lt;/SPAN&gt;&lt;/P&gt;


&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;-Alex&lt;/SPAN&gt;&lt;/P&gt;


&lt;P&gt;&lt;SPAN&gt;PS: If you leave the medhod body empty, .NET may optimize your method... in that case it is a good idea to add couple attributes like explained here:&amp;nbsp;&lt;A href="https://stackoverflow.com/questions/38632939/disable-compiler-optimisation-for-a-specific-function-or-block-of-code-c" target="_blank" rel="nofollow noopener noreferrer"&gt;https://stackoverflow.com/questions/38632939/disable-compiler-optimisation-for-a-specific-function-or-block-of-code-c&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 19:05:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733365#M8446</guid>
      <dc:creator>Alex_Fedotyev</dc:creator>
      <dc:date>2019-04-04T19:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: Getter Chain</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733366#M8447</link>
      <description>&lt;P&gt;For .net property if i just use&amp;nbsp; ParamIndex_0.ClOrdID then value capture in Business transaction snapshot is showing just "[]" .. i sse data is collected but value [] does not make sense. Do i have to call toString()&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 19:53:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733366#M8447</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2019-04-05T19:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: Getter Chain</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733367#M8448</link>
      <description>&lt;P&gt;Can you attach some screenshots of configuration and what you see in snapshots?&lt;/P&gt;
&lt;P&gt;I suspect if you see [...], that means that the method you instrumented might be called multiple times per transaction.&lt;/P&gt;
&lt;P&gt;You don't need ToString(), agent does it internally anyway to serialized non-string types.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 22:24:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733367#M8448</guid>
      <dc:creator>Alex_Fedotyev</dc:creator>
      <dc:date>2019-04-05T22:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Getter Chain</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733368#M8449</link>
      <description>&lt;P&gt;1.&amp;nbsp;private bool SendBulkOrders(List&amp;lt;Order&amp;gt; orders) {}&lt;/P&gt;
&lt;P&gt;DataCollector for method&amp;nbsp;SendBulkOrders&amp;nbsp;collecting Parameter 0.&lt;/P&gt;
&lt;P&gt;Getter chain: [0].BucketId&lt;/P&gt;
&lt;P&gt;(If you have a class which has a property type of List, then you would need to do something like "MyProperty.[0].BucketId")&lt;/P&gt;

&lt;P&gt;Above example does not work. getting error: [CANNOT EVALUATE: Error getting data from specified method paramter]&amp;nbsp;&amp;nbsp; .. i am using &amp;nbsp;Getter chain: [0].BucketId&amp;nbsp; which ultimately tranlated into ParamIndex_0.[0].BucketId&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2019 18:54:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733368#M8449</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2019-04-08T18:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: Getter Chain</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733369#M8450</link>
      <description>&lt;P&gt;Hi AppD team,&lt;/P&gt;&lt;P&gt;I'm working on few business use cases where requirement is to pull the value from request POST body of .Net web API.&lt;/P&gt;&lt;P&gt;Below is the sample code snapshot,&lt;/P&gt;&lt;P&gt;// POST api/wow&lt;BR /&gt;[RequestHandler]&lt;BR /&gt;public HttpResponseMessage Post([FromBody]dynamic requestInput)&lt;BR /&gt;{&lt;BR /&gt;try&lt;BR /&gt;{}&lt;/P&gt;&lt;P&gt;i need to get one of the body parameter value (string) of&amp;nbsp;&lt;STRONG&gt;requestInput.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I'm doing this POC using &lt;STRONG&gt;Method Invocation Data Collectors &lt;/STRONG&gt;and &lt;STRONG&gt;Information Points &lt;/STRONG&gt;using Getter chain.&lt;/P&gt;&lt;P&gt;Can you guide me to achieve this task please.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Sep 2020 13:25:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/Getter-Chain/m-p/733369#M8450</guid>
      <dc:creator>Bhushan_Shinde</dc:creator>
      <dc:date>2020-09-23T13:25:44Z</dc:date>
    </item>
  </channel>
</rss>

