-
Hi All, I am new in the storage area and with netapp. The team just installed NaBox v4, I notice under one of the Cdot-Network dashboards it has FC information. However I am trying to add the status of the FC itself if it's in an Online/Offline status. I also want to create an alert when a FC go from Online to Offline. Can someone help me with how I can archive this? Below is the version that was deployed as part of the installation. NAbox v4.0.7 (08fc923) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
hi @dphan85 What version of ONTAP are you running? Do you see the The ONTAP returns an enum for that field and it will have one of In terms of creating an alert, try adding something like this to your - alert: FC port is not online
expr: fcp_labels{state!="online"} == 1
for: 5m
labels:
severity: "critical"
annotations:
summary: "FC port [{{ $labels.port }}] state is [{{ $labels.state }}]"
description: "FC port [{{ $labels.port }}] state is [{{ $labels.state }}]" |
Beta Was this translation helpful? Give feedback.
hi @dphan85
What version of ONTAP are you running?
Do you see the
FC ports with Fabric detail
panel when you expand theFibreChannel
row like shown below? You will need the REST collector enabled since this table is populated with metrics collected from that collector.The
FC ports with Fabric detail
has aState
row. Does that have the info you need?ONTAP returns an enum for that field and it will have one of
[startup, link_not_connected, online, link_disconnected, offlined_by_user, offlined_by_system, node_offline, unknown]
In terms of creating an alert, try adding something like this to your
rules
section of youralert_rules.yml
.