Posts by roadhawk

    Same as this one: 2.x upgrade - network monitoring graphs are missing


    Just to let you know: after upgrading from 1.9 to 2.1 (without any incident) I had the same incident with the network interface statistics.
    No statictics were displayed anymore for my network adapter. The other indicators were fine (CPU, disk, load, memory)


    After some investigation I found /usr/sbin/omv-mkgraph, which had an 'error' in the code:

    Code
    # Plugin: interface
    ...
    for devicename in ; do


    After adding a fake VLAN and deleting the VLAN the file omv-mkgraph was modified with this code:

    Code
    # Plugin: interface
    ...
    for devicename in eth0 ; do


    This fixed the issue!

    Just to let you know: after upgrading from 1.9 to 2.1 (without any incident) I had the same incident with the network interface statistics.
    No statictics were displayed anymore for my network adapter. The other indicators were fine (CPU, disk, load, memory)


    After some investigation I found /usr/sbin/omv-mkgraph, which had an 'error' in the code:

    Code
    # Plugin: interface
    ...
    for devicename in ; do


    After adding a fake VLAN and deleting the VLAN the file omv-mkgraph was modified with this code:

    Code
    # Plugin: interface
    ...
    for devicename in eth0 ; do


    This fixed the issue!