RTM Realtime Monitoring

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Complex Event Processing RSS News RTM Realtime Monitoring
# 1  
Old 08-30-2009
RTM Realtime Monitoring

RTM Realtime Monitoring is a German provider of tailored complex event processing solutions. These solutions deliver live business insights; they empower customers to analyze business data continuously and to take immediate action. The solutions are based on RTM Analyzer, a feature-rich, Java-based CEP platform, whose cutting-edge technologies originate from long-term academic research. RTM Analyzer follows a [...]

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Realtime monitoring of files in a directory

Hello Experts, Here are my requirements. I want to monitor a directory and retrieve file properties like file names along with file sizes of files being generated today and that exceeds a threshold limit (say 10MB) using a shell script. Basically this shell script should monitor (kinda... (1 Reply)
Discussion started by: RamanM
1 Replies

2. Shell Programming and Scripting

Copying files realtime

I have a primary server where certain files are created real time. These files have varying file sizes. I want to FTP or copy them over to a different server server as soon a file gets created. I have to ensure that only full file is copied. The receiving end process expects a FULL file. I am ok... (3 Replies)
Discussion started by: vskr72
3 Replies

3. Solaris

realtime monitoring to Sunstorage 3310

Hi all, I have Sun storage 3310 and i have installed CAM to make real time monitor, but unfortunately CAM not supported to 3000 model. is there is any application like CAM and support to 3310 model i can use.. please ur advice?? Thx Regards, Ahmad (2 Replies)
Discussion started by: ahmad_wa
2 Replies

4. Shell Programming and Scripting

compare realtime

I have two log files which keeps appending every sec...I want to extract a certain field from each file(using awk for extracting the data) and compare them in real time... ex: log1 122 234 567 log2 234 567 log3 122 i need a log3 which keeps appending the data found in log1 and... (7 Replies)
Discussion started by: wannalearn
7 Replies
Login or Register to Ask a Question
nanosleep(3)						     Library Functions Manual						      nanosleep(3)

NAME
nanosleep - Suspends a process from execution for the specified timer interval (P1003.1b) LIBRARY
Realtime Library (librt.so, librt.a) SYNOPSIS
#include <time.h> int nanosleep ( const struct timespec *rqtp, struct timespec *rmtp); PARAMETERS
*rqtp A pointer to the timespec data structure that defines the time interval during which the calling process is suspended. *rmtp A pointer to the timespec data structure that receives the amount of time remaining in the previously requested interval, or zero if the full interval has elapsed. DESCRIPTION
The nanosleep function suspends a process until one of the following conditions is met: o The time interval specified in rqtp has elapsed. o A signal is delivered to the calling process and the action is to deliver a signal to a signal-catching function (or to terminate the process). The suspension time may be longer than requested because the argument value is rounded up to an integer multiple of the clock resolution, or due to the scheduling of other activity. Except when it is interrupted by a signal, the suspension time is not less than the time speci- fied by the rqtp argument (as measured by the system clock). RETURN VALUES
When the nanosleep function returns because the requested time has elapsed, the call is successful and a value of 0 (zero) is returned. If the nanosleep function returns because it was interrupted by a signal, a value of -1 is returned. If the rmtp argument is not NULL, the timespec structure referenced by the call is updated to contain the time remaining in the interval. If the rmtp argument is NULL, the remaining time is not returned. On an unsuccessful call, a value of -1 is returned and errno is set to indicate that an error occurred. ERRORS
The nanosleep function fails under the following conditions: [EINTR] The nanosleep function was interrupted by a signal. [EINVAL] The rqtp argument specified a nanosecond value less than zero or greater than or equal to 1000 million. RELATED INFORMATION
Functions: sleep(1) Guide to Realtime Programming delim off nanosleep(3)