<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
Hello.<br>I'm writing a program to monitor a server's activities. Its about response times for services on the server. There are quite many services and most of the written data are unknowns. The response times is quite crucial and would want to have as high resolution as possible even though there are unknowns. If there's a response time I write it to the DB with 1 second interval though since there are several other services per rrd a update operation could look like 'update database.rrd 1292313983:U:U:U:U:U:U:U:0.012:U:U:U:U:U:U'. I would like to store it for atleast 6 months and thus view it over that time. I'm not interested of if there was no value, but the value itself.<br>I can't tell if there will be a lot of updates during a time interval or none at all which should result in some of the entries won't even get a 'U' value (most probably).<br>I have worked with following<br>rrdtool create -s 1 \<br>DS:ds1:GAUGE:2:0:3600 \<br>...<br>RRA:AVERAGE:0.5:30:720 <br>RRA:AVERAGE:0.5:60:720 <br>RRA:AVERAGE:0.5:420:720<br>RRA:AVERAGE:0.5:1800:720 <br>RRA:MAX:0.5:30:720 <br>RRA:MAX:0.5:60:720 <br>RRA:MAX:0.5:420:720 <br>RRA:MAX:0.5:1800:720<br><br>This didn't work, since I believe there a lot more 'U' values than 0.5 and the resolution isn't good enough and really doesn't make sense according to what I'm trying to sample.<br>RRA:AVERAGE:0.5:1:86400 worked but then having a rra over 6 months (6*30*86400) will result in a big db and slow rendering of images. Any ideas?<br><br>Forgive my English.<br><br><br>                                               </body>
</html>