<?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: JMX tabular data in Splunk AppDynamics</title>
    <link>https://community.splunk.com/t5/Splunk-AppDynamics/JMX-tabular-data/m-p/761745#M12028</link>
    <description>&lt;P&gt;Hey John — your instinct is right: that parameter is the standard MXBean Map-to-TabularData mapping. A Map on an MXBean (here a String-to-String map) comes across JMX as a TabularData whose rows are CompositeData with two items literally named "key" and "value", and the table is indexed by "key". For setRecordingSettings the map is JFR setting-name to value, e.g. "jdk.ExecutionSample#enabled" maps to "true".&lt;/P&gt;&lt;P&gt;The catch — and the real answer to your question — is that a generic MBean console like the one in your screenshot (same with jconsole) can't build a TabularData from that text box. Those fields only take simple scalars; there's no string form the console will parse into a CompositeData/TabularData. So for this operation, through that UI specifically, you basically can't hand it the parameter. It's not a syntax you're missing — the console just doesn't construct open types.&lt;/P&gt;&lt;P&gt;What actually works, depending on what you've got:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;A few lines of JMX client code&lt;/STRONG&gt; is the reliable route. Connect with a JMXConnector, build a TabularDataSupport from the operation's own TabularType (rows are CompositeDataSupport with "key"/"value"), then call invoke(). jshell or a quick Groovy script is enough — no full project needed.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Jolokia/HawtIO&lt;/STRONG&gt;, if that console happens to be Jolokia-based: its exec endpoint takes JSON and converts it into the open types, so a key/value map goes in as a JSON object instead of being hand-built.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;For JFR specifically, sidestep TabularData entirely.&lt;/STRONG&gt; FlightRecorder has String-based operations the console can drive directly: setPredefinedConfiguration(id, "profile") (or "default") applies a built-in profile, and setConfiguration(id, ...) takes a .jfc profile as a plain XML string. If your real goal is "configure this recording," those are far easier than reconstructing the settings map. And outside JMX, jcmd with the JFR.* subcommands, the jfr tool, or -XX:StartFlightRecording do the same with no MBean wrangling.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;So — what are you actually trying to do: configure a JFR recording (then I'd reach for setPredefinedConfiguration/setConfiguration or jcmd), or do you specifically need to drive arbitrary TabularData operations through a console? And is that console plain JMX-over-HTTP or Jolokia/HawtIO? That decides which path fits.&lt;/P&gt;</description>
    <pubDate>Thu, 18 Jun 2026 04:01:12 GMT</pubDate>
    <dc:creator>natecrisler</dc:creator>
    <dc:date>2026-06-18T04:01:12Z</dc:date>
    <item>
      <title>JMX tabular data</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/JMX-tabular-data/m-p/761451#M12027</link>
      <description>&lt;P&gt;Some JMX MBean operations take a parameter of type&amp;nbsp;javax.management.openmbean.TabularData.&amp;nbsp; How can I provide that input through the UI?&amp;nbsp; I think it's basically key-value pairs like a map, but I don't know how to specify them.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohnGregg_0-1780671666842.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/42164i58471090C9CEC3DE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JohnGregg_0-1780671666842.png" alt="JohnGregg_0-1780671666842.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2026 15:02:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/JMX-tabular-data/m-p/761451#M12027</guid>
      <dc:creator>JohnGregg</dc:creator>
      <dc:date>2026-06-05T15:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: JMX tabular data</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/JMX-tabular-data/m-p/761745#M12028</link>
      <description>&lt;P&gt;Hey John — your instinct is right: that parameter is the standard MXBean Map-to-TabularData mapping. A Map on an MXBean (here a String-to-String map) comes across JMX as a TabularData whose rows are CompositeData with two items literally named "key" and "value", and the table is indexed by "key". For setRecordingSettings the map is JFR setting-name to value, e.g. "jdk.ExecutionSample#enabled" maps to "true".&lt;/P&gt;&lt;P&gt;The catch — and the real answer to your question — is that a generic MBean console like the one in your screenshot (same with jconsole) can't build a TabularData from that text box. Those fields only take simple scalars; there's no string form the console will parse into a CompositeData/TabularData. So for this operation, through that UI specifically, you basically can't hand it the parameter. It's not a syntax you're missing — the console just doesn't construct open types.&lt;/P&gt;&lt;P&gt;What actually works, depending on what you've got:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;A few lines of JMX client code&lt;/STRONG&gt; is the reliable route. Connect with a JMXConnector, build a TabularDataSupport from the operation's own TabularType (rows are CompositeDataSupport with "key"/"value"), then call invoke(). jshell or a quick Groovy script is enough — no full project needed.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Jolokia/HawtIO&lt;/STRONG&gt;, if that console happens to be Jolokia-based: its exec endpoint takes JSON and converts it into the open types, so a key/value map goes in as a JSON object instead of being hand-built.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;For JFR specifically, sidestep TabularData entirely.&lt;/STRONG&gt; FlightRecorder has String-based operations the console can drive directly: setPredefinedConfiguration(id, "profile") (or "default") applies a built-in profile, and setConfiguration(id, ...) takes a .jfc profile as a plain XML string. If your real goal is "configure this recording," those are far easier than reconstructing the settings map. And outside JMX, jcmd with the JFR.* subcommands, the jfr tool, or -XX:StartFlightRecording do the same with no MBean wrangling.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;So — what are you actually trying to do: configure a JFR recording (then I'd reach for setPredefinedConfiguration/setConfiguration or jcmd), or do you specifically need to drive arbitrary TabularData operations through a console? And is that console plain JMX-over-HTTP or Jolokia/HawtIO? That decides which path fits.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jun 2026 04:01:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/JMX-tabular-data/m-p/761745#M12028</guid>
      <dc:creator>natecrisler</dc:creator>
      <dc:date>2026-06-18T04:01:12Z</dc:date>
    </item>
  </channel>
</rss>

