{"id":4502,"date":"2024-09-05T19:49:24","date_gmt":"2024-09-05T19:49:24","guid":{"rendered":"https:\/\/quebit.com\/askquebit\/?p=4502"},"modified":"2026-01-20T15:42:21","modified_gmt":"2026-01-20T15:42:21","slug":"enabling-performance-monitoring-in-ibm-planning-analytics-workspace","status":"publish","type":"post","link":"https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/","title":{"rendered":"How Do I Enable Performance Monitoring in IBM Planning Analytics Workspace?"},"content":{"rendered":"<p><strong>Enabling Performance Monitoring in IBM Planning Analytics Workspace <\/strong><\/p>\n<p><strong>PA\/TM1 Performance Monitor<\/strong> is\u00a0a collection of tools that monitor the performance of IBM PA\/TM1 servers in real-time.\u00a0It can track and store performance data in control cubes, such as StatsByClient, StatsByCube, StatsByCubeByClient, and StatsForServer.\u00a0These cubes track various statistics, such as message count, average message size, memory use, and more.<\/p>\n<p><strong>Enabling Performance Monitoring<\/strong><\/p>\n<p>Performance Monitor can be enabled or disabled manually in <strong>Architect<\/strong> (or <strong>Perspectives<\/strong> server explorer) by right clicking the server\u2019s name and selecting &#8220;<em>Start Performance Monitor<\/em>&#8221; or &#8220;<em>Stop Performance Monitor<\/em>&#8220;.<\/p>\n<p>If you\u2019ve recently moved to <strong>Planning Analytics Workspace<\/strong> (and you <em>should<\/em> since Architect , as part of the Rich Tier Desktop, is to be removed with its features moved to Workspace later this year), you may wonder \u201chow do I enable<\/p>\n<p>performance monitor using IBM Planning Analytics Workspace?\u201d Don\u2019t worry, it\u2019s still a pretty straight forward process:<\/p>\n<ol>\n<li>Click the <strong>Administration tile<\/strong><\/li>\n<li>Select <strong>Databases<\/strong><\/li>\n<li>Select your database<\/li>\n<li>Click Configuration<\/li>\n<\/ol>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4503\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture9.png\" alt=\"\" width=\"900\" height=\"334\" srcset=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture9.png 900w, https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture9-300x111.png 300w, https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture9-768x285.png 768w\" sizes=\"auto, (max-width: 900px) 100vw, 900px\" \/><\/p>\n<p>5. Find the performance monitor settings (<strong>PerfMonActive<\/strong>) in the <strong>Administration<\/strong> settings and the Default sub area<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4504\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture10.png\" alt=\"\" width=\"797\" height=\"444\" srcset=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture10.png 797w, https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture10-300x167.png 300w, https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture10-768x428.png 768w\" sizes=\"auto, (max-width: 797px) 100vw, 797px\" \/><\/p>\n<p><strong>Automation with PowerShell<\/strong><\/p>\n<p>I came across an interesting technote recently that provided a keen solution for enabling or disabling Performance Monitor through a TI process using a Windows PowerShell script and just had to try it.<\/p>\n<p><strong>Configuration<\/strong><\/p>\n<p>You first have to review your <a href=\"https:\/\/www.ibm.com\/docs\/en\/cognos-tm1\/10.2.2?topic=1022-tm1scfg-server-configuration-file\">TM1\/PA configuration (.cfg) file<\/a> and make sure that the\u00a0<strong>PerformanceMonitorOn\u00a0<\/strong>parameter exists and is formatted correctly (make sure that there is no extra space):<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4505\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture11.png\" alt=\"\" width=\"806\" height=\"108\" srcset=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture11.png 806w, https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture11-300x40.png 300w, https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture11-768x103.png 768w\" sizes=\"auto, (max-width: 806px) 100vw, 806px\" \/><\/p>\n<p><strong>PowerShell Scripting<\/strong><\/p>\n<p>As mentioned, to make this solution work we need to create two MS Windows <a href=\"https:\/\/learn.microsoft.com\/en-us\/powershell\/scripting\/overview?view=powershell-7.4\">PowerShell<\/a> scripts, one for <em>activating<\/em> the Performance Monitor and the other one for <em>deactivating<\/em> Performance Monitor.<\/p>\n<p>In PowerShell the\u00a0<a href=\"https:\/\/learn.microsoft.com\/en-us\/powershell\/module\/microsoft.powershell.management\/get-content?view=powershell-7.4\"><strong>Get<\/strong>&#8211;<strong>Content<\/strong><\/a>\u00a0cmdlet <em>gets<\/em> the content of the item at the location specified by the path, such as the text in a file or the content of a function and the <a href=\"https:\/\/learn.microsoft.com\/en-us\/powershell\/module\/microsoft.powershell.management\/set-content?view=powershell-7.4\"><strong>Set-Content<\/strong><\/a> cmdlet <em>writes<\/em> new content or replaces existing content in a file.<\/p>\n<p>With this in mind, we can use these cmdlets along with the .replace function (which replaces characters within a string) in a single line to accomplish its goal of enabling or disabling performance monitoring within the server:<\/p>\n<p>#&#8211; PowerShell script #1 &#8211; SetPerfMonOn enable performance monitoring (Get-Content &#8216;C:\\Program Files\\ibm\\cognos\\tm1_64\\samples\\tm1\\PlanSamp\\tm1s.cfg&#8217;).replace(&#8216;PerformanceMonitorOn=F&#8217;, &#8216;PerformanceMonitorOn=T&#8217;) | Set-Content &#8216;C:\\Program Files\\ibm\\cognos\\tm1_64\\samples\\tm1\\PlanSamp\\tm1s.cfg&#8217;<\/p>\n<p>#&#8211; PowerShell script #2 \u2013 SetPerfMonOff disable performance monitoring (Get-Content &#8216;C:\\Program Files\\ibm\\cognos\\tm1_64\\samples\\tm1\\PlanSamp\\tm1s.cfg&#8217;).replace(&#8216;PerformanceMonitorOn=T&#8217;, &#8216;PerformanceMonitorOn=F&#8217;) | Set-Content &#8216;C:\\Program Files\\ibm\\cognos\\tm1_64\\samples\\tm1\\PlanSamp\\tm1s.cfg&#8217;<\/p>\n<p>To run these scripts from a TurboIntegrator process, you can use the <a href=\"https:\/\/www.ibm.com\/docs\/en\/cognos-tm1\/10.2.2?topic=functions-executecommand\">ExecuteCommand<\/a> function and since the\u00a0<strong>PerformanceMonitorOn\u00a0<\/strong>parameter is a &#8220;<a href=\"https:\/\/www.ibm.com\/docs\/sv\/cognos-tm1\/10.2.2?topic=SS9RXT_10.2.2\/com.ibm.swg.ba.cognos.tm1_inst.10.2.2.doc\/c_parametersinthetm1s.cfgfile_n1503fe.htm\">dynamic parameter<\/a>&#8220;, it will be quickly taken into account by TM1\/PA Server without having to perform a restart.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4506\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture12.png\" alt=\"\" width=\"900\" height=\"336\" srcset=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture12.png 900w, https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture12-300x112.png 300w, https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture12-768x287.png 768w\" sizes=\"auto, (max-width: 900px) 100vw, 900px\" \/><\/p>\n<p><strong>Conclusion<\/strong><\/p>\n<p>As always, if you would like assistance with Planning Analytics Performance Monitoring, please reach out to QueBIT!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Enabling Performance Monitoring in IBM Planning Analytics Workspace PA\/TM1 Performance Monitor is\u00a0a collection of tools that monitor the performance of IBM PA\/TM1 servers in real-time.\u00a0It can track and store performance data in control cubes, such as StatsByClient, StatsByCube, StatsByCubeByClient, and StatsForServer.\u00a0These cubes track various statistics, such as message count, average message size, memory use, and&hellip;<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[24],"tags":[108,51,95],"class_list":["post-4502","post","type-post","status-publish","format-standard","hentry","category-ibm","tag-ibm-planning-analytics","tag-planning-analytics-how-tos","tag-planning-analytics-workspace"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How Do I Enable Performance Monitoring in IBM Planning Analytics Workspace? - QueBIT<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Do I Enable Performance Monitoring in IBM Planning Analytics Workspace? - QueBIT\" \/>\n<meta property=\"og:description\" content=\"Enabling Performance Monitoring in IBM Planning Analytics Workspace PA\/TM1 Performance Monitor is\u00a0a collection of tools that monitor the performance of IBM PA\/TM1 servers in real-time.\u00a0It can track and store performance data in control cubes, such as StatsByClient, StatsByCube, StatsByCubeByClient, and StatsForServer.\u00a0These cubes track various statistics, such as message count, average message size, memory use, and&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/\" \/>\n<meta property=\"og:site_name\" content=\"QueBIT\" \/>\n<meta property=\"article:published_time\" content=\"2024-09-05T19:49:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-20T15:42:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture9.png\" \/>\n\t<meta property=\"og:image:width\" content=\"900\" \/>\n\t<meta property=\"og:image:height\" content=\"334\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jennifer Field\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jennifer Field\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\\\/\"},\"author\":{\"name\":\"Jennifer Field\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/082a9c4156466b9cdad2632e3de62601\"},\"headline\":\"How Do I Enable Performance Monitoring in IBM Planning Analytics Workspace?\",\"datePublished\":\"2024-09-05T19:49:24+00:00\",\"dateModified\":\"2026-01-20T15:42:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\\\/\"},\"wordCount\":507,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/Picture9.png\",\"keywords\":[\"IBM Planning Analytics\",\"Planning Analytics How To's\",\"Planning Analytics Workspace\"],\"articleSection\":[\"IBM\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\\\/\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\\\/\",\"name\":\"How Do I Enable Performance Monitoring in IBM Planning Analytics Workspace? - QueBIT\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/Picture9.png\",\"datePublished\":\"2024-09-05T19:49:24+00:00\",\"dateModified\":\"2026-01-20T15:42:21+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/082a9c4156466b9cdad2632e3de62601\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\\\/#primaryimage\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/Picture9.png\",\"contentUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/Picture9.png\",\"width\":900,\"height\":334},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How Do I Enable Performance Monitoring in IBM Planning Analytics Workspace?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\",\"name\":\"QueBIT\",\"description\":\"QueBIT\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/082a9c4156466b9cdad2632e3de62601\",\"name\":\"Jennifer Field\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g\",\"caption\":\"Jennifer Field\"},\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/author\\\/quebit\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How Do I Enable Performance Monitoring in IBM Planning Analytics Workspace? - QueBIT","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/","og_locale":"en_US","og_type":"article","og_title":"How Do I Enable Performance Monitoring in IBM Planning Analytics Workspace? - QueBIT","og_description":"Enabling Performance Monitoring in IBM Planning Analytics Workspace PA\/TM1 Performance Monitor is\u00a0a collection of tools that monitor the performance of IBM PA\/TM1 servers in real-time.\u00a0It can track and store performance data in control cubes, such as StatsByClient, StatsByCube, StatsByCubeByClient, and StatsForServer.\u00a0These cubes track various statistics, such as message count, average message size, memory use, and&hellip;","og_url":"https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/","og_site_name":"QueBIT","article_published_time":"2024-09-05T19:49:24+00:00","article_modified_time":"2026-01-20T15:42:21+00:00","og_image":[{"width":900,"height":334,"url":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture9.png","type":"image\/png"}],"author":"Jennifer Field","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Jennifer Field","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/#article","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/"},"author":{"name":"Jennifer Field","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/082a9c4156466b9cdad2632e3de62601"},"headline":"How Do I Enable Performance Monitoring in IBM Planning Analytics Workspace?","datePublished":"2024-09-05T19:49:24+00:00","dateModified":"2026-01-20T15:42:21+00:00","mainEntityOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/"},"wordCount":507,"commentCount":0,"image":{"@id":"https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture9.png","keywords":["IBM Planning Analytics","Planning Analytics How To's","Planning Analytics Workspace"],"articleSection":["IBM"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/","url":"https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/","name":"How Do I Enable Performance Monitoring in IBM Planning Analytics Workspace? - QueBIT","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/#website"},"primaryImageOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/#primaryimage"},"image":{"@id":"https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture9.png","datePublished":"2024-09-05T19:49:24+00:00","dateModified":"2026-01-20T15:42:21+00:00","author":{"@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/082a9c4156466b9cdad2632e3de62601"},"breadcrumb":{"@id":"https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/#primaryimage","url":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture9.png","contentUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/08\/Picture9.png","width":900,"height":334},{"@type":"BreadcrumbList","@id":"https:\/\/quebit.com\/askquebit\/enabling-performance-monitoring-in-ibm-planning-analytics-workspace\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/quebit.com\/askquebit\/"},{"@type":"ListItem","position":2,"name":"How Do I Enable Performance Monitoring in IBM Planning Analytics Workspace?"}]},{"@type":"WebSite","@id":"https:\/\/quebit.com\/askquebit\/#website","url":"https:\/\/quebit.com\/askquebit\/","name":"QueBIT","description":"QueBIT","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/quebit.com\/askquebit\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/082a9c4156466b9cdad2632e3de62601","name":"Jennifer Field","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g","caption":"Jennifer Field"},"url":"https:\/\/quebit.com\/askquebit\/author\/quebit\/"}]}},"_links":{"self":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/4502","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/comments?post=4502"}],"version-history":[{"count":4,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/4502\/revisions"}],"predecessor-version":[{"id":5057,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/4502\/revisions\/5057"}],"wp:attachment":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/media?parent=4502"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/categories?post=4502"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/tags?post=4502"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}