{"id":93,"date":"2018-07-18T14:49:07","date_gmt":"2018-07-18T09:49:07","guid":{"rendered":"http:\/\/iparagons.com\/blog\/?p=93"},"modified":"2021-08-26T16:38:58","modified_gmt":"2021-08-26T11:38:58","slug":"how-to-check-heap-size-usage-of-websphere-application-server","status":"publish","type":"post","link":"https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/","title":{"rendered":"How to Monitor Heap Size or JVM WebSphere Application Server Usage"},"content":{"rendered":"<p>JVM WebSphere Application Server heap size usage how can be monitored? So, here are few easy steps that can be performed to achieve this requirement:<\/p>\n<ul>\n<li>Create a file named as, <strong>showHeapSize.py<\/strong> and add the following code than save and exit:<\/li>\n<\/ul>\n<blockquote><p>serverJVM=AdminControl.completeObjectName(&#8216;type=JVM,process=&#8217; + sys.argv[0] + &#8216;,*&#8217;)<br \/>\nserverJVMObj=AdminControl.makeObjectName(serverJVM)<br \/>\nperf=AdminControl.completeObjectName(&#8216;type=Perf,process=&#8217; + sys.argv[0] + &#8216;,*&#8217;)<br \/>\nperfObj=AdminControl.makeObjectName(perf)<br \/>\njvmObj=AdminControl.invoke_jmx(perfObj,&#8217;getStatsObject&#8217;,[serverJVMObj,java.lang.Boolean(&#8216;false&#8217;)],[&#8216;javax.management.ObjectName&#8217;,&#8217;java.lang.Boolean&#8217;])<\/p>\n<p>currentHeapsize=jvmObj.getStatistic(&#8216;HeapSize&#8217;).getCurrent()<br \/>\nusedMemory=jvmObj.getStatistic(&#8216;UsedMemory&#8217;).getCount()<br \/>\nusage=float(usedMemory)\/float(currentHeapsize)*100<\/p>\n<p>print sys.argv[0] + &#8220;.&gt; &#8220;+str(currentHeapsize)+&#8221;K .&gt; &#8220;+str(usedMemory)+&#8221;K .&gt; &#8220;+&#8221;Usage:%.2f&#8221; % usage+&#8221;%&#8221;<\/p><\/blockquote>\n<ul>\n<li>Place the above file to directory \/opt\/jars\/<\/li>\n<li>Create a new file named heap.sh, paste the below lines (modify according to your environment), and place to \/opt\/scripts\/ directory.<\/li>\n<\/ul>\n<blockquote>\n<p style=\"text-align: left;\">echo &#8220;WAS Profile 1 Start&#8221;<br \/>\n\/opt\/WAS9\/IBM\/WebSphere\/AppServer\/bin\/wsadmin.sh -lang jython -f \/opt\/jars\/showHeapSize.py server1 -username wasadmin -password password;<br \/>\necho &#8220;WAS Profile 1 End&#8221;<br \/>\necho &#8220;WAS Profile 2 Start&#8221;<br \/>\n\/opt\/WAS9\/IBM\/WebSphere\/AppServer\/profiles\/AppSrv02\/bin\/wsadmin.sh -lang jython -f \/opt\/jars\/showHeapSize.py server1 -username wasadmin -password password;<br \/>\necho &#8220;WAS Profile 2 End&#8221;<\/p>\n<\/blockquote>\n<ul>\n<li>Run the script from terminal. JVM websphere application server results will be displayed as mentioned below:<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-94 size-full\" title=\"Heap size of WebSphere Application Server\" src=\"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2018\/07\/Heap-size-result.png\" alt=\"jvm websphere application server\" width=\"650\" height=\"262\" \/><\/p>\n<p>Download sample code <a href=\"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2018\/07\/heap-usage.zip\">here<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>JVM WebSphere Application Server heap size usage how can be monitored? So, here are few easy steps that can be performed to achieve this requirement: Create a file named as, showHeapSize.py and add the following code than save and exit: serverJVM=AdminControl.completeObjectName(&#8216;type=JVM,process=&#8217; + sys.argv[0] + &#8216;,*&#8217;) serverJVMObj=AdminControl.makeObjectName(serverJVM) perf=AdminControl.completeObjectName(&#8216;type=Perf,process=&#8217; + sys.argv[0] + &#8216;,*&#8217;) perfObj=AdminControl.makeObjectName(perf) jvmObj=AdminControl.invoke_jmx(perfObj,&#8217;getStatsObject&#8217;,[serverJVMObj,java.lang.Boolean(&#8216;false&#8217;)],[&#8216;javax.management.ObjectName&#8217;,&#8217;java.lang.Boolean&#8217;]) currentHeapsize=jvmObj.getStatistic(&#8216;HeapSize&#8217;).getCurrent() usedMemory=jvmObj.getStatistic(&#8216;UsedMemory&#8217;).getCount() &hellip; <\/p>\n","protected":false},"author":1,"featured_media":94,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[110],"tags":[120,113,114,112,377,119,115,111,116,117,118],"class_list":["post-93","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-websphere-application-server-was","tag-filenetp8","tag-heapsize","tag-heapusage","tag-ibm-was","tag-ibm-websphere-application-server","tag-jvm","tag-rhel","tag-was","tag-was7","tag-was8","tag-was9"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>jvm websphere application server - iparagons blog heap size usage<\/title>\n<meta name=\"description\" content=\"jvm websphere application server, ibm websphere application server, ibm access client solutions, java heap size recommendation, websphere jvm\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"jvm websphere application server - iparagons blog heap size usage\" \/>\n<meta property=\"og:description\" content=\"jvm websphere application server, ibm websphere application server, ibm access client solutions, java heap size recommendation, websphere jvm\" \/>\n<meta property=\"og:url\" content=\"https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/\" \/>\n<meta property=\"og:site_name\" content=\"iparagons blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/iParagons\" \/>\n<meta property=\"article:author\" content=\"http:\/\/www.facebook.com\/iPragons\" \/>\n<meta property=\"article:published_time\" content=\"2018-07-18T09:49:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-26T11:38:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2018\/07\/Heap-size-result.png\" \/>\n\t<meta property=\"og:image:width\" content=\"650\" \/>\n\t<meta property=\"og:image:height\" content=\"262\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Junaid Azam\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@iparagons786\" \/>\n<meta name=\"twitter:site\" content=\"@junaidazam4\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Junaid Azam\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2018\\\/07\\\/18\\\/how-to-check-heap-size-usage-of-websphere-application-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2018\\\/07\\\/18\\\/how-to-check-heap-size-usage-of-websphere-application-server\\\/\"},\"author\":{\"name\":\"Junaid Azam\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#\\\/schema\\\/person\\\/8e3ee37e9c2e825bd340f8d71ab7eede\"},\"headline\":\"How to Monitor Heap Size or JVM WebSphere Application Server Usage\",\"datePublished\":\"2018-07-18T09:49:07+00:00\",\"dateModified\":\"2021-08-26T11:38:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2018\\\/07\\\/18\\\/how-to-check-heap-size-usage-of-websphere-application-server\\\/\"},\"wordCount\":237,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2018\\\/07\\\/18\\\/how-to-check-heap-size-usage-of-websphere-application-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/Heap-size-result.png\",\"keywords\":[\"filenetp8\",\"heapsize\",\"heapusage\",\"ibm was\",\"ibm websphere application server\",\"jvm\",\"rhel\",\"was\",\"was7\",\"was8\",\"was9\"],\"articleSection\":[\"WebSphere Application Server (WAS)\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/iparagons.com\\\/blog\\\/2018\\\/07\\\/18\\\/how-to-check-heap-size-usage-of-websphere-application-server\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2018\\\/07\\\/18\\\/how-to-check-heap-size-usage-of-websphere-application-server\\\/\",\"url\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2018\\\/07\\\/18\\\/how-to-check-heap-size-usage-of-websphere-application-server\\\/\",\"name\":\"jvm websphere application server - iparagons blog heap size usage\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2018\\\/07\\\/18\\\/how-to-check-heap-size-usage-of-websphere-application-server\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2018\\\/07\\\/18\\\/how-to-check-heap-size-usage-of-websphere-application-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/Heap-size-result.png\",\"datePublished\":\"2018-07-18T09:49:07+00:00\",\"dateModified\":\"2021-08-26T11:38:58+00:00\",\"description\":\"jvm websphere application server, ibm websphere application server, ibm access client solutions, java heap size recommendation, websphere jvm\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2018\\\/07\\\/18\\\/how-to-check-heap-size-usage-of-websphere-application-server\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/iparagons.com\\\/blog\\\/2018\\\/07\\\/18\\\/how-to-check-heap-size-usage-of-websphere-application-server\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2018\\\/07\\\/18\\\/how-to-check-heap-size-usage-of-websphere-application-server\\\/#primaryimage\",\"url\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/Heap-size-result.png\",\"contentUrl\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/Heap-size-result.png\",\"width\":650,\"height\":262,\"caption\":\"jvm websphere application server\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2018\\\/07\\\/18\\\/how-to-check-heap-size-usage-of-websphere-application-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Monitor Heap Size or JVM WebSphere Application Server Usage\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/\",\"name\":\"iparagons blog\",\"description\":\"IBM FileNet P8 | Case Manager | Content Navigator\",\"publisher\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#organization\",\"name\":\"iparagons technologies\",\"url\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"http:\\\/\\\/iparagons.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/logo_ip.jpeg\",\"contentUrl\":\"http:\\\/\\\/iparagons.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/logo_ip.jpeg\",\"width\":140,\"height\":28,\"caption\":\"iparagons technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/iParagons\",\"https:\\\/\\\/x.com\\\/junaidazam4\",\"https:\\\/\\\/www.instagram.com\\\/azamjunaid\\\/\",\"https:\\\/\\\/pk.linkedin.com\\\/in\\\/junaid-azam-2a683443\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#\\\/schema\\\/person\\\/8e3ee37e9c2e825bd340f8d71ab7eede\",\"name\":\"Junaid Azam\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9f5a4974af969e5b66926242d8f22c1ee7877192a88e3e11381f82ab5d46e642?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9f5a4974af969e5b66926242d8f22c1ee7877192a88e3e11381f82ab5d46e642?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9f5a4974af969e5b66926242d8f22c1ee7877192a88e3e11381f82ab5d46e642?s=96&d=mm&r=g\",\"caption\":\"Junaid Azam\"},\"description\":\"IBM ECM Consultant\",\"sameAs\":[\"http:\\\/\\\/iparagons.com\",\"http:\\\/\\\/www.facebook.com\\\/iPragons\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/junaid-azam-2a683443\\\/\",\"https:\\\/\\\/x.com\\\/iparagons786\"],\"url\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/author\\\/ip_admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"jvm websphere application server - iparagons blog heap size usage","description":"jvm websphere application server, ibm websphere application server, ibm access client solutions, java heap size recommendation, websphere jvm","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:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/","og_locale":"en_GB","og_type":"article","og_title":"jvm websphere application server - iparagons blog heap size usage","og_description":"jvm websphere application server, ibm websphere application server, ibm access client solutions, java heap size recommendation, websphere jvm","og_url":"https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/","og_site_name":"iparagons blog","article_publisher":"http:\/\/www.facebook.com\/iParagons","article_author":"http:\/\/www.facebook.com\/iPragons","article_published_time":"2018-07-18T09:49:07+00:00","article_modified_time":"2021-08-26T11:38:58+00:00","og_image":[{"width":650,"height":262,"url":"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2018\/07\/Heap-size-result.png","type":"image\/png"}],"author":"Junaid Azam","twitter_card":"summary_large_image","twitter_creator":"@iparagons786","twitter_site":"@junaidazam4","twitter_misc":{"Written by":"Junaid Azam","Estimated reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/#article","isPartOf":{"@id":"https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/"},"author":{"name":"Junaid Azam","@id":"https:\/\/iparagons.com\/blog\/#\/schema\/person\/8e3ee37e9c2e825bd340f8d71ab7eede"},"headline":"How to Monitor Heap Size or JVM WebSphere Application Server Usage","datePublished":"2018-07-18T09:49:07+00:00","dateModified":"2021-08-26T11:38:58+00:00","mainEntityOfPage":{"@id":"https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/"},"wordCount":237,"commentCount":3,"publisher":{"@id":"https:\/\/iparagons.com\/blog\/#organization"},"image":{"@id":"https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/#primaryimage"},"thumbnailUrl":"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2018\/07\/Heap-size-result.png","keywords":["filenetp8","heapsize","heapusage","ibm was","ibm websphere application server","jvm","rhel","was","was7","was8","was9"],"articleSection":["WebSphere Application Server (WAS)"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/","url":"https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/","name":"jvm websphere application server - iparagons blog heap size usage","isPartOf":{"@id":"https:\/\/iparagons.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/#primaryimage"},"image":{"@id":"https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/#primaryimage"},"thumbnailUrl":"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2018\/07\/Heap-size-result.png","datePublished":"2018-07-18T09:49:07+00:00","dateModified":"2021-08-26T11:38:58+00:00","description":"jvm websphere application server, ibm websphere application server, ibm access client solutions, java heap size recommendation, websphere jvm","breadcrumb":{"@id":"https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/#primaryimage","url":"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2018\/07\/Heap-size-result.png","contentUrl":"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2018\/07\/Heap-size-result.png","width":650,"height":262,"caption":"jvm websphere application server"},{"@type":"BreadcrumbList","@id":"https:\/\/iparagons.com\/blog\/2018\/07\/18\/how-to-check-heap-size-usage-of-websphere-application-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/iparagons.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Monitor Heap Size or JVM WebSphere Application Server Usage"}]},{"@type":"WebSite","@id":"https:\/\/iparagons.com\/blog\/#website","url":"https:\/\/iparagons.com\/blog\/","name":"iparagons blog","description":"IBM FileNet P8 | Case Manager | Content Navigator","publisher":{"@id":"https:\/\/iparagons.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/iparagons.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/iparagons.com\/blog\/#organization","name":"iparagons technologies","url":"https:\/\/iparagons.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/iparagons.com\/blog\/#\/schema\/logo\/image\/","url":"http:\/\/iparagons.com\/blog\/wp-content\/uploads\/2018\/07\/logo_ip.jpeg","contentUrl":"http:\/\/iparagons.com\/blog\/wp-content\/uploads\/2018\/07\/logo_ip.jpeg","width":140,"height":28,"caption":"iparagons technologies"},"image":{"@id":"https:\/\/iparagons.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/iParagons","https:\/\/x.com\/junaidazam4","https:\/\/www.instagram.com\/azamjunaid\/","https:\/\/pk.linkedin.com\/in\/junaid-azam-2a683443"]},{"@type":"Person","@id":"https:\/\/iparagons.com\/blog\/#\/schema\/person\/8e3ee37e9c2e825bd340f8d71ab7eede","name":"Junaid Azam","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/9f5a4974af969e5b66926242d8f22c1ee7877192a88e3e11381f82ab5d46e642?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/9f5a4974af969e5b66926242d8f22c1ee7877192a88e3e11381f82ab5d46e642?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9f5a4974af969e5b66926242d8f22c1ee7877192a88e3e11381f82ab5d46e642?s=96&d=mm&r=g","caption":"Junaid Azam"},"description":"IBM ECM Consultant","sameAs":["http:\/\/iparagons.com","http:\/\/www.facebook.com\/iPragons","https:\/\/www.linkedin.com\/in\/junaid-azam-2a683443\/","https:\/\/x.com\/iparagons786"],"url":"https:\/\/iparagons.com\/blog\/author\/ip_admin\/"}]}},"_links":{"self":[{"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/posts\/93","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/comments?post=93"}],"version-history":[{"count":11,"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/posts\/93\/revisions"}],"predecessor-version":[{"id":792,"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/posts\/93\/revisions\/792"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/media\/94"}],"wp:attachment":[{"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/media?parent=93"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/categories?post=93"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/tags?post=93"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}