<?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: How to monitor system performance-disk in XSOAR 6.12 in Cortex XSOAR Discussions</title>
    <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/how-to-monitor-system-performance-disk-in-xsoar-6-12/m-p/593413#M3505</link>
    <description>&lt;P&gt;Please someone support on this.&lt;/P&gt;</description>
    <pubDate>Tue, 30 Jul 2024 01:33:32 GMT</pubDate>
    <dc:creator>assubramania</dc:creator>
    <dc:date>2024-07-30T01:33:32Z</dc:date>
    <item>
      <title>How to monitor system performance-disk in XSOAR 6.12</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/how-to-monitor-system-performance-disk-in-xsoar-6-12/m-p/593094#M3501</link>
      <description>&lt;P&gt;&lt;SPAN&gt;We want to monitor server performance in real time for that we are using default dashboard named "System Health". But in that we are not able to monitor disk.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Our server is on Prem and its version of xsoar is 6.12.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please assist quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 08:47:53 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/how-to-monitor-system-performance-disk-in-xsoar-6-12/m-p/593094#M3501</guid>
      <dc:creator>assubramania</dc:creator>
      <dc:date>2024-07-30T08:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to monitor system performance-disk in XSOAR 6.12</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/how-to-monitor-system-performance-disk-in-xsoar-6-12/m-p/593413#M3505</link>
      <description>&lt;P&gt;Please someone support on this.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 01:33:32 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/how-to-monitor-system-performance-disk-in-xsoar-6-12/m-p/593413#M3505</guid>
      <dc:creator>assubramania</dc:creator>
      <dc:date>2024-07-30T01:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to monitor system performance-disk in XSOAR 6.12</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/how-to-monitor-system-performance-disk-in-xsoar-6-12/m-p/593712#M3510</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/258347"&gt;@assubramania&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have you tried the following content pack? If not, please give it a try.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://cortex.marketplace.pan.dev/marketplace/details/HealthCheck/" target="_blank"&gt;https://cortex.marketplace.pan.dev/marketplace/details/HealthCheck/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Also, you can always use any APM solution (free or paid) to monitor your on-prem environment in real time.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2024 21:06:53 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/how-to-monitor-system-performance-disk-in-xsoar-6-12/m-p/593712#M3510</guid>
      <dc:creator>oromeromoya</dc:creator>
      <dc:date>2024-07-31T21:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to monitor system performance-disk in XSOAR 6.12</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/how-to-monitor-system-performance-disk-in-xsoar-6-12/m-p/593832#M3514</link>
      <description>&lt;P&gt;To monitor system performance, including disk usage, in Cortex XSOAR 6.12, you can also set up custom monitoring using scripts and dashboards. Since the default "System Health" dashboard may not include disk monitoring, you can create your own dashboard or enhance the existing one through a custom script (automation) using the "psutil" Python library for example. Then you can create a Job to run the script periodically or you may create a custom Dashboard to display disk usage:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;import psutil

def main():
    # Get disk usage statistics
    disk_usage = psutil.disk_usage('/')
    
    # Prepare the results
    results = {
        'Total': disk_usage.total,
        'Used': disk_usage.used,
        'Free': disk_usage.free,
        'Percent': disk_usage.percent
    }
    
    # Return the results to XSOAR context
    demisto.results({
        'Type': entryTypes['note'],
        'ContentsFormat': formats['json'],
        'Contents': results,
        'EntryContext': {
            'DiskUsage': results
        }
    })

if __name__ in ('__main__', '__builtin__', 'builtins'):
    main()&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 22:22:26 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/how-to-monitor-system-performance-disk-in-xsoar-6-12/m-p/593832#M3514</guid>
      <dc:creator>oromeromoya</dc:creator>
      <dc:date>2024-08-01T22:22:26Z</dc:date>
    </item>
  </channel>
</rss>

