Click here to Skip to main content
15,885,216 members
Articles / Programming Languages / C#

VMSTAT Analyzer

Rate me:
Please Sign up or sign in to vote.
3.69/5 (9 votes)
1 Sep 2009GPL39 min read 68.5K   5.8K   8  
Helps UNIX / Linux administrators to analyze VMSTAT files for system resource utilization.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

namespace VMSTAT_Analyzer
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new frmVMSTATAnalyzer());
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Tester / Quality Assurance
India India
I am a Performance Engineer, but I like programming. i don't do it as a specialty, but because i love it. anyone who supports source code sharing on the same plane as me.
Anyone who wants to learn more about me can feel free to contact me. Meanwhile, i'd appreciate your feedback. Get in touch sumitsushil@gmail.com

* If this article is helpful, please give reputation points.
* Don't forget to tip the waiter with your appreciation.

Comments and Discussions