Processor Usage and Storage Usage No Graph

Hi, please help me…
If i am in the wrong place, please let me know.

my libreNMS can’t show the Processor Usage and Storage Usage graph.
For localhost that i have added can show graph of processor usage but not with storage usage including the another host that i have added.
My localhost OS and installed libreNMS is CentOS 7 and my another host is FreeBSD 11.1.
and this output of ./validate.php

[root@nms librenms]# ./validate.php

Component Version
LibreNMS 1.33-199-gb9dc777
DB Schema 221
PHP 7.1.11
MySQL 10.2.11-MariaDB
RRDTool 1.4.8
SNMP NET-SNMP 5.7.2

====================================

[OK] Database connection successful
[OK] Database schema correct
[FAIL] Discovery has never run. Check the cron job

Forgive me if you are confused with my english.
I have tried the all solutions i can found but not succeeded yet.
Thanks for anyone who wants to help

===========================================================================
When asking for help and support, please provide as much information as possible. This should include:

  • Steps to reproduce an issue.
  • The output of ./validate.php

If it’s an issue with the WebUI then please consider including the browser version you are using.

If you need to post any text longer than a few lines, please use a pastebin service such as https://p.libren.ms using non-expiring pastes.

you need to check and see why your discovery is not working its inside /etc/cron.d/librenms

Also try: https://docs.librenms.org/#Support/FAQ/#why-do-i-not-see-any-graphs

@Kevin_Krumm this my /etc/cron.d/librenms file

#Using this cron file requires an additional user on your system, please see install docs.

33 */6 * * * librenms /opt/librenms/cronic /opt/librenms/discovery-wrapper.py 1
*/5 * * * * librenms /opt/librenms/discovery.php -h new >> /dev/null 2>&1
*/5 * * * * librenms /opt/librenms/cronic /opt/librenms/poller-wrapper.py 16
15 0 * * * librenms /opt/librenms/daily.sh >> /dev/null 2>&1

          • librenms /opt/librenms/alerts.php >> /dev/null 2>&1
            */5 * * * * librenms /opt/librenms/poll-billing.php >> /dev/null 2>&1
            01 * * * * librenms /opt/librenms/billing-calculate.php >> /dev/null 2>&1
            */5 * * * * librenms /opt/librenms/check-services.php >> /dev/null 2>&1

what do you think is wrong with my cronjob file? i have never edited this file before.

@laf i have use that file …this my snmpd.conf file

#Change libreNMS to your preferred SNMP community string
com2sec readonly default libreNMS

group MyROGroup v2c readonly
view all included .1 80
access MyROGroup “” any noauth exact all none none

#Update the location here
syslocation City, Country [GPSX,Y]
syscontact admin [email protected]

#Distro Detection
extend .1.3.6.1.4.1.2021.7890.1 distro /usr/bin/distro

OK, it has solved now…
I realize librenms cron script didn’t run well after ./daily.sh don’t running too…
So i added some line on the top crontab of librenms like this

SHELL=/bin/bash
PATH=/opt/librenms:/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root

just my humble suggestion
maybe can added in librenms.nonroot.cron too in librenms source
Thanks for assistance