All-In-One Monitoring

Linux: Secure as a brick

Posted by Dan Fruehauf | Posted in cloud computing, Security, Sysadmin Tools | Posted on 15-07-2011

Tags: , , , , , , , , , ,


People who are familiar with me know that there are two things I’m not forgiving about. The first is backups, the second is security.

If backups interest you, perhaps we can discuss it some other time. This time we’re going to discuss security.

I’m going to outline in the following article some of the best practices I’ve learned along the years and help you “almost brick up, but not just yet” or “harden” your Linux server.

While reading this article, however, I suggest also reading this article as well. As we both try to tackle the same issues. I believe both articles eventually represent the same views in a different guise.

All of the ideas I’m coming up with are already implemented in shk. I suggest downloading shk, reviewing the code and using it.

Summary of Blog Posts for Week of July 4

Posted by Seb Kiureghian | Posted in Weekly Summary | Posted on 09-07-2011

I hope everyone had a great Fourth of July. Here is a summary of the blog posts from this week.

1. Getting Started with Node.js
Server-side programming languages aim to do the most work in the most efficient way in the least amount of time. This post is a thorough introduction to Node.js. We go over its fundamental features like callback functions and the module system. There is also some sample code including a “Hello World” example.

6 Node.js Recipes – Working with the File System

Posted by Hovhannes Avoyan | Posted in Articles | Posted on 09-07-2011

Tags: ,

1. Reading from a file

Problem:

You want to read a file from the file system and display its contents on the terminal screen.

Solution:

var fs = require('fs');
fs.readFile('data.txt', function (err, data) {
  if (err)
    throw err;
  if (data)
    console.log(data.toString('utf8'));
});

30 Ways to Improve Hyper-V Virtualization

Posted by Hovhannes Avoyan | Posted in Articles, cloud computing, Performance Management, Windows Servers Monitoring | Posted on 03-07-2011

Tags: , ,

hyperv
We at Monitis like to keep you informed and we want to make your job as a system admin or webmaster as easy as possible. We’re all about reducing the pressure! So, lately we’ve been creating all kinds of online resources for you to access that offer tips on everything from monitoring server metrics with WMI, to tracking IIS with VBScript, to picking the most effective NoSQL database tool.  The list goes on!

Today, we’d like to offer some tips on hyper-v virtualization. What exactly is that? some of you may be asking, and why should I care?  According to Wikipedia, Microsoft Hyper-V, codenamed Viridian and formerly known as Windows Server Virtualization, is a hypervisor-based virtualization system for x86-64 systems. Released as a beta version, Hyper-V  has since been released in a free stand-alone version, and has been upgraded to Release 2 (R2) status.

Getting Started with Node.js

Posted by Hovhannes Avoyan | Posted in Articles | Posted on 02-07-2011

Tags: , ,

There is an almost insurmountable myriad of server-side environments and web servers all aiming to accomplish the same task: doing the most work in the most efficient way in the least amount of time. However, there are few of these technologies which arguably conquer the many road blocks to achieving this goal (namely concurrency issues and handling the overhead of connection allocation). Among these select few is Node.js.

Summary of Blog Posts for Week of June 25

Posted by Seb Kiureghian | Posted in Weekly Summary | Posted on 02-07-2011

We make a lot of posts that give IT tips and advice, as well as recommendations on how to use Monitis, so here is a summary of the posts for this week in case you missed them.

Monitoring IIS With VBScript via Monitis; It’s so Easy!

This post demonstrates how to monitor an IIS using Monitis Custom Monitors and VBscript. You can use the Monitis API to monitor your own custom metrics. This is very powerful because it lets you monitor any IIS metrics you like, set thresholds and receive notifications.

Top 5 Feature Based IIS Server Performance Tips

Posted by Hovhannes Avoyan | Posted in Articles, Windows Networking, Windows Servers Monitoring | Posted on 30-06-2011

Tags: ,

At Monitis, we want your IIS maintenance and IIS monitoring to run smoothly. We are posting articles on IIS server maintenance – you can read the first article on application based IIS server performance tips and the second article on software based IIS server performace tips if you missed them. In our third article on Microsoft IIS server performance tips, we look at feature based adjustments you can make to improve IIS performance.

Adding some features in the server helps optimize the IIS7 server. Feature based tuning guidelines include putting scripts toward the end and stylesheets on top of the document, reducing DNS lookup, and other methods.

Top 4 Software Based IIS Server Performance Tips

Posted by Hovhannes Avoyan | Posted in Articles, Performance Management, Windows Servers Monitoring | Posted on 26-06-2011

Tags: ,

At Monitis, we want your IIS monitoring and IIS management to go as smoothly as possible.  Our goal is to provide high uptime for your IIS web server, and to that end, we are providing a series of tips to keep your Microsoft IIS server at its optimal performance.

In the second of our three-part series on Microsoft IIS server tips, we will cover software based IIS performance tips that will keep your IIS web server running at its peak.  If you missed our first article, you can find it here – Top 8 Application-Based IIS Server Performance Tips. This first article includes an introduction to IIS and the top eight tips for application based IIS optimization.

The following are our top four software-based tips that improve IIS performance:

Monitoring IIS With VBScript via Monitis; It’s so Easy!

Posted by Hovhannes Avoyan | Posted in 101 Reasons To Choose Monitis, Articles, Monitis API, Monitoring Scripts, Sysadmin Tools, Website Monitoring, Windows Servers Monitoring | Posted on 25-06-2011

Tags: , ,

As Buddy Holly once said: “It’s so easy!”  Rock star Holly was talking about falling in love. But we’re talking about monitoring Internet Information Services (IIS) with Visual Basic Scripting (VBScript) via Monitis. 

In previous posts, we already learned how to access Performance Counters metrics, and How to Monitor Windows Servers with VBScript, WMI and Monitis.  But, in this article, we will put everything together and create a Monits page with the most important parameters for monitoring an IIS Server in production.

How to Easily Monitor Windows Performance Counters with VBScript on Monitis

Posted by Hovhannes Avoyan | Posted in Articles, Monitis API, Monitis vs. Other services, Monitoring Scripts, Performance Management, Sysadmin Tools, Windows Servers Monitoring | Posted on 24-06-2011

Tags: ,

Monitis provides you with the ability to monitor almost any detail on your Windows server (also see our post How to Monitor Windows Servers with VBScript, WMI and Monitis).

Using a simple Visual Basic Script (VBS), you will be able to read the value of any Performance Counter on your Windows Server and send it to a Custom Monitor.

It’s easy as pie. Keep reading for the recipe!