uptime is a Unix command which tells how long the system has been running.

learn more… | top users | synonyms

0
votes
3answers
51 views

Viewing server uptime

I am fairly new to web development, and am having a small issue. I am creating an html website on a cluster that I administrate. I would like to have the server uptime displayed on the main page ...
-1
votes
0answers
9 views

glassfish cluster node by node update

Is there an opportunity to update application on Glassfish v3.1.* cluster node by node, I meen when one node is always up? Something like this: 1.old-up|old-up -> 2.old-down|old-up -> ...
0
votes
1answer
70 views

Know if uptime timer is reset or Android has been rebooted

I have a independent clock created in my application. The clock runs as a different thread in the activity, starting from a base time set by me. I update the clock using the difference between the ...
0
votes
2answers
87 views

Uptime iOS Objective C - millisecond precision

I'm trying to get uptime for iOS. I was using mach_absolute_time - but I found that it paused during sleep. I found this snippet: - (time_t)uptime { struct timeval boottime; int mib[2] = ...
-2
votes
1answer
29 views

Comparative Sort for two parameter - Best Uptime Monitoring Rank

I have a Uptime Monitoring service, Since I want to sort my customer by best Uptime and Monitoring Date ! Both Parameters are used when I want to rank them ! So I want an algorithm to Rank the ...
0
votes
1answer
72 views

How to get uptime / creation time for a network interface on linux

Could you please help in getting , how to get uptime or creation time for a network interface on linux? Thanks S Sarath
1
vote
2answers
57 views

How to deal with uptime and redundancy issues in a shared hosting environment in coldfusion?

I'm running a production service in a shared Coldfusion 10 environment. Although it is much more reliable than CF9, I still run into some issues that when they do, the live service might be down for ...
0
votes
2answers
176 views

/proc/uptime in Mac OS X

I need the EXACT same output as Linux's "cat /proc/uptime". For example, with /proc/uptime, you'd get 1884371.64 38646169.12 but with any Mac alternative, like "uptime", you'd get 20:25 up ...
0
votes
0answers
62 views

How to implement a maintenance page in nginx when the backend service is running on a different machine?

I am looking for a clena and simple solution that would enable nginx to display a maintenance page while the backend proxy is restarted (not dead!). Here are some facts, nginx is running on another ...
0
votes
1answer
94 views

Monitoring uptime and health of several services (web service, oracle, web app)

I have several services growing in activity. I'm looking for a simple service that can monitor them (web service, oracle, web app), and send an email when one is down. Thanks a lot :)
-1
votes
4answers
200 views

How to write a Perl script to monitor services [closed]

I have a few servers (svn, sql..) running remotely in various windows services and sometimes it goes beyond notice that a particular service had stopped and I realized that after many hours or even ...
-1
votes
1answer
79 views

OS X Uptime History [closed]

How to find os x uptime history? There is "last reboot" command on termina which reports last reboot history. How do I write a program with objective C that gets all uptime history ? Thanks in ...
1
vote
1answer
138 views

how to use GNU make --max-load on a multicore Linux machine?

From the documentation for GNU make: http://www.gnu.org/software/make/manual/make.html#Parallel When the system is heavily loaded, you will probably want to run fewer jobs than when it is ...
0
votes
0answers
119 views

Client/Server uptime monitoring

I'm trying to find a connectivity monitoring solution, ideally open source, that will fit the following criteria: A client/server model. The client will run on the machine with the intermittent ...
1
vote
1answer
434 views

Getting iOS system uptime, that doesn't pause when asleep

I'm looking for a way to get an absolute, always-incrementing system uptime on iOS. It should return the time since the device was last rebooted, and not be affected by changes to the system date. ...
3
votes
2answers
118 views

PHP non-persistent process design vs Python/Java

Currently I'm considering between these 3 languages for a project that will require a very high uptime (uptime is more important than performance). I've been a PHP developer for some time and ...
0
votes
2answers
163 views

Solr deployment strategies for 100% Up Time while creating whole index

