list_rrd.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!-- Begin toolbar -->
  2. <div class="toolbar">
  3. <div class="toolbar-inner">
  4. <div class="toolbar-buttons">
  5. <a class="button button-secondary" id="btn-back" href="/list/server/"><i class="fas fa-arrow-left status-icon blue"></i><?=_('Back');?></a>
  6. <a href="/list/server/?cpu" class="button button-secondary"><i class="fas fa-chart-pie status-icon green"></i><?=_('show: CPU / MEM / NET / DISK');?></a>
  7. </div>
  8. <div class="toolbar-right">
  9. <a class="toolbar-link<?php if ((empty($period)) || ($period == 'day')) echo " selected" ?>" href="?period=day"><?=_('Daily');?></a>
  10. <a class="toolbar-link<?php if ((!empty($period)) && ($period == 'week')) echo " selected" ?>" href="?period=week"><?=_('Weekly');?></a>
  11. <a class="toolbar-link<?php if ((!empty($period)) && ($period == 'month')) echo " selected" ?>" href="?period=month"><?=_('Monthly');?></a>
  12. <a class="toolbar-link<?php if ((!empty($period)) && ($period == 'year')) echo " selected" ?>" href="?period=year"><?=_('Yearly');?></a>
  13. </div>
  14. </div>
  15. </div>
  16. <!-- End toolbar -->
  17. <div class="l-center animate__animated animate__fadeIn">
  18. <div class="form-container form-container-wide">
  19. <!-- Begin graph list item loop -->
  20. <?php foreach ($data as $key => $value) { ?>
  21. <div class="u-mb20">
  22. <h2 class="l-unit__name separate">
  23. <?=_($data[$key]['TITLE'])?>
  24. </h2>
  25. <?php if($data[$key]['TYPE'] != 'net'){?>
  26. <canvas id="<?=$data[$key]['RRD'];?>" class="js-chart" width="800" height="200" period="<?php echo htmlentities($period);?>"></canvas>
  27. <?php }else{?>
  28. <canvas id="net_<?=$data[$key]['RRD'];?>" class="js-chart" width="800" height="200" period="<?php echo htmlentities($period);?>"></canvas>
  29. <?php } ?>
  30. </div>
  31. <?php } ?>
  32. </div>
  33. </div>
  34. <div id="vstobjects">
  35. <div class="l-separator"></div>
  36. <div class="l-center"></div>
  37. </div>