<?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: Request attribute getting truncated to 251 chars in purepath. in Open Q&amp;A</title>
    <link>https://community.dynatrace.com/t5/Open-Q-A/Request-attribute-getting-truncated-to-251-chars-in-purepath/m-p/118448#M11864</link>
    <description>&lt;P&gt;Use the regex for that:&lt;/P&gt;&lt;P&gt;^.{250}(.{0,250})&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;If possible (not in this case probably, as the UI will not allow it), I'd use the construct&lt;/P&gt;&lt;P&gt;.substring(250,500)&lt;/P&gt;&lt;P&gt;in the deep object access.&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 04 Jun 2019 16:40:26 GMT</pubDate>
    <dc:creator>Julius_Loman</dc:creator>
    <dc:date>2019-06-04T16:40:26Z</dc:date>
    <item>
      <title>Request attribute getting truncated to 251 chars in purepath.</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Request-attribute-getting-truncated-to-251-chars-in-purepath/m-p/118445#M11861</link>
      <description>&lt;P&gt;I am having a requirement to create a request attribute based on a java function which return a string. But in purepath its only showing first 251 characters only. Is there a way to increase this to 500 characters ?&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 17 May 2019 13:54:47 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Request-attribute-getting-truncated-to-251-chars-in-purepath/m-p/118445#M11861</guid>
      <dc:creator>prasad_mekkali</dc:creator>
      <dc:date>2019-05-17T13:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Request attribute getting truncated to 251 chars in purepath.</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Request-attribute-getting-truncated-to-251-chars-in-purepath/m-p/118446#M11862</link>
      <description>&lt;P&gt;No, it is not. You will have to use two request attributes. One for capturing first 250 characters and the other to capture the rest.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Jun 2019 07:06:19 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Request-attribute-getting-truncated-to-251-chars-in-purepath/m-p/118446#M11862</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2019-06-03T07:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Request attribute getting truncated to 251 chars in purepath.</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Request-attribute-getting-truncated-to-251-chars-in-purepath/m-p/118447#M11863</link>
      <description>&lt;P&gt;Thank you  Julius.  Is there way to get characters from 250 to 500 while creating Request attribute using a java method as given below.&lt;IMG src="https://community.dynatrace.com/legacyfs/online/20743-creating-request-attributes-using-java-method.jpg" /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 04 Jun 2019 15:40:08 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Request-attribute-getting-truncated-to-251-chars-in-purepath/m-p/118447#M11863</guid>
      <dc:creator>prasad_mekkali</dc:creator>
      <dc:date>2019-06-04T15:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: Request attribute getting truncated to 251 chars in purepath.</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Request-attribute-getting-truncated-to-251-chars-in-purepath/m-p/118448#M11864</link>
      <description>&lt;P&gt;Use the regex for that:&lt;/P&gt;&lt;P&gt;^.{250}(.{0,250})&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;If possible (not in this case probably, as the UI will not allow it), I'd use the construct&lt;/P&gt;&lt;P&gt;.substring(250,500)&lt;/P&gt;&lt;P&gt;in the deep object access.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 04 Jun 2019 16:40:26 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Request-attribute-getting-truncated-to-251-chars-in-purepath/m-p/118448#M11864</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2019-06-04T16:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: Request attribute getting truncated to 251 chars in purepath.</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Request-attribute-getting-truncated-to-251-chars-in-purepath/m-p/118449#M11865</link>
      <description>&lt;P&gt;Thank you. Much appreciated !!!&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 04 Jun 2019 16:42:26 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Request-attribute-getting-truncated-to-251-chars-in-purepath/m-p/118449#M11865</guid>
      <dc:creator>prasad_mekkali</dc:creator>
      <dc:date>2019-06-04T16:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Request attribute getting truncated to 251 chars in purepath.</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Request-attribute-getting-truncated-to-251-chars-in-purepath/m-p/118450#M11866</link>
      <description>&lt;P&gt;Hi Prasad &amp;amp; Julius, &lt;BR /&gt;Has the RegEx worked for the two of you? I've tried it without any luck.  Do you have any tips if you haven't gotten it to work for you? &lt;BR /&gt;Thanks!&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Jul 2019 14:22:53 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Request-attribute-getting-truncated-to-251-chars-in-purepath/m-p/118450#M11866</guid>
      <dc:creator>DavidMass</dc:creator>
      <dc:date>2019-07-24T14:22:53Z</dc:date>
    </item>
  </channel>
</rss>

