Tagged Questions

2
votes
5answers
75 views

Getting the uptime of a SunOS UNIX box in seconds only

How do I determine the uptime on a SunOS UNIX box in seconds only? On Linux, I could simply cat /proc/uptime & take the first argument: cat /proc/uptime | awk '{print $1}' …
1
vote
3answers
62 views

Showing only the uptime from uptime [unix]

I'd like to trim the output from uptime 20:10 up 23 days, 3:28, 3 users, load averages: 3.84 1.06 0.64 so that it just shows: 23 days I've tried using sed, but I'm not sure …
1
vote
2answers
153 views

What API do I call to get the system uptime?

I would like to get the system uptime from within a C application running on a linux-based system. I don't want to call uptime(1) and parse the output, I'd like to call the underl …
0
votes
3answers
54 views

Is there a simple app for pinging a list of websites?

Basically, I just need a simple app that frequently pings external IP Addresses and web addresses to make sure the sites are up. Does anyone know of a good one of these? I starte …
3
votes
3answers
91 views

What’s a good strategy to restart downed FastCGI processes automatically?

I've got a Perl based FastCGI app that rarely goes down. However, when it does go down, the restart is not automatic. Restarting Apache manually always does the trick but that does …
0
votes
4answers
197 views

Finding the Uptime of a server programatically

Does anyone know of a way to programatically find the uptime of a server running Windows 2000? We have a service running on the machine written in VB.NET, that reports back to our …
1
vote
3answers
283 views

Mac os X : load average

I'm wondering i always see my load average on my computer 1.76,1.31,1.08 at the moment. but what the hell does it mean ?
1
vote
5answers
251 views

Best way to monitor uptime of a remote windows server?

The company I work with currently has 10 windows boxes running various in house scripts, however occasionally one goes down and no one notices for periods of up to 24 hours because …
1
vote
5answers
225 views

Putting a value on the load of a windows system

I've written an image processing script in php which is run as a cron scheduled task (in OSX). To avoid overloading the system, the script checks the system load (using 'uptime') a …
0
votes
4answers
71 views

A backup persistence store. What are my options ?

I have a service that accepts callbacks from a provider. Motivation: I do not want to EVER lose any callbacks (unless of course my network becomes unreachable). Let's suppose the …
1
vote
2answers
126 views

Reasonable Downtime

I run about 5 different hosted servers, through a variety of hosting providers. In the past two months, one of the servers I work on has been down twice. Both times were unexpect …
0
votes
2answers
71 views

Intranet Uptime Monitoring Component

I have a MOSS 2007 test site, its not public facing, instead its on our intranet, I am looking for an uptime monitoring component thats free and easy to install, any suggestions? …
3
votes
6answers
151 views

Recommend an automatic web application availiblity checker

Hi, I am looking for a piece of software that I can schedule to check that our web apps are up and running. I've used HP open view years ago, but remember it being quite expensive …
7
votes
4answers
270 views

How do I know if a system has powered on?

I am writing a script that powers on a system via network. And then i need to run a few commands on the other host. How do I know whether the system has powered on? My programmin …
2
votes
2answers
87 views

Wordpress Site Monitoring software / service

What do you use to monitor the uptime / performance of your websites, specifically those based on a PHP/MySQL platform like Wordpress? I'm looking for something that alerts me if …