Skip to content

Commit

Permalink
use other mib
Browse files Browse the repository at this point in the history
  • Loading branch information
Koos85 committed Mar 21, 2024
1 parent e1a00e8 commit d0864ca
Show file tree
Hide file tree
Showing 7 changed files with 889 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/check/disk.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from ..utils import get_data

QUERIES = (
MIB_INDEX['READYNAS-MIB']['diskEntry'],
MIB_INDEX['READYDATAOS-MIB']['diskEntry'],
)


Expand Down
2 changes: 1 addition & 1 deletion lib/check/fan.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from ..utils import get_data

QUERIES = (
MIB_INDEX['READYNAS-MIB']['fanEntry'],
MIB_INDEX['READYDATAOS-MIB']['fanEntry'],
)


Expand Down
2 changes: 1 addition & 1 deletion lib/check/psu.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from ..utils import get_data

QUERIES = (
MIB_INDEX['READYNAS-MIB']['psuEntry'],
MIB_INDEX['READYDATAOS-MIB']['psuEntry'],
)


Expand Down
2 changes: 1 addition & 1 deletion lib/check/temperature.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from ..utils import get_data

QUERIES = (
MIB_INDEX['READYNAS-MIB']['temperatureEntry'],
MIB_INDEX['READYDATAOS-MIB']['temperatureEntry'],
)


Expand Down
2 changes: 1 addition & 1 deletion lib/check/volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from ..utils import get_data

QUERIES = (
MIB_INDEX['READYNAS-MIB']['volumeEntry'],
MIB_INDEX['READYDATAOS-MIB']['volumeEntry'],
)


Expand Down
2 changes: 1 addition & 1 deletion lib/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Version string. Examples:
# '3.0.0'
# '3.0.0-alpha9'
__version__ = '3.0.0-alpha0'
__version__ = '3.0.0-alpha1'
Loading

0 comments on commit d0864ca

Please sign in to comment.