Skip to content

Commit

Permalink
Fix incorrect load average object names
Browse files Browse the repository at this point in the history
Fixes #2671
  • Loading branch information
lunkwill42 committed Sep 1, 2023
1 parent 2831b68 commit 7b60a35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/nav/mibs/juniper_mib.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
OPERATING_DESCR = "jnxOperatingDescr"
OPERATING_CPU = "jnxOperatingCPU"
LOAD_AVG_1MIN = "jnxOperating1MinLoadAvg"
LOAD_AVG_5MIN = "jnxOperating1MinLoadAvg"
LOAD_AVG_15MIN = "jnxOperating1MinLoadAvg"
LOAD_AVG_5MIN = "jnxOperating5MinLoadAvg"
LOAD_AVG_15MIN = "jnxOperating15MinLoadAvg"
OPERATING_MEM = "jnxOperatingMemory"
OPERATING_BUF = "jnxOperatingBuffer"

Expand Down

0 comments on commit 7b60a35

Please sign in to comment.