7 More Discussions You Might Find Interesting
1. UNIX for Advanced & Expert Users
A well established form of application cron jobs look like this:
39 15 * * * && /usr/local/monitoring/oracle/check_dbs.sh >/dev/null 2>&1The repetition makes it a long line, hard to read, hard to maintain.
I suggest the following instead:
39 15 * * * { /usr/local/monitoring/oracle/check_dbs.sh... (1 Reply)
Discussion started by: MadeInGermany
1 Replies
2. Programming
Hello,
Please how can represent this graph in java ?
i have to apply an algorithm on this graphe, the first instruction of the algorithm is to verify if the three last vertices are dependent or not ?
Thank you. (1 Reply)
Discussion started by: chercheur857
1 Replies
3. Programming
Using adjacency lists, I implemented this operation as follows:
/* remove the first node it finds with value 'val' in L list */
edge *removeEdge (edge *L, int val)
{
if( !L ) return NULL;
if( L->key == val )
{
edge *temp = L->next;
free (L);
... (5 Replies)
Discussion started by: Luke Bonham
5 Replies
4. Shell Programming and Scripting
It's been a while since i've been here.. and hopefully you can help me.
I have created a script to get the filesystem utilization. Now i want to create a growth graph, which would show how much kb we increase per day.
Here's the data
03-02-2010 00:00:00: /dev/md/dsk/d30 46473377 7355320... (5 Replies)
Discussion started by: ryandegreat25
5 Replies
5. IP Networking
Hi all,
I have a graph sent from customer.
And i just know this is created using rrdtool after search the web.
Based on this graph,
1. I read that it can be set, but is it possible to know what is the time step for each point in this graph? is it 5 minutes or something?
2. Let says it is 5... (4 Replies)
Discussion started by: wilsonSurya
4 Replies
6. AIX
Guru's
I need to develop a graph which shows the CPU, memory and swap space utilization in a single graph against time
I know of NMON but I am not able to make a single graph out of it.
Does anyone know of any script or tool for data sampling and developing graph?
Thanks in advance
... (1 Reply)
Discussion started by: balaji_prk
1 Replies
7. Shell Programming and Scripting
How can I generate graphs using perl in unix solaris environment?
Please suggest. (2 Replies)
Discussion started by: wadhwa.pooja
2 Replies