I'm working on a Solr 3.6 with ASP.net MVC3 e-commerce project. I've an index of appx. 1 lac products in Solr. There is some changes in requirements, and we need to rebuild the whole index. Whole ...
0
votes
5answers
344 views

Get last five minutes load average using ksh with uptime

To an idea of CPU load average, I'm using uptime in a ksh script: uptime | awk '{print $11}' | sed '$s/.$//' | read CPU where I then use the variable CPU later. The $11 part is to isolate the last ...
5
votes
3answers
679 views

Get the precise time of system bootup on iOS/OS X

Is there an API to obtain the NSDate or NSTimeInterval representing the time the system booted? Some APIs such as [NSProcessInfo systemUptime] and Core Motion return time since boot. I need to ...
-1
votes
2answers
518 views

How to count up time in javascript (maybe with jquery)

On my app, I have a command ( @uptime = 'uprecords -s | awk '{ print $5 }')that returns the current uptime from computer (using uptimed) it returns something like 01:00:00 (hours, minutes, seconds) ...
0
votes
0answers
38 views

XCODE: How to get Application Uptime

As title, how to get application uptime (including run in background). I have think about to get it manually by NSTimer, but NSTimer doesn't work in background mode. Thanks ..
0
votes
2answers
177 views

uptime remote counter php

What I want is a little beyond of my basic knowledge on webdev. Im looking for a way to develop a php counter to show me how much time there is an online computer on a network (as he ought to be ...
0
votes
5answers
507 views

Measuring server uptime

I'm creating an game server list, and I want to measure uptime for certain server (to be specific, uptime should be displayed in percents). I have configured a cronjob for my script, which is ...
0
votes
2answers
363 views

getting program uptime

I'm beginner to programming. This is my code: private void timer1_Tick(object sender, EventArgs e) { sec++; textBoxSeconds.Text = sec.ToString(); if (sec > 59) { sec = 0; ...
1
vote
3answers
806 views

uptime VS. top CPU usage : What should I believe, why this difference?

I'm having some performance issue on my embedded device: # uptime 14:59:39 up 5:37, load average: 1.60, 1.50, 1.53 Very bad for a monocore system ... :-p! However if I check with the top ...
1
vote
4answers
946 views

Hosting for Ruby on Rails [closed]

Since two or three month I'm learning to programm in Ruby and also website developpement with Ruby on Rails. I worked on a small website for me and my friends and it is now operational (localy on my ...
1
vote
1answer
254 views

Website monitoring tool recommdation for internal only communications

Can anyone recommend a simple internal website monitor / alert tool that supports proxy server based requests? I've written a series of asp .net application sites which use windows authentication. ...
20
votes
3answers
1k views

Erlang's 99.9999999% (nine nines) reliability

Erlang was reported to have been used in production systems for over 20 years with an uptime percentage of 99.9999999%. I did the math as the following: 20*365.25*24*60*60*(1 - 0.999999999) == 0.631 ...
2
votes
3answers
773 views

Web App: High Availability / How to prevent a single point of failure?

Can someone explain to me how high-availability ("HA") works for a web application ... because I assume HA means that there exist no single-point-of-failure. However, even if a load balancer is used- ...
4
votes
2answers
586 views

Retrieve the windows service uptime?

Is there is a way to get the start time of a windows service by code in c#.? Is there is a way to get the number of re-starts of the windows service in last 72 hours?
2
votes
4answers
1k views

Windows Last Boot Date & Time using Delphi

How to get the date & time of the last boot / reboot / restart on Windows 2008/2003 machine? I know from command prompt we can use "net statistics", but how to do it via Delphi? Thanks.
2
votes
3answers
141 views

Problems with infinite for loop

I am stater in java programming ... I am writing a scheduler. I am reading date and time values from a properties file. If there are any changes in the properties file then i have to reschedule the ...
3
votes
2answers
563 views

Architecture to create an uptime monitor in Node.js

What's the best solution for using Node.js and Redis to create an uptime monitoring system? Can I use Redis as a queue but is not the best way to save information, maybe MongoDB is? It seems pretty ...
0
votes
1answer
589 views

Permission issue getting uptime with performance counters

I'm trying to read the system uptime using performance counters in C++. I want to support both XP and Windows 7 at minimum. The following code works fine on Windows XP... HQUERY hQuery; HCOUNTER ...
12
votes
4answers
6k views

Alternative to Pingdom website monitoring service [closed]

I need a website monitoring service to make sure my app is not only up but also responsive. Pingdom is great, but just so expensive. Is there anything like it but more affordable? Ideally the web ...
0
votes
2answers
594 views

Server uptime script

I'm trying to do something for my website .. to be specific, I'm trying to do a script for uptime. I have the reader, a script which read the percents from a table ..
3
votes
2answers
318 views

Grammatically correct uptime in C#

I want to return a string, that is grammatically correct to display the current uptime. For example, 3 years, 7 months, 11 days, 1 hour, 16 minutes and zero seconds, meaning singular units should not ...
0
votes
3answers
345 views

Whats the best way to determine availability or uptime of my systems [closed]

By this I mean, whats the best way show the uptime of systems? Idealy id like to show some sort of percentage figure, like what the webhosts do. ie 99.5% uptime. Is there a standard way to ...
0
votes
1answer
131 views

Best way to deal with monitor alert overload and desensitization?

We're in the process of adding monitoring to various servers and processes on our network, and currently, the various monitors will email my development group if something seems amiss - no customer ...
1
vote
3answers
130 views

Ruby: Detect times when Fedora machine is powered-on

feels like I visited stackoverflow 100 times before. Always found good solutions, but now I'm stuck. I want to monitor how long a computer runs every day. This is part of a program written in Ruby, ...
2
votes
3answers
2k views

can you fake *nix uptime?

Just curious, Can you fake an uptime, for instance increase it to 10 years? I have tried changing system time, and it won't do this trick.
0
votes
4answers
147 views

How to return the amount of years passed?

My friend and I are working on a fairly basic uptime script for an IRC Bot. Here's our code: function Uptime() { global $uptimeStart; $currentTime = time(); $uptime = $currentTime - ...
0
votes
2answers
373 views

May I use CDN for whole website (PHP, Apache, MySQL) or just for images and CSS, JS files?

May I use CDN for whole website (PHP, Apache, MySQL) or just for images and CSS, JS files? What's the best choice > cloud-hosting or dedicated-hosting? Does CDN has that support? Witch hosting you ...
2
votes
3answers
2k views

How often will uptimeMillis() reset and will it affect Handler.postAtTime

Description to method uptimeMillis says: Returns milliseconds since boot, not counting time spent in deep sleep. Note: This value may get reset occasionally (before it would otherwise ...
3
votes
1answer
2k views

PHP server statistics script?

I'm not really sure where to put this question (it's not really webapps or superuser) but I'm sure something similar already exists. I'm looking for a php script that gives me detailed info about ...
2
votes
5answers
241 views

Is pinging to a site a good way of checking whether it's down or not?

I'm trying to write a small website monitoring program, that can check my web hosts to see whether they are down or not, and to calculate the uptime or warn me if it's down. It's going to be a ...
0
votes
1answer
248 views

Website availability API

I'm one of the developers of TryAgain, an add-on for Firefox that keeps trying to load a webpage when the server cannot be reached. A user recently suggested having the add-on check if the website ...
0
votes
2answers
100 views

Cheking if a webpage is online (best practices for making a Uptime Bot)

im making a investigation and i need to check every 15 min for about 7 days if a web site is online. I have the url and high programing skills in VB6 and PHP, and some ideas of how to do that (like ...
1
vote
2answers
545 views

monitor process uptime on Windows

We want to monitor some processes on windows machine. If process is down for 30 minutes, an alarm will be raised. Is it possible/or necessary to monitor a process downtime precisely, say, a process is ...
5
votes
6answers
1k views

OSX: programmatically get uptime?

Something similar to linux cat /proc/uptime which returns the uptime in seconds, and preferably not parsing uptime(1).

1 2