Fault F1651 - export-data-failed
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2022 05:00 AM
Hello,
we noticed a lot of faults with the cause: export-data-failed.
This seems to be related to failed uploads. The affected object(s) are:
expcont/expstatus-tsod-_XXXXXXXXXXXXXXX-apic
I didn't found details about the failed uploads under Export Policies - Tech Support or On-demand tech Support - Operational!
How can the faults be removed? The fault lifecycle is "raised". Upload seems to be triggered more than one year ago.
Kind Regards
Udo
- Labels:
-
Software Defined Networks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2022 12:08 AM - edited 08-01-2022 12:09 AM
Since You cant find "XXXXXXXXXXXXXXX-apic" policy via the GUI, can You please try to find it in the object store?
Search for:
Class - dbgexpTechSupOnD
Property - dn == uni/fabric/tsod-XXXXXXXXXXXXXXX-apic
If You cant find it, try without the property to see all of your "on demand" exports.
After You locate the actual expoert policy, You can try to delete the object via the API:
bash# curl https://apic_ip/api/node/mo/uni/fabric/tsod-XXXX-apic.json -k -X POST -d '{"dbgexpTechSupOnD":{"attributes":{"dn":"uni/fabric/tsod-XXX-apic", "status": "deleted"}}, "children":[]}}' --cookie "APIC-cookie=api-cookie;APIC-preState=;AuthCookie=" --header "Content-Type: application/json"
*You can get the api cookie from the api requests that you are sending on the browser to the apic, press F12 and search for the cookies on the network requests
You can do the delete request also with POSTMAN and Python with requests module.
