Hello all ,
I'm working with HTTP agent , getting JSON data from strorage array and i need create monitoring of status of drives in storage. Another HW in same JSON data works fine but with JSON data for disks is problem .
JSON tree :

Here is complet JSON data from master item :
When try to create items for drives and status , just created only one item with all drive location and state.

LLD Settings for drives :



Please how to fix this problem ?
With best regards
Michal
I'm working with HTTP agent , getting JSON data from strorage array and i need create monitoring of status of drives in storage. Another HW in same JSON data works fine but with JSON data for disks is problem .
JSON tree :
Here is complet JSON data from master item :
Code:
{
"system": {
"powerConsumption": 496
},
"ctls": [
{
"location": "CTL1",
"status": "Normal",
"temperature": 20,
"temperatureStatus": "Normal",
"charge": 100,
"type": "Controller Board for NVMe"
},
{
"location": "CTL2",
"status": "Normal",
"temperature": 20,
"temperatureStatus": "Normal",
"charge": 100,
"type": "Controller Board for NVMe"
}
],
"cacheMemories": [
{
"location": "CTL1 CMG0",
"status": "Normal",
"cacheSize": 192
},
{
"location": "CTL2 CMG0",
"status": "Normal",
"cacheSize": 192
}
],
"chbs": [
{
"location": "CHB-1A",
"status": "Normal",
"type": "32G Ready 4Port FC"
},
{
"location": "CHB-2A",
"status": "Normal",
"type": "32G Ready 4Port FC"
}
],
"cacheFlashMemories": [
{
"location": "CFM-1",
"status": "Normal",
"type": "BM70"
},
{
"location": "CFM-2",
"status": "Normal",
"type": "BM70"
}
],
"dkbs": [],
"lanbs": [],
"sfps": [
{
"portId": "1A",
"status": "Normal",
"type": "Short Wave",
"speed": "16 Gbps",
"portCondition": "Available (Connected)"
},
{
"portId": "3A",
"status": "Normal",
"type": "Short Wave",
"speed": "16 Gbps",
"portCondition": "Available (Not Connected)"
},
{
"portId": "5A",
"status": "Normal",
"type": "Short Wave",
"speed": "16 Gbps",
"portCondition": "Available (Not Connected)"
},
{
"portId": "7A",
"status": "Normal",
"type": "Short Wave",
"speed": "16 Gbps",
"portCondition": "Available (Connected)"
},
{
"portId": "2A",
"status": "Normal",
"type": "Short Wave",
"speed": "16 Gbps",
"portCondition": "Available (Connected)"
},
{
"portId": "4A",
"status": "Normal",
"type": "Short Wave",
"speed": "16 Gbps",
"portCondition": "Available (Not Connected)"
},
{
"portId": "6A",
"status": "Normal",
"type": "Short Wave",
"speed": "16 Gbps",
"portCondition": "Available (Not Connected)"
},
{
"portId": "8A",
"status": "Normal",
"type": "Short Wave",
"speed": "16 Gbps",
"portCondition": "Available (Connected)"
}
],
"bkmfs": [
{
"location": "BKM-1",
"type": "-",
"status": "Normal",
"batteries": [
{
"location": "BAT-1",
"status": "Normal",
"life": 51
}
]
},
{
"location": "BKM-2",
"type": "-",
"status": "Normal",
"batteries": [
{
"location": "BAT-2",
"status": "Normal",
"life": 51
}
]
}
],
"dkcpss": [
{
"location": "DKCPS1",
"status": "Normal"
},
{
"location": "DKCPS2",
"status": "Normal"
}
],
"driveBoxes": [
{
"location": "DB-00",
"type": "DBN",
"led": "OFF",
"drives": [
{
"location": "HDD00-00",
"modelCode": "SNM5A-R1R9NC",
"status": "Normal",
"usage": "Free",
"recomendReplacement": 0
},
{
"location": "HDD00-01",
"modelCode": "SNM5A-R1R9NC",
"status": "Normal",
"usage": "Free",
"recomendReplacement": 0
},
{
"location": "HDD00-02",
"modelCode": "SNM5A-R1R9NC",
"status": "Normal",
"usage": "Free",
"recomendReplacement": 0
},
{
"location": "HDD00-03",
"modelCode": "SNM5A-R1R9NC",
"status": "Normal",
"usage": "Free",
"recomendReplacement": 0
},
{
"location": "HDD00-04",
"modelCode": "SNM5A-R1R9NC",
"status": "Normal",
"usage": "Free",
"recomendReplacement": 0
},
{
"location": "HDD00-05",
"modelCode": "SNM5A-R1R9NC",
"status": "Normal",
"usage": "Free",
"recomendReplacement": 0
},
{
"location": "HDD00-06",
"modelCode": "SNM5A-R1R9NC",
"status": "Normal",
"usage": "Free",
"recomendReplacement": 0
},
{
"location": "HDD00-07",
"modelCode": "SNM5A-R1R9NC",
"status": "Normal",
"usage": "Free",
"recomendReplacement": 0
},
{
"location": "HDD00-23",
"modelCode": "SNM5A-R1R9NC",
"status": "Normal",
"usage": "Free",
"recomendReplacement": 0
}
],
"encs": [],
"dbps": []
}
],
"fans": [
{
"location": "FAN-10",
"status": "Normal"
},
{
"location": "FAN-11",
"status": "Normal"
},
{
"location": "FAN-12",
"status": "Normal"
},
{
"location": "FAN-13",
"status": "Normal"
},
{
"location": "FAN-14",
"status": "Normal"
},
{
"location": "FAN-15",
"status": "Normal"
},
{
"location": "FAN-20",
"status": "Normal"
},
{
"location": "FAN-21",
"status": "Normal"
},
{
"location": "FAN-22",
"status": "Normal"
},
{
"location": "FAN-23",
"status": "Normal"
},
{
"location": "FAN-24",
"status": "Normal"
},
{
"location": "FAN-25",
"status": "Normal"
}
],
"upsMode": "Standard Mode",
"pecbs": [],
"chbb": {},
"pcps": [],
"swpks": [],
"chbbfans": [],
"chbbpss": []
}
LLD Settings for drives :
Please how to fix this problem ?
With best regards
Michal