{"id":7691,"date":"2024-02-09T17:21:29","date_gmt":"2024-02-09T11:51:29","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=7691"},"modified":"2024-02-09T17:21:32","modified_gmt":"2024-02-09T11:51:32","slug":"how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\/","title":{"rendered":"How to set up the custom memory cache monitor on Nagios and clear the memory cache with cronjob?"},"content":{"rendered":"\n<p><strong>Introduction:<\/strong><\/p>\n\n\n\n<p>Monitoring memory cache utilization is crucial for maintaining optimal system performance and resource utilization in your IT infrastructure. Nagios, a powerful monitoring system, allows you to track various metrics, including memory cache usage.<\/p>\n\n\n\n<p><strong>Prerequisite<\/strong>:<\/p>\n\n\n\n<p>Server root login credentials.<\/p>\n\n\n\n<p><strong>Step 1:<\/strong><\/p>\n\n\n\n<p>Log in to the Ubuntu or Centos server as a user with sudo privileges. we can use SSH or directly access the server.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>ssh root@Ip<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Step 2:<\/strong><\/p>\n\n\n\n<p><span style=\", Segoe, sans-serif;font-size: 17px\">Edit the \/usr\/local\/nagios\/etc\/nrpe.cfg configuration file and search for&nbsp;<\/span><span style=\"font-weight: 700;, Segoe, sans-serif;font-size: 17px\"><strong><em>command<\/em><\/strong><\/span><span style=\", Segoe, sans-serif;font-size: 17px\"><strong>&nbsp;<\/strong>definition sections. Here you can define or update check commands.<\/span><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>$ vi \/usr\/local\/nagios\/etc\/nrpe.cfg<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Please update the below command for the memory cache check.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>$ command[check_memory_cache]=\/usr\/local\/nagios\/libexec\/check_memory_cache<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Step 3:<\/strong><\/p>\n\n\n\n<p>Go to the libexec path and create a new script file&nbsp;in the specified path, such as check_memory_cache.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>vi \/usr\/local\/nagios\/libexec\/check_memory_cache<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Please copy the below commands, and paste the check_memory_cache file, and save the file.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>!\/bin\/bash<br>#Get the memory cache size in kilobytes<br>memory_cache=$(free -k | awk &#8216;\/^Mem:\/ {print $6}&#8217;)<br>#Convert the threshold to kilobytes (2GB = 2097152 KB)<br>threshold_kb=2097152<br>if [ -z &#8220;$memory_cache&#8221; ]; then<br>echo &#8220;UNKNOWN &#8211; Unable to retrieve memory cache information&#8221;<br><code>exit 3 # Nagios UNKNOWN status<\/code><br>elif [ &#8220;$memory_cache&#8221; -gt &#8220;$threshold_kb&#8221; ]; then<br><code># Clear memory cache by syncing file system buffers to disk <\/code><br>sync; echo 1 &gt; \/proc\/sys\/vm\/drop_caches<br><code>echo \"CRITICAL - Memory cache is above 2GB. Cached: $memory_cache KB and Cleared the Memory cache\" <\/code><br>else<br>echo &#8220;OK &#8211; Memory cache is within limits. Cached: $memory_cache KB&#8221;<br>exit 0 # Nagios OK status<br>fi<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Step 4:<\/strong><br>Give permission to the check_memory_cache file as below<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>$ chmod 755 check_memory_cache<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Step 5:<\/strong><br>Next, restart the NRPE service. Now it is ready to listen to requests from the Nagios Server.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>$ systemctl restart nagios-nrpe-server<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Step 6<\/strong>:<br>Login to Nagios server<\/p>\n\n\n\n<p><strong>Step <\/strong>7:<\/p>\n\n\n\n<p>Open the below for the configuration path.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>$ vi \/usr\/local\/nagios\/etc\/servers\/server.cfg<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Add the below lines for the Memory cache checking the configuration and save it.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>define service {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; use&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; generic-service&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; Name of service template to use<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; host_name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; testserver2<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; service_description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;check_memory_cache<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; check_command&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; check_nrpe!check_memory_cache<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; contact_groups&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;admins<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; notifications_enabled&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Step 8:<\/strong><br>Save the configuration file.<\/p>\n\n\n\n<p>And finally, restart Nagios to apply the recent configuration changes:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>$ systemctl restart nagios<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Step 9:<\/strong><\/p>\n\n\n\n<p><strong>To clear the memory cache with cronjob.<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Log in to the target server and set up a cron job to clear the memory cache.<\/li>\n\n\n\n<li>Edit the cron timing with the below command.<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>crontab -e<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>      3. Add the cron time every five minutes<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>*\/5 * * * * \/usr\/local\/nagios\/libexec\/check_memory_cache<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Conclusion:<\/strong><\/p>\n\n\n\n<p>Setting up a custom memory cache monitor on Nagios is essential for effectively monitoring and managing memory resources in your IT infrastructure. By proactively monitoring cache memory usage, administrators can identify potential performance bottlenecks or resource constraints before they impact system performance or availability<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction: Monitoring memory cache utilization is crucial for maintaining optimal system performance and resource utilization in your IT infrastructure. Nagios, a powerful monitoring system, allows you to track various metrics, including memory cache usage. Prerequisite: Server root login credentials. Step 1: Log in to the Ubuntu or Centos server as&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to set up the custom memory cache monitor on Nagios and clear the memory cache with cronjob?<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":496,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-7691","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/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:\/\/pheonixsolutions.com\/blog\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction: Monitoring memory cache utilization is crucial for maintaining optimal system performance and resource utilization in your IT infrastructure. Nagios, a powerful monitoring system, allows you to track various metrics, including memory cache usage. Prerequisite: Server root login credentials. Step 1: Log in to the Ubuntu or Centos server as&hellip; Continue Reading How to set up the custom memory cache monitor on Nagios and clear the memory cache with cronjob?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-09T11:51:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-09T11:51:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Saikrishna Areddy\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Saikrishna Areddy\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\\\/\"},\"author\":{\"name\":\"Saikrishna Areddy\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/fc35ace8f00b25766f1de0edb110bbe1\"},\"headline\":\"How to set up the custom memory cache monitor on Nagios and clear the memory cache with cronjob?\",\"datePublished\":\"2024-02-09T11:51:29+00:00\",\"dateModified\":\"2024-02-09T11:51:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\\\/\"},\"wordCount\":617,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2024-02-09T11:51:29+00:00\",\"dateModified\":\"2024-02-09T11:51:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to set up the custom memory cache monitor on Nagios and clear the memory cache with cronjob?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/fc35ace8f00b25766f1de0edb110bbe1\",\"name\":\"Saikrishna Areddy\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/219fb50fa61a168b58a5e704d05058f958504aa8324675172185e3f0e8b3fd24?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/219fb50fa61a168b58a5e704d05058f958504aa8324675172185e3f0e8b3fd24?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/219fb50fa61a168b58a5e704d05058f958504aa8324675172185e3f0e8b3fd24?s=96&r=g\",\"caption\":\"Saikrishna Areddy\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/saikrishna\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction: Monitoring memory cache utilization is crucial for maintaining optimal system performance and resource utilization in your IT infrastructure. Nagios, a powerful monitoring system, allows you to track various metrics, including memory cache usage. Prerequisite: Server root login credentials. Step 1: Log in to the Ubuntu or Centos server as&hellip; Continue Reading How to set up the custom memory cache monitor on Nagios and clear the memory cache with cronjob?","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2024-02-09T11:51:29+00:00","article_modified_time":"2024-02-09T11:51:32+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"Saikrishna Areddy","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"Saikrishna Areddy","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\/"},"author":{"name":"Saikrishna Areddy","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/fc35ace8f00b25766f1de0edb110bbe1"},"headline":"How to set up the custom memory cache monitor on Nagios and clear the memory cache with cronjob?","datePublished":"2024-02-09T11:51:29+00:00","dateModified":"2024-02-09T11:51:32+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\/"},"wordCount":617,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2024-02-09T11:51:29+00:00","dateModified":"2024-02-09T11:51:32+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-the-custom-memory-cache-monitor-on-nagios-and-clear-the-memory-cache-with-cronjob\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to set up the custom memory cache monitor on Nagios and clear the memory cache with cronjob?"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/fc35ace8f00b25766f1de0edb110bbe1","name":"Saikrishna Areddy","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/219fb50fa61a168b58a5e704d05058f958504aa8324675172185e3f0e8b3fd24?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/219fb50fa61a168b58a5e704d05058f958504aa8324675172185e3f0e8b3fd24?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/219fb50fa61a168b58a5e704d05058f958504aa8324675172185e3f0e8b3fd24?s=96&r=g","caption":"Saikrishna Areddy"},"url":"https:\/\/pheonixsolutions.com\/blog\/author\/saikrishna\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-203","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/7691","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/496"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=7691"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/7691\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=7691"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=7691"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=7691"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}