How to implement Arista fan sensor status check

Hello,

take a look at the ~/share/check_mk/checks/zebra_model check as an example.

I think this is what you are looking for. So in your case:

check_info["your_check"] = {
<snip>
    "snmp_info": [
        (
            ".1.3.6.1.2.1",
            ["47.1.1.1.1.2", "99.1.1.1.5"],
        ) ,
</snip>
}

It does depend however on what else this OIDs hold. So does an snmpwalk on eg. .1.3.6.1.2.1.99.1.1.1.5 return anything beside 100601111, 100602111 etc.?

br