3일 후 pnp4nagios 그래프

3일 후 pnp4nagios 그래프

친애하는,

pnp4nagios에 이상한 문제가 있습니다.

사실 나는 nagios 서버와 pnp4nagios를 사용하는 많은 그래프를 가지고 있지만 단일 그래프에만 문제가 있습니다.

문제는 최근 3일간의 그래프만 그린다는 점이다.

아래 코드는 그래프에 대한 내 PHP 코드입니다.

<?php

  $ds_name[1] = "Total";

 $opt[1] = "-l 0 --vertical-label \"Numbers\"  --title \"$hostname / $servicedesc\" ";
$opt[1] .= '--slope-mode ';
  # QUEUE
  $def[1] = "DEF:queue=$RRDFILE[1]:$DS[1]:LAST " ;

  # Total
  $def[1] .= "DEF:total=$RRDFILE[1]:$DS[2]:LAST " ;

  # Available
  $def[1] .= "DEF:available=$RRDFILE[1]:$DS[3]:LAST " ;

  # Busy
  $def[1] .= "DEF:busy=$RRDFILE[1]:$DS[4]:LAST " ;

  # OnCall
  $def[1] .= "DEF:oncall=$RRDFILE[1]:$DS[5]:LAST " ;



  #Available
  $def[1] .= rrd::cdef("available_temp", "available,busy,+,oncall,+");
  $def[1] .= rrd::gradient("available_temp", "08870a", "04cc07", "Available", 20);

  $def[1] .= "GPRINT:available:LAST:\"%.0lf  LAST \" ";
  $def[1] .= "GPRINT:available:MAX:\"%.0lf  MAX \" ";
  $def[1] .= "GPRINT:available:AVERAGE:\"%.0lf  AVERAGE \\n\" ";

 #Busy
  $def[1] .= rrd::cdef("busy_temp", "busy,oncall,+");
  $def[1] .= rrd::gradient("busy_temp", "ffbf00", "ff8000", "Busy     ", 20);

  $def[1] .= "GPRINT:busy:LAST:\"%.0lf  LAST \" ";
  $def[1] .= "GPRINT:busy:MAX:\"%.0lf  MAX \" ";
  $def[1] .= "GPRINT:busy:AVERAGE:\"%.0lf  AVERAGE \\n\" ";

  #OnCall
  $def[1] .= rrd::gradient("oncall", "4000ff", "0040ff", "On Call  ", 20);

  $def[1] .= "GPRINT:oncall:LAST:\"%.0lf  LAST \" ";
  $def[1] .= "GPRINT:oncall:MAX:\"%.0lf  MAX \" ";
  $def[1] .= "GPRINT:oncall:AVERAGE:\"%.0lf  AVERAGE \\n\" ";


  $def[1] .= rrd::cdef("queue_temp", "queue,-1,*");
  $def[1] .= rrd::gradient("queue_temp", "ff00ff", "bf00ff", "Queue    ", 20);
  $def[1] .= "GPRINT:queue:LAST:\"%.0lf  LAST \" ";
  $def[1] .= "GPRINT:queue:MAX:\"%.0lf  MAX \" ";
  $def[1] .= "GPRINT:queue:AVERAGE:\"%.0lf  AVERAGE \\n\" ";

#Total ( The Red Line)
  $def[1] .= rrd::line2("total", "#ff0000", "Total    ");
  $def[1] .= "GPRINT:total:LAST:\"%.0lf  LAST \" ";
  $def[1] .= "GPRINT:total:MAX:\"%.0lf  MAX \" ";
  $def[1] .= "GPRINT:total:AVERAGE:\"%.0lf  AVERAGE \\n\" ";

?

>

답변1

나는 이것이 템플릿에 의해 결정되는 것이라고 생각하지 않습니다. 보세요시간 범위문서에서는 이것이 pnp4nagios에 액세스하는 URL에 설정된 것으로 보입니다.

예(고지 start=):

pnp4nagios/graph?host=<hostname>&srv=<servicedesc>&start=-1week

답변2

사실 저는 "Last"를 "average"로 변경하여 문제를 해결했으며 왜 평균이 작동하고 마지막은 작동하지 않는지 묻지 않았습니다. 정말 이상하고 예상치 못한 일이었기 때문입니다.

관련 정보