Advertisement
Guest User

MIB

a guest
Aug 23rd, 2018
1,280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 196.69 KB | None | 0 0
  1. NUTANIX-MIB DEFINITIONS ::= BEGIN
  2.  
  3. IMPORTS
  4. enterprises, MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter64,
  5. NOTIFICATION-TYPE, Unsigned32
  6. FROM SNMPv2-SMI
  7. DisplayString
  8. FROM SNMPv2-TC;
  9.  
  10. nutanix MODULE-IDENTITY
  11. LAST-UPDATED "201805220555Z"
  12. ORGANIZATION "Nutanix Inc."
  13. CONTACT-INFO "support@nutanix.com"
  14. DESCRIPTION "Nutanix Cluster Managment Information Base"
  15. REVISION "201805220555Z"
  16. DESCRIPTION "SNMP MIB for Nutanix Cluster software."
  17. ::= { enterprises 41263 }
  18.  
  19. --
  20. -- Cluster wide scalars starting from sub oid 501. This leaves room to add
  21. -- more table types in sequential oid order in future.
  22. --
  23.  
  24. clusterName OBJECT-TYPE
  25. SYNTAX DisplayString (SIZE (0..255))
  26. MAX-ACCESS read-only
  27. STATUS current
  28. DESCRIPTION "Name of the cluster."
  29. ::= { nutanix 501 }
  30.  
  31. clusterVersion OBJECT-TYPE
  32. SYNTAX DisplayString (SIZE (0..255))
  33. MAX-ACCESS read-only
  34. STATUS current
  35. DESCRIPTION "Current cluster version. This is the nutanix-core
  36. package version expected on all the Controller VMs."
  37. ::= { nutanix 502 }
  38.  
  39. clusterStatus OBJECT-TYPE
  40. SYNTAX DisplayString (SIZE (0..255))
  41. MAX-ACCESS read-only
  42. STATUS current
  43. DESCRIPTION "Current Status of the cluster. This will usually be
  44. one of started or stopped"
  45. ::= { nutanix 503 }
  46.  
  47. clusterTotalStorageCapacity OBJECT-TYPE
  48. SYNTAX Counter64
  49. MAX-ACCESS read-only
  50. STATUS current
  51. DESCRIPTION "Total storage capacity of the cluster in bytes."
  52. ::= { nutanix 504 }
  53.  
  54. clusterUsedStorageCapacity OBJECT-TYPE
  55. SYNTAX Counter64
  56. MAX-ACCESS read-only
  57. STATUS current
  58. DESCRIPTION "Number of bytes of storage used on the cluster."
  59. ::= { nutanix 505 }
  60.  
  61. clusterIops OBJECT-TYPE
  62. SYNTAX Counter64
  63. MAX-ACCESS read-only
  64. STATUS current
  65. DESCRIPTION "Cluster wide average IO operations per second."
  66. ::= { nutanix 506 }
  67.  
  68. clusterLatency OBJECT-TYPE
  69. SYNTAX Counter64
  70. MAX-ACCESS read-only
  71. STATUS current
  72. DESCRIPTION "Cluster wide average latency."
  73. ::= { nutanix 507 }
  74.  
  75. clusterIOBandwidth OBJECT-TYPE
  76. SYNTAX Counter64
  77. MAX-ACCESS read-only
  78. STATUS current
  79. DESCRIPTION "Cluster wide IO bandwidth in KBps."
  80. ::= { nutanix 508 }
  81.  
  82. --
  83. -- Nutanix SNMP table definitions.
  84. --
  85. -- Software version table
  86. --
  87.  
  88. softwareVersionTable OBJECT-TYPE
  89. SYNTAX SEQUENCE OF SvtEntry
  90. MAX-ACCESS not-accessible
  91. STATUS current
  92. DESCRIPTION "Table of software versions for packages on all
  93. Controller VMs."
  94. ::= { nutanix 1 }
  95.  
  96. svtEntry OBJECT-TYPE
  97. SYNTAX SvtEntry
  98. MAX-ACCESS not-accessible
  99. STATUS current
  100. DESCRIPTION "Software version table entry containing software
  101. versions on the Controller VMs."
  102. INDEX { svtIndex }
  103. ::= { softwareVersionTable 1 }
  104.  
  105. SvtEntry ::= SEQUENCE {
  106. svtIndex Integer32,
  107. svtControllerVMId DisplayString,
  108. svtNutanixBootstrap DisplayString,
  109. svtNutanixInfrastructure DisplayString,
  110. svtNutanixCore DisplayString,
  111. svtNutanixToolchain DisplayString,
  112. svtNutanixServiceability DisplayString,
  113. svtLinuxKernel DisplayString
  114. }
  115.  
  116. svtIndex OBJECT-TYPE
  117. SYNTAX Integer32 (1..2147483647)
  118. MAX-ACCESS read-only
  119. STATUS current
  120. DESCRIPTION "Index for software version table entries."
  121. ::= { svtEntry 1 }
  122.  
  123. svtControllerVMId OBJECT-TYPE
  124. SYNTAX DisplayString
  125. MAX-ACCESS read-only
  126. STATUS current
  127. DESCRIPTION "Nutanix Controller VM Id."
  128. ::= { svtEntry 2 }
  129.  
  130. svtNutanixBootstrap OBJECT-TYPE
  131. SYNTAX DisplayString (SIZE (0..255))
  132. MAX-ACCESS read-only
  133. STATUS current
  134. DESCRIPTION "The nutanix-bootstrap software package version."
  135. ::= { svtEntry 3 }
  136.  
  137. svtNutanixInfrastructure OBJECT-TYPE
  138. SYNTAX DisplayString (SIZE (0..255))
  139. MAX-ACCESS read-only
  140. STATUS current
  141. DESCRIPTION "The nutanix-infrastructure software package version."
  142. ::= { svtEntry 4 }
  143.  
  144. svtNutanixCore OBJECT-TYPE
  145. SYNTAX DisplayString (SIZE (0..255))
  146. MAX-ACCESS read-only
  147. STATUS current
  148. DESCRIPTION "The nutanix-core software package version."
  149. ::= { svtEntry 5 }
  150.  
  151. svtNutanixToolchain OBJECT-TYPE
  152. SYNTAX DisplayString (SIZE (0..255))
  153. MAX-ACCESS read-only
  154. STATUS current
  155. DESCRIPTION "The nutanix-toolchain software package version."
  156. ::= { svtEntry 6 }
  157.  
  158. svtNutanixServiceability OBJECT-TYPE
  159. SYNTAX DisplayString (SIZE (0..255))
  160. MAX-ACCESS read-only
  161. STATUS current
  162. DESCRIPTION "The nutanix-serviceability software package version."
  163. ::= { svtEntry 7 }
  164.  
  165. svtLinuxKernel OBJECT-TYPE
  166. SYNTAX DisplayString (SIZE (0..255))
  167. MAX-ACCESS read-only
  168. STATUS current
  169. DESCRIPTION "The linux kernel version currently installed."
  170. ::= { svtEntry 8 }
  171.  
  172. --
  173. -- Service status table
  174. --
  175.  
  176. serviceStatusTable OBJECT-TYPE
  177. SYNTAX SEQUENCE OF SstEntry
  178. MAX-ACCESS not-accessible
  179. STATUS obsolete
  180. DESCRIPTION "Table of status of each service with one row per
  181. Controller VM."
  182. ::= { nutanix 2 }
  183.  
  184. sstEntry OBJECT-TYPE
  185. SYNTAX SstEntry
  186. MAX-ACCESS not-accessible
  187. STATUS obsolete
  188. DESCRIPTION "Table entry containing status of services on one
  189. node."
  190. INDEX { sstIndex }
  191. ::= { serviceStatusTable 1 }
  192.  
  193. SstEntry ::= SEQUENCE {
  194. sstIndex Integer32,
  195. sstControllerVMId DisplayString,
  196. sstControllerVMStatus DisplayString,
  197. sstZeusStatus DisplayString,
  198. sstScavengerStatus DisplayString,
  199. sstMedusaStatus DisplayString,
  200. sstPithosStatus DisplayString,
  201. sstStargateStatus DisplayString,
  202. sstChronosStatus DisplayString,
  203. sstCuratorStatus DisplayString,
  204. sstPrismStatus DisplayString,
  205. sstAlertManagerStatus DisplayString,
  206. sstStatsAggregatorStatus DisplayString,
  207. sstSysStatCollectorStatus DisplayString
  208. }
  209.  
  210. sstIndex OBJECT-TYPE
  211. SYNTAX Integer32 (1..2147483647)
  212. MAX-ACCESS read-only
  213. STATUS obsolete
  214. DESCRIPTION "A unique index for each row in the service status
  215. table."
  216. ::= { sstEntry 1 }
  217.  
  218. sstControllerVMId OBJECT-TYPE
  219. SYNTAX DisplayString
  220. MAX-ACCESS read-only
  221. STATUS obsolete
  222. DESCRIPTION "Nutanix Controller VM Id."
  223. ::= { sstEntry 2 }
  224.  
  225. sstControllerVMStatus OBJECT-TYPE
  226. SYNTAX DisplayString (SIZE (0..255))
  227. MAX-ACCESS read-only
  228. STATUS obsolete
  229. DESCRIPTION "Status of the node."
  230. ::= { sstEntry 3 }
  231.  
  232. sstZeusStatus OBJECT-TYPE
  233. SYNTAX DisplayString (SIZE (0..255))
  234. MAX-ACCESS read-only
  235. STATUS obsolete
  236. DESCRIPTION "Status of Zeus on the node. A comma separated list
  237. of pids of the zeus service."
  238. ::= { sstEntry 4 }
  239.  
  240. sstScavengerStatus OBJECT-TYPE
  241. SYNTAX DisplayString (SIZE (0..255))
  242. MAX-ACCESS read-only
  243. STATUS obsolete
  244. DESCRIPTION "Status of Scavenger on the node. A comma separated
  245. list of pids of the scavenger service."
  246. ::= { sstEntry 5 }
  247.  
  248. sstMedusaStatus OBJECT-TYPE
  249. SYNTAX DisplayString (SIZE (0..255))
  250. MAX-ACCESS read-only
  251. STATUS obsolete
  252. DESCRIPTION "Status of Medusa on the node. A comma separated list
  253. of pids of the medusa service."
  254. ::= { sstEntry 6 }
  255.  
  256. sstPithosStatus OBJECT-TYPE
  257. SYNTAX DisplayString (SIZE (0..255))
  258. MAX-ACCESS read-only
  259. STATUS obsolete
  260. DESCRIPTION "Status of Pithos on the node. A comma separated list
  261. of pids of the pithos service."
  262. ::= { sstEntry 7 }
  263.  
  264. sstStargateStatus OBJECT-TYPE
  265. SYNTAX DisplayString (SIZE (0..255))
  266. MAX-ACCESS read-only
  267. STATUS obsolete
  268. DESCRIPTION "Status of Stargate on the node. A comma separated
  269. list of pids of the stargate service."
  270. ::= { sstEntry 8 }
  271.  
  272. sstChronosStatus OBJECT-TYPE
  273. SYNTAX DisplayString (SIZE (0..255))
  274. MAX-ACCESS read-only
  275. STATUS obsolete
  276. DESCRIPTION "Status of Chronos on the node. A comma separated list
  277. of pids of the chronos service."
  278. ::= { sstEntry 9 }
  279.  
  280. sstCuratorStatus OBJECT-TYPE
  281. SYNTAX DisplayString (SIZE (0..255))
  282. MAX-ACCESS read-only
  283. STATUS obsolete
  284. DESCRIPTION "Status of Curator on the node. A comma separated list
  285. of pids of the curator service."
  286. ::= { sstEntry 10 }
  287.  
  288. sstPrismStatus OBJECT-TYPE
  289. SYNTAX DisplayString (SIZE (0..255))
  290. MAX-ACCESS read-only
  291. STATUS obsolete
  292. DESCRIPTION "Status of Prism on the node. A comma separated list
  293. of pids of the prism service."
  294. ::= { sstEntry 11 }
  295.  
  296. sstAlertManagerStatus OBJECT-TYPE
  297. SYNTAX DisplayString (SIZE (0..255))
  298. MAX-ACCESS read-only
  299. STATUS obsolete
  300. DESCRIPTION "Status of Alert Manager on the node. A comma
  301. separated list of pids of the alert manager service."
  302. ::= { sstEntry 12 }
  303.  
  304. sstStatsAggregatorStatus OBJECT-TYPE
  305. SYNTAX DisplayString (SIZE (0..255))
  306. MAX-ACCESS read-only
  307. STATUS obsolete
  308. DESCRIPTION "Status of Stats Aggregator on the node. A comma
  309. separated list of pids of the stats aggregator
  310. service."
  311. ::= { sstEntry 13 }
  312.  
  313. sstSysStatCollectorStatus OBJECT-TYPE
  314. SYNTAX DisplayString (SIZE (0..255))
  315. MAX-ACCESS read-only
  316. STATUS obsolete
  317. DESCRIPTION "Status of SysStatCollector on the node. A comma
  318. separated list of pids of the sys stat collector
  319. service."
  320. ::= { sstEntry 14 }
  321.  
  322. --
  323. -- Disk Status Table
  324. --
  325.  
  326. diskStatusTable OBJECT-TYPE
  327. SYNTAX SEQUENCE OF DstEntry
  328. MAX-ACCESS not-accessible
  329. STATUS current
  330. DESCRIPTION "Table provides disk status on all CVMs."
  331. ::= { nutanix 3 }
  332.  
  333. dstEntry OBJECT-TYPE
  334. SYNTAX DstEntry
  335. MAX-ACCESS not-accessible
  336. STATUS current
  337. DESCRIPTION "Table entry containing status of a disk on a CVM."
  338. INDEX { dstIndex}
  339. ::= { diskStatusTable 1 }
  340.  
  341. DstEntry ::= SEQUENCE {
  342. dstIndex Integer32,
  343. dstDiskId DisplayString,
  344. dstControllerVMId DisplayString,
  345. dstSerial DisplayString,
  346. dstNumRawBytes Counter64,
  347. dstNumTotalBytes Counter64,
  348. dstNumFreeBytes Counter64,
  349. dstNumTotalInodes Counter64,
  350. dstNumFreeInodes Counter64,
  351. dstAverageLatency Counter64,
  352. dstIOBandwidth Counter64,
  353. dstNumberIops Counter64,
  354. dstState INTEGER
  355. }
  356.  
  357. dstIndex OBJECT-TYPE
  358. SYNTAX Integer32 (1..2147483647)
  359. MAX-ACCESS read-only
  360. STATUS current
  361. DESCRIPTION "A unique index for each row in the disk status
  362. table."
  363. ::= { dstEntry 1 }
  364.  
  365. dstDiskId OBJECT-TYPE
  366. SYNTAX DisplayString
  367. MAX-ACCESS read-only
  368. STATUS current
  369. DESCRIPTION "A unique disk id for each disk."
  370. ::= { dstEntry 2 }
  371.  
  372. dstControllerVMId OBJECT-TYPE
  373. SYNTAX DisplayString
  374. MAX-ACCESS read-only
  375. STATUS current
  376. DESCRIPTION "Nutanix Controller VM unique identifier."
  377. ::= { dstEntry 3 }
  378.  
  379. dstSerial OBJECT-TYPE
  380. SYNTAX DisplayString (SIZE (0..255))
  381. MAX-ACCESS read-only
  382. STATUS current
  383. DESCRIPTION "Disk Serial Number"
  384. ::= { dstEntry 4 }
  385.  
  386. dstNumRawBytes OBJECT-TYPE
  387. SYNTAX Counter64
  388. MAX-ACCESS read-only
  389. STATUS current
  390. DESCRIPTION "Maximum number of raw bytes available on the device."
  391. ::= { dstEntry 5 }
  392.  
  393. dstNumTotalBytes OBJECT-TYPE
  394. SYNTAX Counter64
  395. MAX-ACCESS read-only
  396. STATUS current
  397. DESCRIPTION "Total number of bytes usable on the device through
  398. its file system."
  399. ::= { dstEntry 6 }
  400.  
  401. dstNumFreeBytes OBJECT-TYPE
  402. SYNTAX Counter64
  403. MAX-ACCESS read-only
  404. STATUS current
  405. DESCRIPTION "Total number of bytes availabe to the non-root users
  406. on the device through its file system."
  407. ::= { dstEntry 7 }
  408.  
  409. dstNumTotalInodes OBJECT-TYPE
  410. SYNTAX Counter64
  411. MAX-ACCESS read-only
  412. STATUS obsolete
  413. DESCRIPTION "Maximum number of inodes usable on the device
  414. through its file system."
  415. ::= { dstEntry 8 }
  416.  
  417. dstNumFreeInodes OBJECT-TYPE
  418. SYNTAX Counter64
  419. MAX-ACCESS read-only
  420. STATUS obsolete
  421. DESCRIPTION "Total number of inodes availabe to the non-root
  422. users on the device through its file system."
  423. ::= { dstEntry 9 }
  424.  
  425. dstAverageLatency OBJECT-TYPE
  426. SYNTAX Counter64
  427. MAX-ACCESS read-only
  428. STATUS current
  429. DESCRIPTION "Average IO latency per micro seconds for the disk."
  430. ::= { dstEntry 10 }
  431.  
  432. dstIOBandwidth OBJECT-TYPE
  433. SYNTAX Counter64
  434. MAX-ACCESS read-only
  435. STATUS current
  436. DESCRIPTION "IO bandwidth in KBps for the disk."
  437. ::= { dstEntry 11 }
  438.  
  439. dstNumberIops OBJECT-TYPE
  440. SYNTAX Counter64
  441. MAX-ACCESS read-only
  442. STATUS current
  443. DESCRIPTION "Number IO per seconds for the disk."
  444. ::= { dstEntry 12 }
  445.  
  446. dstState OBJECT-TYPE
  447. SYNTAX INTEGER {
  448. online(1),
  449. offline(2)
  450. }
  451. MAX-ACCESS read-only
  452. STATUS current
  453. DESCRIPTION "State of the disk."
  454. ::= { dstEntry 13 }
  455. --
  456. -- Controller VM resource table.
  457. --
  458.  
  459. controllerVMResourceTable OBJECT-TYPE
  460. SYNTAX SEQUENCE OF CrtEntry
  461. MAX-ACCESS not-accessible
  462. STATUS current
  463. DESCRIPTION "Table of resources per Controller VM."
  464. ::= { nutanix 4 }
  465.  
  466. crtEntry OBJECT-TYPE
  467. SYNTAX CrtEntry
  468. MAX-ACCESS not-accessible
  469. STATUS current
  470. DESCRIPTION "Table entry containing resource information of
  471. one Controller VM."
  472. INDEX { crtIndex }
  473. ::= { controllerVMResourceTable 1 }
  474.  
  475. CrtEntry ::= SEQUENCE {
  476. crtIndex Integer32,
  477. crtControllerVMId DisplayString,
  478. crtMemory Counter64,
  479. crtNumCpus Integer32,
  480. crtName DisplayString
  481. }
  482.  
  483. crtIndex OBJECT-TYPE
  484. SYNTAX Integer32 (1..2147483647)
  485. MAX-ACCESS read-only
  486. STATUS current
  487. DESCRIPTION "A unique index for each row in the CVM memory
  488. table."
  489. ::= { crtEntry 1 }
  490.  
  491. crtControllerVMId OBJECT-TYPE
  492. SYNTAX DisplayString
  493. MAX-ACCESS read-only
  494. STATUS current
  495. DESCRIPTION "Nutanix Controller VM Id."
  496. ::= { crtEntry 2 }
  497.  
  498. crtMemory OBJECT-TYPE
  499. SYNTAX Counter64
  500. MAX-ACCESS read-only
  501. STATUS current
  502. DESCRIPTION "Total memory available on a CVM."
  503. ::= { crtEntry 3 }
  504.  
  505. crtNumCpus OBJECT-TYPE
  506. SYNTAX Integer32
  507. MAX-ACCESS read-only
  508. STATUS current
  509. DESCRIPTION "Total number of CPUs allocated to a CVM."
  510. ::= { crtEntry 4 }
  511.  
  512. crtName OBJECT-TYPE
  513. SYNTAX DisplayString (SIZE (0..255))
  514. MAX-ACCESS read-only
  515. STATUS current
  516. DESCRIPTION "Name of the Nutanix COntroller VM."
  517. ::= { crtEntry 5 }
  518.  
  519. --
  520. -- Storage pool information table.
  521. --
  522.  
  523. storagePoolInformationTable OBJECT-TYPE
  524. SYNTAX SEQUENCE OF SpitEntry
  525. MAX-ACCESS not-accessible
  526. STATUS current
  527. DESCRIPTION "Storage pool information in a table form."
  528. ::= { nutanix 7 }
  529.  
  530. spitEntry OBJECT-TYPE
  531. SYNTAX SpitEntry
  532. MAX-ACCESS not-accessible
  533. STATUS current
  534. DESCRIPTION "Storage pool information table entry."
  535. INDEX { spitIndex }
  536. ::= { storagePoolInformationTable 1 }
  537.  
  538. SpitEntry ::= SEQUENCE {
  539. spitIndex Integer32,
  540. spitStoragePoolId DisplayString,
  541. spitStoragePoolName DisplayString,
  542. spitTotalCapacity Counter64,
  543. spitUsedCapacity Counter64,
  544. spitIOPerSecond Integer32,
  545. spitAvgLatencyUsecs Counter64,
  546. spitIOBandwidth Counter64
  547. }
  548.  
  549. spitIndex OBJECT-TYPE
  550. SYNTAX Integer32 (1..2147483647)
  551. MAX-ACCESS read-only
  552. STATUS current
  553. DESCRIPTION "Unique index for storage pool information table
  554. entries."
  555. ::= { spitEntry 1 }
  556.  
  557. spitStoragePoolId OBJECT-TYPE
  558. SYNTAX DisplayString
  559. MAX-ACCESS read-only
  560. STATUS current
  561. DESCRIPTION "Storage pool id."
  562. ::= { spitEntry 2 }
  563.  
  564. spitStoragePoolName OBJECT-TYPE
  565. SYNTAX DisplayString (SIZE (0..255))
  566. MAX-ACCESS read-only
  567. STATUS current
  568. DESCRIPTION "Name of the storage pool."
  569. ::= { spitEntry 3 }
  570.  
  571. spitTotalCapacity OBJECT-TYPE
  572. SYNTAX Counter64
  573. MAX-ACCESS read-only
  574. STATUS current
  575. DESCRIPTION "Total capacity of the storage pool in bytes."
  576. ::= { spitEntry 4 }
  577.  
  578. spitUsedCapacity OBJECT-TYPE
  579. SYNTAX Counter64
  580. MAX-ACCESS read-only
  581. STATUS current
  582. DESCRIPTION "Number of bytes used in the storage pool."
  583. ::= { spitEntry 5 }
  584.  
  585. spitIOPerSecond OBJECT-TYPE
  586. SYNTAX Integer32
  587. MAX-ACCESS read-only
  588. STATUS current
  589. DESCRIPTION "Number of IO operations served per second from this
  590. storage pool."
  591. ::= { spitEntry 6 }
  592.  
  593. spitAvgLatencyUsecs OBJECT-TYPE
  594. SYNTAX Counter64
  595. MAX-ACCESS read-only
  596. STATUS current
  597. DESCRIPTION "Average IO latency for this storage pool in
  598. microseconds."
  599. ::= { spitEntry 7 }
  600.  
  601. spitIOBandwidth OBJECT-TYPE
  602. SYNTAX Counter64
  603. MAX-ACCESS read-only
  604. STATUS current
  605. DESCRIPTION "IO bandwidth in KBps for the storage pool."
  606. ::= { spitEntry 8 }
  607.  
  608. --
  609. -- Container information table
  610. --
  611.  
  612. containerInformationTable OBJECT-TYPE
  613. SYNTAX SEQUENCE OF CitEntry
  614. MAX-ACCESS not-accessible
  615. STATUS current
  616. DESCRIPTION "Storage container information in a table form."
  617. ::= { nutanix 8 }
  618.  
  619. citEntry OBJECT-TYPE
  620. SYNTAX CitEntry
  621. MAX-ACCESS not-accessible
  622. STATUS current
  623. DESCRIPTION "Storage container information table entry."
  624. INDEX { citIndex }
  625. ::= { containerInformationTable 1 }
  626.  
  627. CitEntry ::= SEQUENCE {
  628. citIndex Integer32,
  629. citContainerId DisplayString,
  630. citContainerName DisplayString,
  631. citTotalCapacity Counter64,
  632. citUsedCapacity Counter64,
  633. citIOPerSecond Integer32,
  634. citAvgLatencyUsecs Counter64,
  635. citIOBandwidth Counter64
  636. }
  637.  
  638. citIndex OBJECT-TYPE
  639. SYNTAX Integer32 (1..2147483647)
  640. MAX-ACCESS read-only
  641. STATUS current
  642. DESCRIPTION "Unique index for storage container information table
  643. entries."
  644. ::= { citEntry 1 }
  645.  
  646. citContainerId OBJECT-TYPE
  647. SYNTAX DisplayString
  648. MAX-ACCESS read-only
  649. STATUS current
  650. DESCRIPTION "Storage container id."
  651. ::= { citEntry 2 }
  652.  
  653. citContainerName OBJECT-TYPE
  654. SYNTAX DisplayString (SIZE (0..255))
  655. MAX-ACCESS read-only
  656. STATUS current
  657. DESCRIPTION "Name of the storage container."
  658. ::= { citEntry 3 }
  659.  
  660. citTotalCapacity OBJECT-TYPE
  661. SYNTAX Counter64
  662. MAX-ACCESS read-only
  663. STATUS current
  664. DESCRIPTION "Total capacity of the storage container in bytes."
  665. ::= { citEntry 4 }
  666.  
  667. citUsedCapacity OBJECT-TYPE
  668. SYNTAX Counter64
  669. MAX-ACCESS read-only
  670. STATUS current
  671. DESCRIPTION "Number of bytes used in the storage container."
  672. ::= { citEntry 5 }
  673.  
  674. citIOPerSecond OBJECT-TYPE
  675. SYNTAX Integer32
  676. MAX-ACCESS read-only
  677. STATUS current
  678. DESCRIPTION "Number of IO operations served per second from this
  679. storage container."
  680. ::= { citEntry 6 }
  681.  
  682. citAvgLatencyUsecs OBJECT-TYPE
  683. SYNTAX Counter64
  684. MAX-ACCESS read-only
  685. STATUS current
  686. DESCRIPTION "Average IO latency for this storage container in
  687. microseconds."
  688. ::= { citEntry 7 }
  689.  
  690. citIOBandwidth OBJECT-TYPE
  691. SYNTAX Counter64
  692. MAX-ACCESS read-only
  693. STATUS current
  694. DESCRIPTION "IO bandwidth in KBps for the storage container."
  695. ::= { citEntry 8 }
  696.  
  697. --
  698. -- Hypervisor information table
  699. --
  700.  
  701. hypervisorInformationTable OBJECT-TYPE
  702. SYNTAX SEQUENCE OF HypervisorEntry
  703. MAX-ACCESS not-accessible
  704. STATUS current
  705. DESCRIPTION "Hypervisor information in a table form."
  706. ::= { nutanix 9 }
  707.  
  708. hypervisorEntry OBJECT-TYPE
  709. SYNTAX HypervisorEntry
  710. MAX-ACCESS not-accessible
  711. STATUS current
  712. DESCRIPTION "Vm information table entry."
  713. INDEX { hypervisorIndex }
  714. ::= { hypervisorInformationTable 1 }
  715.  
  716. HypervisorEntry ::= SEQUENCE {
  717. hypervisorIndex Integer32,
  718. hypervisorId DisplayString,
  719. hypervisorName DisplayString,
  720. hypervisorVmCount Unsigned32,
  721. hypervisorCpuCount Unsigned32,
  722. hypervisorCpuUsagePercent Unsigned32,
  723. hypervisorMemory Counter64,
  724. hypervisorMemoryUsagePercent Unsigned32,
  725. hypervisorReadIOPerSecond Unsigned32,
  726. hypervisorWriteIOPerSecond Unsigned32,
  727. hypervisorAverageLatency Counter64,
  728. hypervisorIOBandwidth Counter64,
  729. hypervisorRxBytes Counter64,
  730. hypervisorTxBytes Counter64,
  731. hypervisorRxDropCount Counter64,
  732. hypervisorTxDropCount Counter64
  733. }
  734.  
  735. hypervisorIndex OBJECT-TYPE
  736. SYNTAX Integer32 (1..2147483647)
  737. MAX-ACCESS read-only
  738. STATUS current
  739. DESCRIPTION "Unique index for hypervisor information table
  740. entries."
  741. ::= { hypervisorEntry 1 }
  742.  
  743. hypervisorId OBJECT-TYPE
  744. SYNTAX DisplayString
  745. MAX-ACCESS read-only
  746. STATUS current
  747. DESCRIPTION "Hypervisor Id for the hypervisor."
  748. ::= { hypervisorEntry 2 }
  749.  
  750. hypervisorName OBJECT-TYPE
  751. SYNTAX DisplayString (SIZE (0..255))
  752. MAX-ACCESS read-only
  753. STATUS current
  754. DESCRIPTION "Name of the Hypervisor."
  755. ::= { hypervisorEntry 3 }
  756.  
  757. hypervisorVmCount OBJECT-TYPE
  758. SYNTAX Unsigned32
  759. MAX-ACCESS read-only
  760. STATUS current
  761. DESCRIPTION "Total number of VM configured on the hypervisor."
  762. ::= { hypervisorEntry 4 }
  763.  
  764. hypervisorCpuCount OBJECT-TYPE
  765. SYNTAX Unsigned32
  766. MAX-ACCESS read-only
  767. STATUS current
  768. DESCRIPTION "Total number of CPU threads present in the
  769. hypervisor."
  770. ::= { hypervisorEntry 5 }
  771.  
  772. hypervisorCpuUsagePercent OBJECT-TYPE
  773. SYNTAX Unsigned32
  774. MAX-ACCESS read-only
  775. STATUS current
  776. DESCRIPTION "CPU usage percentage of the hypervisor."
  777. ::= { hypervisorEntry 6 }
  778.  
  779. hypervisorMemory OBJECT-TYPE
  780. SYNTAX Counter64
  781. MAX-ACCESS read-only
  782. STATUS current
  783. DESCRIPTION "Total memory available on the hypervisor in bytes."
  784. ::= { hypervisorEntry 7 }
  785.  
  786. hypervisorMemoryUsagePercent OBJECT-TYPE
  787. SYNTAX Unsigned32
  788. MAX-ACCESS read-only
  789. STATUS current
  790. DESCRIPTION "Memory usage percentage of the hypervisor."
  791. ::= { hypervisorEntry 8 }
  792.  
  793. hypervisorReadIOPerSecond OBJECT-TYPE
  794. SYNTAX Unsigned32
  795. MAX-ACCESS read-only
  796. STATUS current
  797. DESCRIPTION "Number of read IO operations served per second on
  798. this hypervisor."
  799. ::= { hypervisorEntry 9 }
  800.  
  801. hypervisorWriteIOPerSecond OBJECT-TYPE
  802. SYNTAX Unsigned32
  803. MAX-ACCESS read-only
  804. STATUS current
  805. DESCRIPTION "Number of write IO operations served per second on
  806. this hypervisor."
  807. ::= { hypervisorEntry 10 }
  808.  
  809. hypervisorAverageLatency OBJECT-TYPE
  810. SYNTAX Counter64
  811. MAX-ACCESS read-only
  812. STATUS current
  813. DESCRIPTION "Average IO latency per micro seconds of the
  814. hypervisor."
  815. ::= { hypervisorEntry 11 }
  816.  
  817. hypervisorIOBandwidth OBJECT-TYPE
  818. SYNTAX Counter64
  819. MAX-ACCESS read-only
  820. STATUS current
  821. DESCRIPTION "IO bandwidth in KBps of the hypervisor."
  822. ::= { hypervisorEntry 12 }
  823.  
  824. hypervisorRxBytes OBJECT-TYPE
  825. SYNTAX Counter64
  826. MAX-ACCESS read-only
  827. STATUS current
  828. DESCRIPTION "Total number of bytes recieved on the hypervisor."
  829. ::= { hypervisorEntry 13 }
  830.  
  831. hypervisorTxBytes OBJECT-TYPE
  832. SYNTAX Counter64
  833. MAX-ACCESS read-only
  834. STATUS current
  835. DESCRIPTION "Total number of bytes transmitted from the
  836. hypervisor."
  837. ::= { hypervisorEntry 14 }
  838.  
  839. hypervisorRxDropCount OBJECT-TYPE
  840. SYNTAX Counter64
  841. MAX-ACCESS read-only
  842. STATUS current
  843. DESCRIPTION "Total number of packets dropped while receiving
  844. on the hypervisor."
  845. ::= { hypervisorEntry 15 }
  846.  
  847. hypervisorTxDropCount OBJECT-TYPE
  848. SYNTAX Counter64
  849. MAX-ACCESS read-only
  850. STATUS current
  851. DESCRIPTION "Total number of packets dropped while transmiting
  852. from hypervisor."
  853. ::= { hypervisorEntry 16 }
  854. --
  855. -- VM information table
  856. --
  857.  
  858. vmInformationTable OBJECT-TYPE
  859. SYNTAX SEQUENCE OF VmEntry
  860. MAX-ACCESS not-accessible
  861. STATUS current
  862. DESCRIPTION "Vm information in a table form."
  863. ::= { nutanix 10 }
  864.  
  865. vmEntry OBJECT-TYPE
  866. SYNTAX VmEntry
  867. MAX-ACCESS not-accessible
  868. STATUS current
  869. DESCRIPTION "Vm information table entry."
  870. INDEX { vmIndex }
  871. ::= { vmInformationTable 1 }
  872.  
  873. VmEntry ::= SEQUENCE {
  874. vmIndex Integer32,
  875. vmId DisplayString,
  876. vmName DisplayString,
  877. vmHypervisorId DisplayString,
  878. vmPowerState DisplayString,
  879. vmCpuCount Unsigned32,
  880. vmCpuUsagePercent Unsigned32,
  881. vmMemory Counter64,
  882. vmMemoryUsagePercent Unsigned32,
  883. vmReadIOPerSecond Unsigned32,
  884. vmWriteIOPerSecond Unsigned32,
  885. vmAverageLatency Counter64,
  886. vmIOBandwidth Counter64,
  887. vmRxBytes Counter64,
  888. vmTxBytes Counter64,
  889. vmRxDropCount Counter64,
  890. vmTxDropCount Counter64
  891. }
  892.  
  893. vmIndex OBJECT-TYPE
  894. SYNTAX Integer32 (1..2147483647)
  895. MAX-ACCESS read-only
  896. STATUS current
  897. DESCRIPTION "Unique index for VM information table
  898. entries."
  899. ::= { vmEntry 1 }
  900.  
  901. vmId OBJECT-TYPE
  902. SYNTAX DisplayString (SIZE (0..255))
  903. MAX-ACCESS read-only
  904. STATUS current
  905. DESCRIPTION "Nutanix unique identifier for VM."
  906. ::= { vmEntry 2 }
  907.  
  908. vmName OBJECT-TYPE
  909. SYNTAX DisplayString (SIZE (0..255))
  910. MAX-ACCESS read-only
  911. STATUS current
  912. DESCRIPTION "Name of the VM."
  913. ::= { vmEntry 3 }
  914.  
  915. vmHypervisorId OBJECT-TYPE
  916. SYNTAX DisplayString
  917. MAX-ACCESS read-only
  918. STATUS current
  919. DESCRIPTION "Hypervisor id on which the VM resides."
  920. ::= { vmEntry 4 }
  921.  
  922. vmPowerState OBJECT-TYPE
  923. SYNTAX DisplayString
  924. MAX-ACCESS read-only
  925. STATUS current
  926. DESCRIPTION "Power state of the VM."
  927. ::= { vmEntry 5 }
  928.  
  929. vmCpuCount OBJECT-TYPE
  930. SYNTAX Unsigned32
  931. MAX-ACCESS read-only
  932. STATUS current
  933. DESCRIPTION "Total number of CPUs allocated to the VM."
  934. ::= { vmEntry 6 }
  935.  
  936. vmCpuUsagePercent OBJECT-TYPE
  937. SYNTAX Unsigned32
  938. MAX-ACCESS read-only
  939. STATUS current
  940. DESCRIPTION "CPU usage percentage of the VM."
  941. ::= { vmEntry 7 }
  942.  
  943. vmMemory OBJECT-TYPE
  944. SYNTAX Counter64
  945. MAX-ACCESS read-only
  946. STATUS current
  947. DESCRIPTION "Total memory available on the VM in bytes."
  948. ::= { vmEntry 8 }
  949.  
  950. vmMemoryUsagePercent OBJECT-TYPE
  951. SYNTAX Unsigned32
  952. MAX-ACCESS read-only
  953. STATUS current
  954. DESCRIPTION "Memory usage percentage of the VM."
  955. ::= { vmEntry 9 }
  956.  
  957. vmReadIOPerSecond OBJECT-TYPE
  958. SYNTAX Unsigned32
  959. MAX-ACCESS read-only
  960. STATUS current
  961. DESCRIPTION "Number of read IO operations served per second on
  962. this VM."
  963. ::= { vmEntry 10 }
  964.  
  965. vmWriteIOPerSecond OBJECT-TYPE
  966. SYNTAX Unsigned32
  967. MAX-ACCESS read-only
  968. STATUS current
  969. DESCRIPTION "Number of write IO operations served per second on
  970. this VM."
  971. ::= { vmEntry 11 }
  972.  
  973. vmAverageLatency OBJECT-TYPE
  974. SYNTAX Counter64
  975. MAX-ACCESS read-only
  976. STATUS current
  977. DESCRIPTION "Average IO latency per micro seconds of the VM."
  978. ::= { vmEntry 12 }
  979.  
  980. vmIOBandwidth OBJECT-TYPE
  981. SYNTAX Counter64
  982. MAX-ACCESS read-only
  983. STATUS current
  984. DESCRIPTION "IO bandwidth in KBps of the VM."
  985. ::= { vmEntry 13 }
  986.  
  987. vmRxBytes OBJECT-TYPE
  988. SYNTAX Counter64
  989. MAX-ACCESS read-only
  990. STATUS current
  991. DESCRIPTION "Total number of bytes recieved on the VM."
  992. ::= { vmEntry 14 }
  993.  
  994. vmTxBytes OBJECT-TYPE
  995. SYNTAX Counter64
  996. MAX-ACCESS read-only
  997. STATUS current
  998. DESCRIPTION "Total number of bytes transmitted from the VM."
  999. ::= { vmEntry 15 }
  1000.  
  1001. vmRxDropCount OBJECT-TYPE
  1002. SYNTAX Counter64
  1003. MAX-ACCESS read-only
  1004. STATUS current
  1005. DESCRIPTION "Total number of packets dropped while receiving
  1006. on the VM."
  1007. ::= { vmEntry 16 }
  1008.  
  1009. vmTxDropCount OBJECT-TYPE
  1010. SYNTAX Counter64
  1011. MAX-ACCESS read-only
  1012. STATUS current
  1013. DESCRIPTION "Total number of packets dropped while transmiting
  1014. from VM."
  1015. ::= { vmEntry 17 }
  1016.  
  1017. --
  1018. -- Controller status table
  1019. --
  1020.  
  1021. controllerStatusTable OBJECT-TYPE
  1022. SYNTAX SEQUENCE OF CstEntry
  1023. MAX-ACCESS not-accessible
  1024. STATUS current
  1025. DESCRIPTION "Table of status of essential services with one row
  1026. per Controller VM."
  1027. ::= { nutanix 11 }
  1028.  
  1029. cstEntry OBJECT-TYPE
  1030. SYNTAX CstEntry
  1031. MAX-ACCESS not-accessible
  1032. STATUS current
  1033. DESCRIPTION "Table entry containing status of essential services
  1034. on one node."
  1035. INDEX { cstIndex }
  1036. ::= { controllerStatusTable 1 }
  1037.  
  1038. CstEntry ::= SEQUENCE {
  1039. cstIndex Integer32,
  1040. cstControllerVMId DisplayString,
  1041. cstControllerVMStatus DisplayString,
  1042. cstDataServiceStatus DisplayString,
  1043. cstMetadataServiceStatus DisplayString
  1044. }
  1045.  
  1046. cstIndex OBJECT-TYPE
  1047. SYNTAX Integer32 (1..2147483647)
  1048. MAX-ACCESS read-only
  1049. STATUS current
  1050. DESCRIPTION "A unique index for each row in the controller status
  1051. table."
  1052. ::= { cstEntry 1 }
  1053.  
  1054. cstControllerVMId OBJECT-TYPE
  1055. SYNTAX DisplayString
  1056. MAX-ACCESS read-only
  1057. STATUS current
  1058. DESCRIPTION "Nutanix Controller VM Id."
  1059. ::= { cstEntry 2 }
  1060.  
  1061. cstControllerVMStatus OBJECT-TYPE
  1062. SYNTAX DisplayString (SIZE (0..255))
  1063. MAX-ACCESS read-only
  1064. STATUS current
  1065. DESCRIPTION "Status of the node."
  1066. ::= { cstEntry 3 }
  1067.  
  1068. cstDataServiceStatus OBJECT-TYPE
  1069. SYNTAX DisplayString (SIZE (0..255))
  1070. MAX-ACCESS read-only
  1071. STATUS current
  1072. DESCRIPTION "Status of core data services on the Controller VM."
  1073. ::= { cstEntry 4 }
  1074.  
  1075. cstMetadataServiceStatus OBJECT-TYPE
  1076. SYNTAX DisplayString (SIZE (0..255))
  1077. MAX-ACCESS read-only
  1078. STATUS current
  1079. DESCRIPTION "Status of metadata services on the Controller VM."
  1080. ::= { cstEntry 5 }
  1081.  
  1082.  
  1083. --
  1084. -- Abstract alert object.
  1085. -- All alert data to be sent in a trap is grouped within this object. This
  1086. -- allows alert objects to appear grouped together in certain graphical MIB
  1087. -- viewers.
  1088. --
  1089. ntxAlert OBJECT IDENTIFIER ::= {nutanix 999}
  1090.  
  1091. ntxAlertCreationTime OBJECT-TYPE
  1092. SYNTAX Counter64
  1093. MAX-ACCESS read-only
  1094. STATUS current
  1095. DESCRIPTION "Alert creation Timestamp in seconds from epoch."
  1096. ::= {ntxAlert 1}
  1097.  
  1098. ntxAlertDisplayMsg OBJECT-TYPE
  1099. SYNTAX DisplayString (SIZE (0..1024))
  1100. MAX-ACCESS read-only
  1101. STATUS current
  1102. DESCRIPTION "Display message for the sent alert."
  1103. ::= {ntxAlert 2}
  1104.  
  1105. ntxAlertTitle OBJECT-TYPE
  1106. SYNTAX DisplayString
  1107. MAX-ACCESS read-only
  1108. STATUS current
  1109. DESCRIPTION "Alert Title for the sent alert."
  1110. ::= {ntxAlert 3}
  1111.  
  1112. ntxAlertSeverity OBJECT-TYPE
  1113. SYNTAX INTEGER {
  1114. informational(1),
  1115. warning(2),
  1116. critical(3),
  1117. audit(4)
  1118. }
  1119. MAX-ACCESS read-only
  1120. STATUS current
  1121. DESCRIPTION "Alert Severity for the sent alert."
  1122. ::= {ntxAlert 4}
  1123.  
  1124. ntxAlertUuid OBJECT-TYPE
  1125. SYNTAX DisplayString
  1126. MAX-ACCESS accessible-for-notify
  1127. STATUS current
  1128. DESCRIPTION "This object incidates the Alert Uuid"
  1129. ::= {ntxAlert 5}
  1130.  
  1131. ntxAlertResolvedTime OBJECT-TYPE
  1132. SYNTAX Counter64
  1133. MAX-ACCESS accessible-for-notify
  1134. STATUS current
  1135. DESCRIPTION "This object indicates the time when an alert was resolved. It is the
  1136. timestamp in seconds from epoch."
  1137. ::= {ntxAlert 6}
  1138.  
  1139. ntxTrapName OBJECT-TYPE
  1140. SYNTAX DisplayString
  1141. MAX-ACCESS accessible-for-notify
  1142. STATUS current
  1143. DESCRIPTION "This object incidates the name of MIB object which is a trap and has been
  1144. resolved"
  1145. ::= {nutanix 992}
  1146.  
  1147. ntxTrap NOTIFICATION-TYPE
  1148. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg }
  1149. STATUS current
  1150. DESCRIPTION "Nutanix enterprise trap"
  1151. ::= { nutanix 991 }
  1152.  
  1153. ntxTrapResolved NOTIFICATION-TYPE
  1154. OBJECTS { ntxTrapName, ntxAlertUuid, ntxAlertResolvedTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1155. STATUS current
  1156. DESCRIPTION "A ntxTrapResolved trap signifies that the SNMP entity, acting in an agent
  1157. role, has detected that a trap, which is indicated by ntxTrapName, and is
  1158. related to an alert identified by ntxAlertUuid,has been resovled."
  1159. ::= { nutanix 993 }
  1160.  
  1161. ntxTrapClusterRunningOutOfStorageCapacitylowRunway NOTIFICATION-TYPE
  1162. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1163. STATUS current
  1164. DESCRIPTION "Predict high storage space usage on cluster."
  1165. ::= { nutanix 1000 }
  1166.  
  1167. ntxTrapClusterRunningOutOfCPUCapacitylowRunway NOTIFICATION-TYPE
  1168. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1169. STATUS current
  1170. DESCRIPTION "Predict high CPU resource usage."
  1171. ::= { nutanix 1001 }
  1172.  
  1173. ntxTrapNodeRunningOutOfCPUCapacitylowRunway NOTIFICATION-TYPE
  1174. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1175. STATUS current
  1176. DESCRIPTION "Predict high CPU resource usage."
  1177. ::= { nutanix 1002 }
  1178.  
  1179. ntxTrapClusterRunningOutOfMemoryCapacitylowRunway NOTIFICATION-TYPE
  1180. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1181. STATUS current
  1182. DESCRIPTION "Predict high memory resource usage."
  1183. ::= { nutanix 1003 }
  1184.  
  1185. ntxTrapNodeRunningOutOfMemoryCapacitylowRunway NOTIFICATION-TYPE
  1186. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1187. STATUS current
  1188. DESCRIPTION "Predict high memory resource usage."
  1189. ::= { nutanix 1004 }
  1190.  
  1191. ntxTrapStorageContainerRunningOutOfStorageCapacitylowRunway NOTIFICATION-TYPE
  1192. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1193. STATUS current
  1194. DESCRIPTION "Predict high storage space usage on Storage Container."
  1195. ::= { nutanix 1005 }
  1196.  
  1197. ntxTrapTestAlertTitle NOTIFICATION-TYPE
  1198. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1199. STATUS current
  1200. DESCRIPTION "Test Alert."
  1201. ::= { nutanix 1006 }
  1202.  
  1203. ntxTrapMetadataDriveAutoAddDisabled NOTIFICATION-TYPE
  1204. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1205. STATUS current
  1206. DESCRIPTION "Metadata Drive AutoAdd Disabled."
  1207. ::= { nutanix 1007 }
  1208.  
  1209. ntxTrapNodeDetachedFromMetadataRing NOTIFICATION-TYPE
  1210. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1211. STATUS current
  1212. DESCRIPTION "Node detached from metadata ring."
  1213. ::= { nutanix 1008 }
  1214.  
  1215. ntxTrapMetadataDynamicRingChangeOperationStuck NOTIFICATION-TYPE
  1216. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1217. STATUS current
  1218. DESCRIPTION "Dynamic Ring Change operation not making progress."
  1219. ::= { nutanix 1009 }
  1220.  
  1221. ntxTrapMetadataDynamicRingChangeOperationTooSlow NOTIFICATION-TYPE
  1222. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1223. STATUS current
  1224. DESCRIPTION "Dynamic Ring Change operation too slow."
  1225. ::= { nutanix 1010 }
  1226.  
  1227. ntxTrapMetadataDriveFailed NOTIFICATION-TYPE
  1228. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1229. STATUS current
  1230. DESCRIPTION "Metadata Drive Failed."
  1231. ::= { nutanix 1011 }
  1232.  
  1233. ntxTrapLargeMetadataSizeDetected NOTIFICATION-TYPE
  1234. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1235. STATUS current
  1236. DESCRIPTION "Large metadata size detected."
  1237. ::= { nutanix 1012 }
  1238.  
  1239. ntxTrapMetadataDriveMarkedToBeAutoAdded NOTIFICATION-TYPE
  1240. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1241. STATUS current
  1242. DESCRIPTION "Metadata Drive Marked To Be AutoAdded."
  1243. ::= { nutanix 1013 }
  1244.  
  1245. ntxTrapMetadataDriveDetached NOTIFICATION-TYPE
  1246. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1247. STATUS current
  1248. DESCRIPTION "Metadata Drive Detached."
  1249. ::= { nutanix 1014 }
  1250.  
  1251. ntxTrapMetadataRingImbalance NOTIFICATION-TYPE
  1252. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1253. STATUS current
  1254. DESCRIPTION "Cassandra Metadata Imbalance."
  1255. ::= { nutanix 1015 }
  1256.  
  1257. ntxTrapCassandraWaitingForDiskReplacement NOTIFICATION-TYPE
  1258. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1259. STATUS current
  1260. DESCRIPTION "Metadata disk not replaced for Disk Replace Op."
  1261. ::= { nutanix 1016 }
  1262.  
  1263. ntxTrapCloudApplianceDeploymentFailed NOTIFICATION-TYPE
  1264. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1265. STATUS current
  1266. DESCRIPTION "Cloud Appliance Deployment Failed."
  1267. ::= { nutanix 1017 }
  1268.  
  1269. ntxTrapUnableToRemountDatastore NOTIFICATION-TYPE
  1270. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1271. STATUS current
  1272. DESCRIPTION "Unable to remount datastore."
  1273. ::= { nutanix 1018 }
  1274.  
  1275. ntxTrapRemountedDatastore NOTIFICATION-TYPE
  1276. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1277. STATUS current
  1278. DESCRIPTION "Remounted datastore."
  1279. ::= { nutanix 1019 }
  1280.  
  1281. ntxTrapFailedToAllocateSnapshotReserveOnTheRemoteSite NOTIFICATION-TYPE
  1282. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1283. STATUS current
  1284. DESCRIPTION "Failed to allocate snapshot reserve on the remote site."
  1285. ::= { nutanix 1020 }
  1286.  
  1287. ntxTrapFailedToAllocateSnapshotReserve NOTIFICATION-TYPE
  1288. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1289. STATUS current
  1290. DESCRIPTION "Failed to allocate snapshot reserve."
  1291. ::= { nutanix 1021 }
  1292.  
  1293. ntxTrapMetroTakeoverOldPrimarySiteIsHostingVMs NOTIFICATION-TYPE
  1294. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1295. STATUS current
  1296. DESCRIPTION "Metro takeover - old primary site is hosting VMs."
  1297. ::= { nutanix 1022 }
  1298.  
  1299. ntxTrapProtectionDomainIsInDecoupledState NOTIFICATION-TYPE
  1300. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1301. STATUS current
  1302. DESCRIPTION "Protection domain is in decoupled state."
  1303. ::= { nutanix 1023 }
  1304.  
  1305. ntxTrapRemoteSiteLatencyIsHigh NOTIFICATION-TYPE
  1306. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1307. STATUS current
  1308. DESCRIPTION "Latency to a stretch remote site is high."
  1309. ::= { nutanix 1024 }
  1310.  
  1311. ntxTrapFailedToUpdateMetroAvailabilityFailureHandling NOTIFICATION-TYPE
  1312. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1313. STATUS current
  1314. DESCRIPTION "Error in updating failure-handling on Metro Availability protection domain."
  1315. ::= { nutanix 1025 }
  1316.  
  1317. ntxTrapStretchConnectivityIsLost NOTIFICATION-TYPE
  1318. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1319. STATUS current
  1320. DESCRIPTION "Stretch connectivity is lost."
  1321. ::= { nutanix 1026 }
  1322.  
  1323. ntxTrapVMRegistrationWarning NOTIFICATION-TYPE
  1324. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1325. STATUS current
  1326. DESCRIPTION "VM Registration caused warning."
  1327. ::= { nutanix 1027 }
  1328.  
  1329. ntxTrapVMRenamedOnConversion NOTIFICATION-TYPE
  1330. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1331. STATUS current
  1332. DESCRIPTION "VM Renamed On Conversion."
  1333. ::= { nutanix 1028 }
  1334.  
  1335. ntxTrapAuthenticationFailedInWitness NOTIFICATION-TYPE
  1336. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1337. STATUS current
  1338. DESCRIPTION "Authentication failed in Witness."
  1339. ::= { nutanix 1029 }
  1340.  
  1341. ntxTrapWitnessIsNotConfigured NOTIFICATION-TYPE
  1342. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1343. STATUS current
  1344. DESCRIPTION "Witness is not configured."
  1345. ::= { nutanix 1030 }
  1346.  
  1347. ntxTrapWitnessIsNotReachable NOTIFICATION-TYPE
  1348. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1349. STATUS current
  1350. DESCRIPTION "Witness is not reachable."
  1351. ::= { nutanix 1031 }
  1352.  
  1353. ntxTrapCuratorJobRunningTooLong NOTIFICATION-TYPE
  1354. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1355. STATUS current
  1356. DESCRIPTION "Curator Job Running Too Long."
  1357. ::= { nutanix 1032 }
  1358.  
  1359. ntxTrapCuratorScanFailure NOTIFICATION-TYPE
  1360. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1361. STATUS current
  1362. DESCRIPTION "Curator Scan Failure."
  1363. ::= { nutanix 1033 }
  1364.  
  1365. ntxTrapFileServerSpaceUsageHigh NOTIFICATION-TYPE
  1366. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1367. STATUS current
  1368. DESCRIPTION "File Server Space Usage High."
  1369. ::= { nutanix 1034 }
  1370.  
  1371. ntxTrapFileServerSpaceUsageCritical NOTIFICATION-TYPE
  1372. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1373. STATUS current
  1374. DESCRIPTION "File Server Space Usage Critical."
  1375. ::= { nutanix 1035 }
  1376.  
  1377. ntxTrapFileServerUnreachable NOTIFICATION-TYPE
  1378. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1379. STATUS current
  1380. DESCRIPTION "File server is unreachable."
  1381. ::= { nutanix 1036 }
  1382.  
  1383. ntxTrapFileServerStorageIsNotAvailable NOTIFICATION-TYPE
  1384. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1385. STATUS current
  1386. DESCRIPTION "File Server storage is not available."
  1387. ::= { nutanix 1037 }
  1388.  
  1389. ntxTrapFileServerScaleoutFailed NOTIFICATION-TYPE
  1390. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1391. STATUS current
  1392. DESCRIPTION "File Server scale-out failed."
  1393. ::= { nutanix 1038 }
  1394.  
  1395. ntxTrapFileServerCouldNotJoinTheADDomain NOTIFICATION-TYPE
  1396. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1397. STATUS current
  1398. DESCRIPTION "File Server could not join the AD Domain."
  1399. ::= { nutanix 1039 }
  1400.  
  1401. ntxTrapNodeFailedToJoinDomain NOTIFICATION-TYPE
  1402. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1403. STATUS current
  1404. DESCRIPTION "The node could not join the domain."
  1405. ::= { nutanix 1040 }
  1406.  
  1407. ntxTrapFileServerTimeDifferenceHigh NOTIFICATION-TYPE
  1408. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1409. STATUS current
  1410. DESCRIPTION "The time drift between the FSVMs is beyond the acceptable range."
  1411. ::= { nutanix 1041 }
  1412.  
  1413. ntxTrapFileServerStorageCleanupFailed NOTIFICATION-TYPE
  1414. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1415. STATUS current
  1416. DESCRIPTION "Failed to clean up storage for the File Server."
  1417. ::= { nutanix 1042 }
  1418.  
  1419. ntxTrapFileServerCannotConnectWithADServer NOTIFICATION-TYPE
  1420. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1421. STATUS current
  1422. DESCRIPTION "File server cannot connect with AD server with configured information."
  1423. ::= { nutanix 1043 }
  1424.  
  1425. ntxTrapFileServerPerformanceOptimizationRecommended NOTIFICATION-TYPE
  1426. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1427. STATUS current
  1428. DESCRIPTION "File server has a recommendation to optimize performance by using scale-up, scale-out or rebalance."
  1429. ::= { nutanix 1044 }
  1430.  
  1431. ntxTrapAppropriateSiteNotFoundInActiveDirectory NOTIFICATION-TYPE
  1432. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1433. STATUS current
  1434. DESCRIPTION "Unable to determine an appropriate site in Active Directory."
  1435. ::= { nutanix 1045 }
  1436.  
  1437. ntxTrapFileServerDNSUpdatesPending NOTIFICATION-TYPE
  1438. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1439. STATUS current
  1440. DESCRIPTION "DNS updates are pending after a file server operation."
  1441. ::= { nutanix 1046 }
  1442.  
  1443. ntxTrapUserQuotaAssignmentFailed NOTIFICATION-TYPE
  1444. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1445. STATUS current
  1446. DESCRIPTION "Failed to assign the specified quota to the user."
  1447. ::= { nutanix 1047 }
  1448.  
  1449. ntxTrapShareUtilizationReachedConfiguredLimit NOTIFICATION-TYPE
  1450. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1451. STATUS current
  1452. DESCRIPTION "Share is no longer writeable."
  1453. ::= { nutanix 1048 }
  1454.  
  1455. ntxTrapFileServerFailedToGetUpdatedCVMIPAddress NOTIFICATION-TYPE
  1456. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1457. STATUS current
  1458. DESCRIPTION "File server cvm ip update failed."
  1459. ::= { nutanix 1049 }
  1460.  
  1461. ntxTrapFileServerActivationFailed NOTIFICATION-TYPE
  1462. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1463. STATUS current
  1464. DESCRIPTION "File Server Activation Failed."
  1465. ::= { nutanix 1050 }
  1466.  
  1467. ntxTrapFailedToSetVMtoVMAntiaffinityRule NOTIFICATION-TYPE
  1468. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1469. STATUS current
  1470. DESCRIPTION "Failed to set VM-to-VM anti affinity rule."
  1471. ::= { nutanix 1051 }
  1472.  
  1473. ntxTrapFileServerHomeShareCreationFailed NOTIFICATION-TYPE
  1474. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1475. STATUS current
  1476. DESCRIPTION "Failed to create home share during file server creation."
  1477. ::= { nutanix 1052 }
  1478.  
  1479. ntxTrapDiscoveryOfISCSITargetsFailed NOTIFICATION-TYPE
  1480. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1481. STATUS current
  1482. DESCRIPTION "Failed to discover iSCSI targets on the CVM during the discovery process."
  1483. ::= { nutanix 1053 }
  1484.  
  1485. ntxTrapFileServerUpgradeFailed NOTIFICATION-TYPE
  1486. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1487. STATUS current
  1488. DESCRIPTION "File Server Upgrade Failed."
  1489. ::= { nutanix 1054 }
  1490.  
  1491. ntxTrapIncompatibleFileServerActivated NOTIFICATION-TYPE
  1492. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1493. STATUS current
  1494. DESCRIPTION "Activating an incompatible File Server."
  1495. ::= { nutanix 1055 }
  1496.  
  1497. ntxTrapFileServerInHeterogeneousState NOTIFICATION-TYPE
  1498. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1499. STATUS current
  1500. DESCRIPTION "File server in heterogeneous state.Nodes do not match in their CPU or memory configuration. ."
  1501. ::= { nutanix 1056 }
  1502.  
  1503. ntxTrapFailedToCorrectFileServerDataAndMetaDataInconsistencies NOTIFICATION-TYPE
  1504. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1505. STATUS current
  1506. DESCRIPTION "Failed to Run File Server Metadata Fixer tool successfully."
  1507. ::= { nutanix 1057 }
  1508.  
  1509. ntxTrapFileServerShareDeletionFailed NOTIFICATION-TYPE
  1510. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1511. STATUS current
  1512. DESCRIPTION "Failed to delete share."
  1513. ::= { nutanix 1058 }
  1514.  
  1515. ntxTrapFileServerCompatibilityCheckSkipped NOTIFICATION-TYPE
  1516. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1517. STATUS current
  1518. DESCRIPTION "File server compatibility check skipped."
  1519. ::= { nutanix 1059 }
  1520.  
  1521. ntxTrapSnapshotInvalidForClone NOTIFICATION-TYPE
  1522. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1523. STATUS current
  1524. DESCRIPTION "Pre-asterix.2 snapshot is invalid for clone."
  1525. ::= { nutanix 1060 }
  1526.  
  1527. ntxTrapFileServerAntiVirusICAPServerDown NOTIFICATION-TYPE
  1528. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1529. STATUS current
  1530. DESCRIPTION "ICAP server is not responding to scan requests."
  1531. ::= { nutanix 1061 }
  1532.  
  1533. ntxTrapFileServerAntiVirusAllICAPServersDown NOTIFICATION-TYPE
  1534. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1535. STATUS current
  1536. DESCRIPTION "All configured ICAP servers are not responding to scan requests."
  1537. ::= { nutanix 1062 }
  1538.  
  1539. ntxTrapClusterInReadOnlyMode NOTIFICATION-TYPE
  1540. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1541. STATUS current
  1542. DESCRIPTION "Single-node cluster is in read-only mode."
  1543. ::= { nutanix 1063 }
  1544.  
  1545. ntxTrapStorageContainerSpaceUsageExceededAOSCheck NOTIFICATION-TYPE
  1546. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1547. STATUS current
  1548. DESCRIPTION "Check high space usage on Storage Containers."
  1549. ::= { nutanix 1064 }
  1550.  
  1551. ntxTrapDiskDiagnosticFailure NOTIFICATION-TYPE
  1552. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1553. STATUS current
  1554. DESCRIPTION "Drive diagnostic has failed."
  1555. ::= { nutanix 1065 }
  1556.  
  1557. ntxTrapNodeFailure NOTIFICATION-TYPE
  1558. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1559. STATUS current
  1560. DESCRIPTION "Node Failure."
  1561. ::= { nutanix 1066 }
  1562.  
  1563. ntxTrapNodeInMaintenanceMode NOTIFICATION-TYPE
  1564. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1565. STATUS current
  1566. DESCRIPTION "Node in Maintenance Mode."
  1567. ::= { nutanix 1067 }
  1568.  
  1569. ntxTrapNonSelfEncryptionDriveDiskInserted NOTIFICATION-TYPE
  1570. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1571. STATUS current
  1572. DESCRIPTION "Non Self Encrypting Drive disk inserted."
  1573. ::= { nutanix 1068 }
  1574.  
  1575. ntxTrapPhysicalDiskAddedToSlot NOTIFICATION-TYPE
  1576. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1577. STATUS current
  1578. DESCRIPTION "Physical Disk added to slot."
  1579. ::= { nutanix 1069 }
  1580.  
  1581. ntxTrapPhysicalDiskDriveHasFailed NOTIFICATION-TYPE
  1582. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1583. STATUS current
  1584. DESCRIPTION "Physical drive has failed."
  1585. ::= { nutanix 1070 }
  1586.  
  1587. ntxTrapPhysicalDiskRemovedFromSlot NOTIFICATION-TYPE
  1588. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1589. STATUS current
  1590. DESCRIPTION "Physical disk removed from slot."
  1591. ::= { nutanix 1071 }
  1592.  
  1593. ntxTrapSelfEncryptingDriveOperationFailure NOTIFICATION-TYPE
  1594. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1595. STATUS current
  1596. DESCRIPTION "Self encrypting drive operation failure."
  1597. ::= { nutanix 1072 }
  1598.  
  1599. ntxTrapUnsupportedConfigurationForRedundancyFactor3 NOTIFICATION-TYPE
  1600. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1601. STATUS current
  1602. DESCRIPTION "Unsupported Configuration For Redundancy Factor 3."
  1603. ::= { nutanix 1073 }
  1604.  
  1605. ntxTrapCannotRemovePasswordProtectedDisks NOTIFICATION-TYPE
  1606. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1607. STATUS current
  1608. DESCRIPTION "Cannot remove password protected disk(s)."
  1609. ::= { nutanix 1074 }
  1610.  
  1611. ntxTrapDiskBad NOTIFICATION-TYPE
  1612. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1613. STATUS current
  1614. DESCRIPTION "Disk Bad."
  1615. ::= { nutanix 1075 }
  1616.  
  1617. ntxTrapDuplicateIPAddressDetected NOTIFICATION-TYPE
  1618. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1619. STATUS current
  1620. DESCRIPTION "Duplicate IP Address Detected."
  1621. ::= { nutanix 1076 }
  1622.  
  1623. ntxTrapIPAddressNotHosted NOTIFICATION-TYPE
  1624. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1625. STATUS current
  1626. DESCRIPTION "IP Address Not Hosted."
  1627. ::= { nutanix 1077 }
  1628.  
  1629. ntxTrapSMTPError NOTIFICATION-TYPE
  1630. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1631. STATUS current
  1632. DESCRIPTION "Failed to send email."
  1633. ::= { nutanix 1078 }
  1634.  
  1635. ntxTrapProtectionDomainReplicationFailure NOTIFICATION-TYPE
  1636. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1637. STATUS current
  1638. DESCRIPTION "Protection Domain Replication Failure."
  1639. ::= { nutanix 1079 }
  1640.  
  1641. ntxTrapProtectionDomainSnapshotFailure NOTIFICATION-TYPE
  1642. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1643. STATUS current
  1644. DESCRIPTION "Protection Domain Snapshot Failure."
  1645. ::= { nutanix 1080 }
  1646.  
  1647. ntxTrapNutanixGuestToolsAgentIsNotReachableOnTheVM NOTIFICATION-TYPE
  1648. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1649. STATUS current
  1650. DESCRIPTION "VM not reachable."
  1651. ::= { nutanix 1081 }
  1652.  
  1653. ntxTrapMetroAvailabilityIsPromoted NOTIFICATION-TYPE
  1654. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1655. STATUS current
  1656. DESCRIPTION "Metro availability is promoted."
  1657. ::= { nutanix 1082 }
  1658.  
  1659. ntxTrapEntityRestoreAborted NOTIFICATION-TYPE
  1660. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1661. STATUS current
  1662. DESCRIPTION "Entity restore aborted."
  1663. ::= { nutanix 1083 }
  1664.  
  1665. ntxTrapProtectionDomainReceiveSnapshotFailure NOTIFICATION-TYPE
  1666. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1667. STATUS current
  1668. DESCRIPTION "Protection Domain Receive Snapshot Failure."
  1669. ::= { nutanix 1084 }
  1670.  
  1671. ntxTrapSecureTunnelToRemoteSiteDown NOTIFICATION-TYPE
  1672. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1673. STATUS current
  1674. DESCRIPTION "Secure Tunnel To Remote Site Down."
  1675. ::= { nutanix 1085 }
  1676.  
  1677. ntxTrapProtectedVolumeGroupNotFound NOTIFICATION-TYPE
  1678. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1679. STATUS current
  1680. DESCRIPTION "Protected Volume Group not Found."
  1681. ::= { nutanix 1086 }
  1682.  
  1683. ntxTrapProtectionDomainActivation NOTIFICATION-TYPE
  1684. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1685. STATUS current
  1686. DESCRIPTION "Protection Domain Activation."
  1687. ::= { nutanix 1087 }
  1688.  
  1689. ntxTrapDuplicateRemoteClusterID NOTIFICATION-TYPE
  1690. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1691. STATUS current
  1692. DESCRIPTION "Duplicate Remote Cluster ID."
  1693. ::= { nutanix 1088 }
  1694.  
  1695. ntxTrapCloudRemoteSiteFailedToStart NOTIFICATION-TYPE
  1696. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1697. STATUS current
  1698. DESCRIPTION "Cloud remote site failed to start."
  1699. ::= { nutanix 1089 }
  1700.  
  1701. ntxTrapRemoteSiteremotenameNetworkMappingMissing NOTIFICATION-TYPE
  1702. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1703. STATUS current
  1704. DESCRIPTION "No Network Mapping Specified."
  1705. ::= { nutanix 1090 }
  1706.  
  1707. ntxTrapOperationForwardedToCloudRemoteFailed NOTIFICATION-TYPE
  1708. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1709. STATUS current
  1710. DESCRIPTION "Cloud Remote Operation Failure."
  1711. ::= { nutanix 1091 }
  1712.  
  1713. ntxTrapRecoveryPointObjectiveCannotBeMet NOTIFICATION-TYPE
  1714. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1715. STATUS current
  1716. DESCRIPTION "Recovery Point Objective Cannot Be Met."
  1717. ::= { nutanix 1092 }
  1718.  
  1719. ntxTrapVStoreSnapshotStatus NOTIFICATION-TYPE
  1720. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1721. STATUS current
  1722. DESCRIPTION "VStore Snapshot Status."
  1723. ::= { nutanix 1093 }
  1724.  
  1725. ntxTrapProtectionDomainSnapshotOperationSkipped NOTIFICATION-TYPE
  1726. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1727. STATUS current
  1728. DESCRIPTION "Skipped snapshot operation."
  1729. ::= { nutanix 1094 }
  1730.  
  1731. ntxTrapSkippedReplicationOfTheSnapshot NOTIFICATION-TYPE
  1732. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1733. STATUS current
  1734. DESCRIPTION "Skipped replication of the snapshot."
  1735. ::= { nutanix 1095 }
  1736.  
  1737. ntxTrapFailedToSnapshotEntities NOTIFICATION-TYPE
  1738. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1739. STATUS current
  1740. DESCRIPTION "Failed to snapshot entities."
  1741. ::= { nutanix 1096 }
  1742.  
  1743. ntxTrapIncorrectClusterInformationInRemoteSite NOTIFICATION-TYPE
  1744. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1745. STATUS current
  1746. DESCRIPTION "Cluster Information in Remote Site is not correct."
  1747. ::= { nutanix 1097 }
  1748.  
  1749. ntxTrapVStoreIsBeingReplicatedToBackupOnlyRemoteSite NOTIFICATION-TYPE
  1750. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1751. STATUS current
  1752. DESCRIPTION "vStore is being replicated to backup only remote site."
  1753. ::= { nutanix 1098 }
  1754.  
  1755. ntxTrapFailedToChangeStateOfOneOrMoreVMs NOTIFICATION-TYPE
  1756. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1757. STATUS current
  1758. DESCRIPTION "Failed to change state of one or more VMs."
  1759. ::= { nutanix 1099 }
  1760.  
  1761. ntxTrapRegistrationOfOneOrMoreVMsFailed NOTIFICATION-TYPE
  1762. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1763. STATUS current
  1764. DESCRIPTION "Registration of one or more VMs failed."
  1765. ::= { nutanix 1100 }
  1766.  
  1767. ntxTrapSelfServiceRestoreOperationFailed NOTIFICATION-TYPE
  1768. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1769. STATUS current
  1770. DESCRIPTION "Self service restore operation failed."
  1771. ::= { nutanix 1101 }
  1772.  
  1773. ntxTrapMetadataVolumeSnapshotPersistentFailure NOTIFICATION-TYPE
  1774. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1775. STATUS current
  1776. DESCRIPTION "Metadata Volume Snapshot Persistent Failure."
  1777. ::= { nutanix 1102 }
  1778.  
  1779. ntxTrapMetroAvailabilityIsDisabled NOTIFICATION-TYPE
  1780. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1781. STATUS current
  1782. DESCRIPTION "Metro availability is disabled."
  1783. ::= { nutanix 1103 }
  1784.  
  1785. ntxTrapApplicationconsistentSnapshotNotTakenForTheVM NOTIFICATION-TYPE
  1786. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1787. STATUS current
  1788. DESCRIPTION "Application-consistent snapshot not taken for the VM."
  1789. ::= { nutanix 1104 }
  1790.  
  1791. ntxTrapInvalidConsistencyGroup NOTIFICATION-TYPE
  1792. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1793. STATUS current
  1794. DESCRIPTION "Invalid Consistency Group."
  1795. ::= { nutanix 1105 }
  1796.  
  1797. ntxTrapFailedToReconfigureNutanixGuestToolsForTheRecoveredVM NOTIFICATION-TYPE
  1798. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1799. STATUS current
  1800. DESCRIPTION "Failed to reconfigure Nutanix Guest Tools for a VM in protection domain."
  1801. ::= { nutanix 1106 }
  1802.  
  1803. ntxTrapNutanixGuestToolsNotInstalled NOTIFICATION-TYPE
  1804. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1805. STATUS current
  1806. DESCRIPTION "Nutanix Guest Tools not installed."
  1807. ::= { nutanix 1107 }
  1808.  
  1809. ntxTrapRemoteSiteremotenameNetworkMappingInvalid NOTIFICATION-TYPE
  1810. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1811. STATUS current
  1812. DESCRIPTION "Invalid Network Mapping Specified."
  1813. ::= { nutanix 1108 }
  1814.  
  1815. ntxTrapVSSSnapshotFailed NOTIFICATION-TYPE
  1816. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1817. STATUS current
  1818. DESCRIPTION "VSS snapshot failed."
  1819. ::= { nutanix 1109 }
  1820.  
  1821. ntxTrapAlertRaisedOnCloudRemoteSiteremotenamealertmessage NOTIFICATION-TYPE
  1822. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1823. STATUS current
  1824. DESCRIPTION "Alert generated on cloud remote site."
  1825. ::= { nutanix 1110 }
  1826.  
  1827. ntxTrapProtectedVmsNotFound NOTIFICATION-TYPE
  1828. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1829. STATUS current
  1830. DESCRIPTION "Protected Vms Not Found."
  1831. ::= { nutanix 1111 }
  1832.  
  1833. ntxTrapProtectionDomainContainsMoreThanSpecifiedVMs NOTIFICATION-TYPE
  1834. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1835. STATUS current
  1836. DESCRIPTION "Protection domain contains multiple VMs."
  1837. ::= { nutanix 1112 }
  1838.  
  1839. ntxTrapRelatedEntityProtectionStatus NOTIFICATION-TYPE
  1840. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1841. STATUS current
  1842. DESCRIPTION "Protection status of a related entity."
  1843. ::= { nutanix 1113 }
  1844.  
  1845. ntxTrapNutanixGuestToolsIsNotSupportedOnRemoteSite NOTIFICATION-TYPE
  1846. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1847. STATUS current
  1848. DESCRIPTION "Remote site does not support NGT."
  1849. ::= { nutanix 1114 }
  1850.  
  1851. ntxTrapRemoteSiteOperationModeReadOnly NOTIFICATION-TYPE
  1852. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1853. STATUS current
  1854. DESCRIPTION "Operation Mode of Remote Site changed to kReadOnly."
  1855. ::= { nutanix 1115 }
  1856.  
  1857. ntxTrapRemoteSiteIsUnhealthy NOTIFICATION-TYPE
  1858. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1859. STATUS current
  1860. DESCRIPTION "Remote site is unhealthy."
  1861. ::= { nutanix 1116 }
  1862.  
  1863. ntxTrapEntitiesRestoredButUnprotected NOTIFICATION-TYPE
  1864. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1865. STATUS current
  1866. DESCRIPTION "Entities Restored But Unprotected."
  1867. ::= { nutanix 1117 }
  1868.  
  1869. ntxTrapProtectionDomainFullReplicationPerformed NOTIFICATION-TYPE
  1870. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1871. STATUS current
  1872. DESCRIPTION "Full Replication was done."
  1873. ::= { nutanix 1118 }
  1874.  
  1875. ntxTrapProtectedVMIsNotNutanixBackupAndRecoveryCompliant NOTIFICATION-TYPE
  1876. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1877. STATUS current
  1878. DESCRIPTION "Protected VM is not Nutanix backup and recovery compliant."
  1879. ::= { nutanix 1119 }
  1880.  
  1881. ntxTrapProtectedVMRenamedDuringClone NOTIFICATION-TYPE
  1882. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1883. STATUS current
  1884. DESCRIPTION "Protected VM renamed during clone."
  1885. ::= { nutanix 1120 }
  1886.  
  1887. ntxTrapProtectedVolumeGroupsNotFound NOTIFICATION-TYPE
  1888. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1889. STATUS current
  1890. DESCRIPTION "Protected Volume Groups Not Found."
  1891. ::= { nutanix 1121 }
  1892.  
  1893. ntxTrapVMRegistrationFailed NOTIFICATION-TYPE
  1894. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1895. STATUS current
  1896. DESCRIPTION "VM Registration Failure."
  1897. ::= { nutanix 1122 }
  1898.  
  1899. ntxTrapProtectionDomainReplicationExpired NOTIFICATION-TYPE
  1900. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1901. STATUS current
  1902. DESCRIPTION "Protection Domain Replication Expired."
  1903. ::= { nutanix 1123 }
  1904.  
  1905. ntxTrapVolumeGroupAttachmentsNotRestored NOTIFICATION-TYPE
  1906. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1907. STATUS current
  1908. DESCRIPTION "Volume Group Attachments Not Restored."
  1909. ::= { nutanix 1124 }
  1910.  
  1911. ntxTrapEntitiesSkippedDuringRestore NOTIFICATION-TYPE
  1912. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1913. STATUS current
  1914. DESCRIPTION "Entities Skipped During Restore."
  1915. ::= { nutanix 1125 }
  1916.  
  1917. ntxTrapProtectionDomainChangeModeFailure NOTIFICATION-TYPE
  1918. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1919. STATUS current
  1920. DESCRIPTION "Protection Domain Change Mode Failure."
  1921. ::= { nutanix 1126 }
  1922.  
  1923. ntxTrapVSSSnapshotAborted NOTIFICATION-TYPE
  1924. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1925. STATUS current
  1926. DESCRIPTION "VSS snapshot is aborted by the Guest VM."
  1927. ::= { nutanix 1127 }
  1928.  
  1929. ntxTrapExternalISCSIAttachmentsNotSnapshotted NOTIFICATION-TYPE
  1930. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1931. STATUS current
  1932. DESCRIPTION "External iSCSI Attachments Not Snapshotted."
  1933. ::= { nutanix 1128 }
  1934.  
  1935. ntxTrapVMVirtualHardwareVersionNotCompatible NOTIFICATION-TYPE
  1936. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1937. STATUS current
  1938. DESCRIPTION "VM Virtual Hardware Version not Compatible."
  1939. ::= { nutanix 1129 }
  1940.  
  1941. ntxTrapVolumeGroupActionError NOTIFICATION-TYPE
  1942. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1943. STATUS current
  1944. DESCRIPTION "Volume Group Action Error."
  1945. ::= { nutanix 1130 }
  1946.  
  1947. ntxTrapMetadataVolumeSnapshotTimeout NOTIFICATION-TYPE
  1948. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1949. STATUS current
  1950. DESCRIPTION "Metadata Volume Snapshot Timeout Failure."
  1951. ::= { nutanix 1131 }
  1952.  
  1953. ntxTrapSnapshotPartiallyCrashConsistent NOTIFICATION-TYPE
  1954. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1955. STATUS current
  1956. DESCRIPTION "Snapshot partially crash consistent."
  1957. ::= { nutanix 1132 }
  1958.  
  1959. ntxTrapMetroAvailabilityPrechecksFailed NOTIFICATION-TYPE
  1960. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1961. STATUS current
  1962. DESCRIPTION "Metro availability prechecks failed."
  1963. ::= { nutanix 1133 }
  1964.  
  1965. ntxTrapProtectionDomainMightHaveSymlinks NOTIFICATION-TYPE
  1966. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1967. STATUS current
  1968. DESCRIPTION "Protection domain snapshot has symlinks."
  1969. ::= { nutanix 1134 }
  1970.  
  1971. ntxTrapVSSSnapshotIsNotSupportedForTheVM NOTIFICATION-TYPE
  1972. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1973. STATUS current
  1974. DESCRIPTION "VSS snapshot is not supported for the VM."
  1975. ::= { nutanix 1135 }
  1976.  
  1977. ntxTrapSnapshotReserveOnSSDIsFull NOTIFICATION-TYPE
  1978. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1979. STATUS current
  1980. DESCRIPTION "LWS store has become full on the cluster."
  1981. ::= { nutanix 1136 }
  1982.  
  1983. ntxTrapMetroAvailabilityConfigurationFailed NOTIFICATION-TYPE
  1984. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1985. STATUS current
  1986. DESCRIPTION "Metro availability start failed."
  1987. ::= { nutanix 1137 }
  1988.  
  1989. ntxTrapStaleNFSMount NOTIFICATION-TYPE
  1990. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1991. STATUS current
  1992. DESCRIPTION "Stale NFS mount."
  1993. ::= { nutanix 1138 }
  1994.  
  1995. ntxTrapVSSSoftwareOrprefreezepostthawScriptsNotInstalled NOTIFICATION-TYPE
  1996. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  1997. STATUS current
  1998. DESCRIPTION "VSS software or pre_freeze/post_thaw Scripts Not Installed."
  1999. ::= { nutanix 1139 }
  2000.  
  2001. ntxTrapProtectedVMNotFound NOTIFICATION-TYPE
  2002. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2003. STATUS current
  2004. DESCRIPTION "Protected VM not Found."
  2005. ::= { nutanix 1140 }
  2006.  
  2007. ntxTrapProtectionDomainTransitioningToLowerFrequencySnapshotting NOTIFICATION-TYPE
  2008. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2009. STATUS current
  2010. DESCRIPTION "Protection Domain transitioning to lower frequency snapshot schedule."
  2011. ::= { nutanix 1141 }
  2012.  
  2013. ntxTrapSnapshotQueuedForReplicationsToRemoteSite NOTIFICATION-TYPE
  2014. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2015. STATUS current
  2016. DESCRIPTION "Protection domain protection_domain_name has one or more snapshots queued for replication to remote site remote_name."
  2017. ::= { nutanix 1142 }
  2018.  
  2019. ntxTrapAgentVMRestorationFailure NOTIFICATION-TYPE
  2020. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2021. STATUS current
  2022. DESCRIPTION "Failure to Restore Agent VM."
  2023. ::= { nutanix 1143 }
  2024.  
  2025. ntxTrapCPSDeploymentEvaluationMode NOTIFICATION-TYPE
  2026. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2027. STATUS current
  2028. DESCRIPTION "Checks if the CPS deployment is running in evaluation mode."
  2029. ::= { nutanix 1144 }
  2030.  
  2031. ntxTrapHAHostEvacuationFailure NOTIFICATION-TYPE
  2032. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2033. STATUS current
  2034. DESCRIPTION "Failure to evacuate host while entering maintenance mode or reserving host for HA."
  2035. ::= { nutanix 1145 }
  2036.  
  2037. ntxTrapFailureToRestartVMsForHAEvent NOTIFICATION-TYPE
  2038. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2039. STATUS current
  2040. DESCRIPTION "Failure to restart VMs for HA event."
  2041. ::= { nutanix 1146 }
  2042.  
  2043. ntxTrapUpgradeBundleAvailable NOTIFICATION-TYPE
  2044. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2045. STATUS current
  2046. DESCRIPTION "Bundle available for upgrade."
  2047. ::= { nutanix 1147 }
  2048.  
  2049. ntxTrapVMActionError NOTIFICATION-TYPE
  2050. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2051. STATUS current
  2052. DESCRIPTION "VM Action Error."
  2053. ::= { nutanix 1148 }
  2054.  
  2055. ntxTrapHAHealingFailure NOTIFICATION-TYPE
  2056. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2057. STATUS current
  2058. DESCRIPTION "HA healing failure."
  2059. ::= { nutanix 1149 }
  2060.  
  2061. ntxTrapVmHighAvailabilityFailure NOTIFICATION-TYPE
  2062. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2063. STATUS current
  2064. DESCRIPTION "High Availability Failure."
  2065. ::= { nutanix 1150 }
  2066.  
  2067. ntxTrapKerberosClockSkewFailure NOTIFICATION-TYPE
  2068. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2069. STATUS current
  2070. DESCRIPTION "Kerberos Clock Skew Failure."
  2071. ::= { nutanix 1151 }
  2072.  
  2073. ntxTrapStargateTemporarilyDown NOTIFICATION-TYPE
  2074. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2075. STATUS current
  2076. DESCRIPTION "Stargate Temporarily Down."
  2077. ::= { nutanix 1152 }
  2078.  
  2079. ntxTrapVMGroupSnapshotAndCurrentMismatch NOTIFICATION-TYPE
  2080. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2081. STATUS current
  2082. DESCRIPTION "Check that snapshot to restore matches current VM group."
  2083. ::= { nutanix 1153 }
  2084.  
  2085. ntxTrapCertificateCreationError NOTIFICATION-TYPE
  2086. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2087. STATUS current
  2088. DESCRIPTION "Certificate signing request creation failure."
  2089. ::= { nutanix 1154 }
  2090.  
  2091. ntxTrapCompressionDisabled NOTIFICATION-TYPE
  2092. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2093. STATUS current
  2094. DESCRIPTION "Compression is Disabled."
  2095. ::= { nutanix 1155 }
  2096.  
  2097. ntxTrapFingerprintingDisabled NOTIFICATION-TYPE
  2098. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2099. STATUS current
  2100. DESCRIPTION "Fingerprinting Disabled."
  2101. ::= { nutanix 1156 }
  2102.  
  2103. ntxTrapSystemDefinedFlashModeUsageLimitExceeded NOTIFICATION-TYPE
  2104. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2105. STATUS current
  2106. DESCRIPTION "Check that usage for flash-mode-enabled vDisks is within system limits."
  2107. ::= { nutanix 1157 }
  2108.  
  2109. ntxTrapMetadataUsageHigh NOTIFICATION-TYPE
  2110. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2111. STATUS current
  2112. DESCRIPTION "Metadata Usage High."
  2113. ::= { nutanix 1158 }
  2114.  
  2115. ntxTrapNFSMetadataSizeOvershoot NOTIFICATION-TYPE
  2116. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2117. STATUS current
  2118. DESCRIPTION "NFS Metadata Usage High."
  2119. ::= { nutanix 1159 }
  2120.  
  2121. ntxTrapOnDiskDedupDisabled NOTIFICATION-TYPE
  2122. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2123. STATUS current
  2124. DESCRIPTION "On-Disk Dedup Disabled."
  2125. ::= { nutanix 1160 }
  2126.  
  2127. ntxTrapSpaceReservationViolated NOTIFICATION-TYPE
  2128. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2129. STATUS current
  2130. DESCRIPTION "Space Reservation Violated."
  2131. ::= { nutanix 1161 }
  2132.  
  2133. ntxTrapVDiskBlockMapUsageHighCritical NOTIFICATION-TYPE
  2134. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2135. STATUS current
  2136. DESCRIPTION "vDisk Block Map Usage High Critical."
  2137. ::= { nutanix 1162 }
  2138.  
  2139. ntxTrapVDiskBlockMapUsageHighWarning NOTIFICATION-TYPE
  2140. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2141. STATUS current
  2142. DESCRIPTION "vDisk Block Map Usage High."
  2143. ::= { nutanix 1163 }
  2144.  
  2145. ntxTrapPossibleDegradedNode NOTIFICATION-TYPE
  2146. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2147. STATUS current
  2148. DESCRIPTION "Services on node possibly not making progress."
  2149. ::= { nutanix 1164 }
  2150.  
  2151. ntxTrapDynamicSchedulingFailure NOTIFICATION-TYPE
  2152. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2153. STATUS current
  2154. DESCRIPTION "One or more nodes have resource contention. This imbalance can cause performance bottlenecks on the node(s) affected."
  2155. ::= { nutanix 1165 }
  2156.  
  2157. ntxTrapRecoveredVMDiskConfigurationUpdateFailed NOTIFICATION-TYPE
  2158. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2159. STATUS current
  2160. DESCRIPTION "Disk Configuration Update Failed."
  2161. ::= { nutanix 1166 }
  2162.  
  2163. ntxTrapISCSIConfigurationFailed NOTIFICATION-TYPE
  2164. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2165. STATUS current
  2166. DESCRIPTION "iSCSI Configuration Failed."
  2167. ::= { nutanix 1167 }
  2168.  
  2169. ntxTrapA130104 NOTIFICATION-TYPE
  2170. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2171. STATUS current
  2172. DESCRIPTION "NGT version of the VM is incompatible with the NGT version of the cluster."
  2173. ::= { nutanix 1168 }
  2174.  
  2175. ntxTrapExecutionOfThePostThawScriptFailed NOTIFICATION-TYPE
  2176. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2177. STATUS current
  2178. DESCRIPTION "Execution of the PostThaw Script Failed."
  2179. ::= { nutanix 1169 }
  2180.  
  2181. ntxTrapNutanixGuestToolsMountFailed NOTIFICATION-TYPE
  2182. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2183. STATUS current
  2184. DESCRIPTION "Nutanix Guest Tools mount failed."
  2185. ::= { nutanix 1170 }
  2186.  
  2187. ntxTrapVMForciblyPoweredOff NOTIFICATION-TYPE
  2188. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2189. STATUS current
  2190. DESCRIPTION "Acropolis has forcibly powered off a VM that should have been powered off."
  2191. ::= { nutanix 1171 }
  2192.  
  2193. ntxTrapReportGenerationFailure NOTIFICATION-TYPE
  2194. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2195. STATUS current
  2196. DESCRIPTION "Report Generation failed. Database may be down or cluster may have insufficient storage."
  2197. ::= { nutanix 1172 }
  2198.  
  2199. ntxTrapSendReportThroughEmailFailure NOTIFICATION-TYPE
  2200. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2201. STATUS current
  2202. DESCRIPTION "Sending of report through E-mail failed. SMTP might be down or report might have been deleted."
  2203. ::= { nutanix 1173 }
  2204.  
  2205. ntxTrapReportQuotaScanFailure NOTIFICATION-TYPE
  2206. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2207. STATUS current
  2208. DESCRIPTION "Report Quota scan failed. Cassandra might be unreachable."
  2209. ::= { nutanix 1174 }
  2210.  
  2211. ntxTrapCassandraServiceCrashed NOTIFICATION-TYPE
  2212. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2213. STATUS current
  2214. DESCRIPTION "Check if Cassandra service is crashing continuously."
  2215. ::= { nutanix 1175 }
  2216.  
  2217. ntxTrapCassandraServiceIsRunningOutOfMemory NOTIFICATION-TYPE
  2218. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2219. STATUS current
  2220. DESCRIPTION "Check if the Cassandra service is running out of memory."
  2221. ::= { nutanix 1176 }
  2222.  
  2223. ntxTrapMultipleCassandraNodesHaveSimilarTokens NOTIFICATION-TYPE
  2224. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2225. STATUS current
  2226. DESCRIPTION "Check for similar tokens in Cassandra."
  2227. ::= { nutanix 1177 }
  2228.  
  2229. ntxTrapCloudClusterDoesNotHaveRecommendedConfigurationLocally NOTIFICATION-TYPE
  2230. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2231. STATUS current
  2232. DESCRIPTION "Check that cloud cluster has recommended configuration locally."
  2233. ::= { nutanix 1178 }
  2234.  
  2235. ntxTrapAWSCloudInstanceNotConfiguredProperly NOTIFICATION-TYPE
  2236. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2237. STATUS current
  2238. DESCRIPTION "Verify that the AWS cloud instances have recommended configuration."
  2239. ::= { nutanix 1179 }
  2240.  
  2241. ntxTrapOldGenerationAWSInstanceConfigured NOTIFICATION-TYPE
  2242. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2243. STATUS current
  2244. DESCRIPTION "Checks whether old generation AWS instance is configured for remote site."
  2245. ::= { nutanix 1180 }
  2246.  
  2247. ntxTrapAOSVersionOfCloudRemoteSiteIsLessThanSourceCluster NOTIFICATION-TYPE
  2248. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2249. STATUS current
  2250. DESCRIPTION "Check AOS version for cloud remote site."
  2251. ::= { nutanix 1181 }
  2252.  
  2253. ntxTrapCloudClusterDoesNotHaveAllRecommendedGflagsSet NOTIFICATION-TYPE
  2254. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2255. STATUS current
  2256. DESCRIPTION "Check if cloud remote sites have recommended gflags set."
  2257. ::= { nutanix 1182 }
  2258.  
  2259. ntxTrapEgroupCountOnCloudDiskIsHigherThanTheRecommendedThreshold NOTIFICATION-TYPE
  2260. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2261. STATUS current
  2262. DESCRIPTION "Check if egroup count on cloud remote is within threshold."
  2263. ::= { nutanix 1183 }
  2264.  
  2265. ntxTrapFileServerMutipleVMsOnSingleNodeCheck NOTIFICATION-TYPE
  2266. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2267. STATUS current
  2268. DESCRIPTION "Checks that multiple File server VMs are running on a single node."
  2269. ::= { nutanix 1184 }
  2270.  
  2271. ntxTrapFileServerServicesDownCheck NOTIFICATION-TYPE
  2272. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2273. STATUS current
  2274. DESCRIPTION "Checks that all File server services are running."
  2275. ::= { nutanix 1185 }
  2276.  
  2277. ntxTrapFileServerUnreachableCheck NOTIFICATION-TYPE
  2278. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2279. STATUS current
  2280. DESCRIPTION "Checks that File server is reachable."
  2281. ::= { nutanix 1186 }
  2282.  
  2283. ntxTrapFileServerDownCheck NOTIFICATION-TYPE
  2284. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2285. STATUS current
  2286. DESCRIPTION "Checks that File server is down."
  2287. ::= { nutanix 1187 }
  2288.  
  2289. ntxTrapFileServerInvalidSnapshot NOTIFICATION-TYPE
  2290. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2291. STATUS current
  2292. DESCRIPTION "Checks that File server is in healthy state to take snapshot."
  2293. ::= { nutanix 1188 }
  2294.  
  2295. ntxTrapFileServerEntitiesNotProtected NOTIFICATION-TYPE
  2296. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2297. STATUS current
  2298. DESCRIPTION "Checks all File server entities are protected."
  2299. ::= { nutanix 1189 }
  2300.  
  2301. ntxTrapMultipleFileServerVersionsArePresentInTheCluster NOTIFICATION-TYPE
  2302. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2303. STATUS current
  2304. DESCRIPTION "Checks whether multiple File server versions are running in the cluster."
  2305. ::= { nutanix 1190 }
  2306.  
  2307. ntxTrapFileServerUpgradeTaskHungForTooLong NOTIFICATION-TYPE
  2308. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2309. STATUS current
  2310. DESCRIPTION "Check File server task is hung for a long time."
  2311. ::= { nutanix 1191 }
  2312.  
  2313. ntxTrapFileServerPDActivatesOnMultipleSites NOTIFICATION-TYPE
  2314. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2315. STATUS current
  2316. DESCRIPTION "Checks that File Server PD Active On Multiple Sites."
  2317. ::= { nutanix 1192 }
  2318.  
  2319. ntxTrapFileServerPDEnabledOnNoncompatibleRemoteSite NOTIFICATION-TYPE
  2320. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2321. STATUS current
  2322. DESCRIPTION "Checks File server remote sites are file server capable."
  2323. ::= { nutanix 1193 }
  2324.  
  2325. ntxTrapHardwareClockFailure NOTIFICATION-TYPE
  2326. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2327. STATUS current
  2328. DESCRIPTION "Check if Hardware clock has failed."
  2329. ::= { nutanix 1194 }
  2330.  
  2331. ntxTrapWsmanConnectivityLost NOTIFICATION-TYPE
  2332. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2333. STATUS current
  2334. DESCRIPTION "Checks if CVM can connect to the host using WSMan."
  2335. ::= { nutanix 1195 }
  2336.  
  2337. ntxTrapVMMigrationCompromised NOTIFICATION-TYPE
  2338. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2339. STATUS current
  2340. DESCRIPTION "Checks whether VMWare EVC configuration can cause VM migration problems."
  2341. ::= { nutanix 1196 }
  2342.  
  2343. ntxTrapCVMMemoryReservationIsIncorrectlyConfigured NOTIFICATION-TYPE
  2344. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2345. STATUS current
  2346. DESCRIPTION "Verify CVM memory reservation and pinning."
  2347. ::= { nutanix 1197 }
  2348.  
  2349. ntxTrapHostMissingCriticalWindowsUpdates NOTIFICATION-TYPE
  2350. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2351. STATUS current
  2352. DESCRIPTION "Check if required windows updates are installed."
  2353. ::= { nutanix 1198 }
  2354.  
  2355. ntxTrapSomeStorageContainersHaveAHighNumberOfNFSFiles NOTIFICATION-TYPE
  2356. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2357. STATUS current
  2358. DESCRIPTION "Check that NFS datastore file count below threshold 20000."
  2359. ::= { nutanix 1199 }
  2360.  
  2361. ntxTrapHostdServiceNotRunning NOTIFICATION-TYPE
  2362. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2363. STATUS current
  2364. DESCRIPTION "Check if hostd access is available."
  2365. ::= { nutanix 1200 }
  2366.  
  2367. ntxTrapIncorrectKerberosSetup NOTIFICATION-TYPE
  2368. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2369. STATUS current
  2370. DESCRIPTION "Check if Kerberos is set up correctly."
  2371. ::= { nutanix 1201 }
  2372.  
  2373. ntxTrapUnableToConnectToVCenter NOTIFICATION-TYPE
  2374. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2375. STATUS current
  2376. DESCRIPTION "Check if vCenter connection is established."
  2377. ::= { nutanix 1202 }
  2378.  
  2379. ntxTrapVMHasNonASCIIName NOTIFICATION-TYPE
  2380. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2381. STATUS current
  2382. DESCRIPTION "Check if any VMs have non-ASCII names."
  2383. ::= { nutanix 1203 }
  2384.  
  2385. ntxTrapFanSpeedLow NOTIFICATION-TYPE
  2386. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2387. STATUS current
  2388. DESCRIPTION "Check that fan speed is not low."
  2389. ::= { nutanix 1204 }
  2390.  
  2391. ntxTrapFanSpeedHigh NOTIFICATION-TYPE
  2392. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2393. STATUS current
  2394. DESCRIPTION "Check that fan speed is not too high."
  2395. ::= { nutanix 1205 }
  2396.  
  2397. ntxTrapRAMFault NOTIFICATION-TYPE
  2398. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2399. STATUS current
  2400. DESCRIPTION "Check if current available memory has gone below the installed size."
  2401. ::= { nutanix 1206 }
  2402.  
  2403. ntxTrapPowerSupplyDown NOTIFICATION-TYPE
  2404. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2405. STATUS current
  2406. DESCRIPTION "Check that Power supply has no errors."
  2407. ::= { nutanix 1207 }
  2408.  
  2409. ntxTrapCPUTemperatureHigh NOTIFICATION-TYPE
  2410. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2411. STATUS current
  2412. DESCRIPTION "Check that cpu temperature is not too high."
  2413. ::= { nutanix 1208 }
  2414.  
  2415. ntxTrapCPUTemperatureReadingError NOTIFICATION-TYPE
  2416. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2417. STATUS current
  2418. DESCRIPTION "Check that CPU temperature can be fetched."
  2419. ::= { nutanix 1209 }
  2420.  
  2421. ntxTrapCPUVoltageAbnormal NOTIFICATION-TYPE
  2422. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2423. STATUS current
  2424. DESCRIPTION "Check that CPU voltage is within normal range."
  2425. ::= { nutanix 1210 }
  2426.  
  2427. ntxTrapCPUVRMTemperatureHigh NOTIFICATION-TYPE
  2428. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2429. STATUS current
  2430. DESCRIPTION "Check that CPU-VRM temperature is not too high."
  2431. ::= { nutanix 1211 }
  2432.  
  2433. ntxTrapRAMTemperatureHigh NOTIFICATION-TYPE
  2434. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2435. STATUS current
  2436. DESCRIPTION "Check that DIMM temperature is not high."
  2437. ::= { nutanix 1212 }
  2438.  
  2439. ntxTrapRAMVoltageAbnormal NOTIFICATION-TYPE
  2440. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2441. STATUS current
  2442. DESCRIPTION "Check that DIMM voltage is within normal range."
  2443. ::= { nutanix 1213 }
  2444.  
  2445. ntxTrapRAMVRMTemperatureHigh NOTIFICATION-TYPE
  2446. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2447. STATUS current
  2448. DESCRIPTION "Check that DIMM-VRM temperature is not high."
  2449. ::= { nutanix 1214 }
  2450.  
  2451. ntxTrapSystemTemperatureHigh NOTIFICATION-TYPE
  2452. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2453. STATUS current
  2454. DESCRIPTION "Check that system temperature is not high."
  2455. ::= { nutanix 1215 }
  2456.  
  2457. ntxTrapGPUTemperatureHigh NOTIFICATION-TYPE
  2458. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2459. STATUS current
  2460. DESCRIPTION "Check that gpu temperature is not high."
  2461. ::= { nutanix 1216 }
  2462.  
  2463. ntxTrapIPMIError NOTIFICATION-TYPE
  2464. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2465. STATUS current
  2466. DESCRIPTION "Checks whether IPMI SDR has failures."
  2467. ::= { nutanix 1217 }
  2468.  
  2469. ntxTrapGPUFault NOTIFICATION-TYPE
  2470. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2471. STATUS current
  2472. DESCRIPTION "Check that GPU have not faulted."
  2473. ::= { nutanix 1218 }
  2474.  
  2475. ntxTrapHighNumberOfCorrectableECCErrorsInLast1Day NOTIFICATION-TYPE
  2476. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2477. STATUS current
  2478. DESCRIPTION "Check for number of correctable ECC errors for last one day in the IPMI system event log."
  2479. ::= { nutanix 1219 }
  2480.  
  2481. ntxTrapHighNumberOfCorrectableECCErrorsInLast10Days NOTIFICATION-TYPE
  2482. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2483. STATUS current
  2484. DESCRIPTION "Check for number of correctable ECC errors for last 10 days in the IPMI system event log."
  2485. ::= { nutanix 1220 }
  2486.  
  2487. ntxTrapLicenseExpiry NOTIFICATION-TYPE
  2488. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2489. STATUS current
  2490. DESCRIPTION "Check if license is about to expire."
  2491. ::= { nutanix 1221 }
  2492.  
  2493. ntxTrapLicenseFeatureViolation NOTIFICATION-TYPE
  2494. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2495. STATUS current
  2496. DESCRIPTION "Check license feature complaince."
  2497. ::= { nutanix 1222 }
  2498.  
  2499. ntxTrapLicenseStandbyMode NOTIFICATION-TYPE
  2500. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2501. STATUS current
  2502. DESCRIPTION "Check license standby mode."
  2503. ::= { nutanix 1223 }
  2504.  
  2505. ntxTrapLicenseNodeInvalid NOTIFICATION-TYPE
  2506. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2507. STATUS current
  2508. DESCRIPTION "Check if all nodes have valid licenses."
  2509. ::= { nutanix 1224 }
  2510.  
  2511. ntxTrapSecondaryPDsNotInSync NOTIFICATION-TYPE
  2512. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2513. STATUS current
  2514. DESCRIPTION "Check if secondary metro PD is in sync with primary."
  2515. ::= { nutanix 1225 }
  2516.  
  2517. ntxTrapNoCheckpointSnapshotsOnMetroPDInLastHour NOTIFICATION-TYPE
  2518. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2519. STATUS current
  2520. DESCRIPTION "Check that Metro PDs have associated checkpoint snapshots."
  2521. ::= { nutanix 1226 }
  2522.  
  2523. ntxTrapCVMTimeDifferenceHigh NOTIFICATION-TYPE
  2524. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2525. STATUS current
  2526. DESCRIPTION "Check that the time drift between CVMs is less than time_drift_threshold_sec."
  2527. ::= { nutanix 1227 }
  2528.  
  2529. ntxTrapIPMIIPNotReachable NOTIFICATION-TYPE
  2530. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2531. STATUS current
  2532. DESCRIPTION "Check that all ipmi ips are pingable from local SVM."
  2533. ::= { nutanix 1228 }
  2534.  
  2535. ntxTrapHostIPNotReachable NOTIFICATION-TYPE
  2536. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2537. STATUS current
  2538. DESCRIPTION "Check that all host ips are pingable from local SVM."
  2539. ::= { nutanix 1229 }
  2540.  
  2541. ntxTrapCVMNICSpeedLow NOTIFICATION-TYPE
  2542. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2543. STATUS current
  2544. DESCRIPTION "Checks whether CVM is uplinked to 10 GbE NIC."
  2545. ::= { nutanix 1230 }
  2546.  
  2547. ntxTrapCVMNotUplinkedToActive10GbpsLink NOTIFICATION-TYPE
  2548. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2549. STATUS current
  2550. DESCRIPTION "Check that CVM uplinked to active 10Gbps link."
  2551. ::= { nutanix 1231 }
  2552.  
  2553. ntxTrapNICErrorRateHigh NOTIFICATION-TYPE
  2554. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2555. STATUS current
  2556. DESCRIPTION "Check that each NIC has fewer than nic_error_threshold errors during span of execution (3600 seconds)."
  2557. ::= { nutanix 1232 }
  2558.  
  2559. ntxTrapCVMHostSubnetMismatch NOTIFICATION-TYPE
  2560. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2561. STATUS current
  2562. DESCRIPTION "Checks that host and cvm share the same subnet."
  2563. ::= { nutanix 1233 }
  2564.  
  2565. ntxTrapNICLinkDown NOTIFICATION-TYPE
  2566. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2567. STATUS current
  2568. DESCRIPTION "Checks whether any nic is down."
  2569. ::= { nutanix 1234 }
  2570.  
  2571. ntxTrapCVMIPAddressMismatch NOTIFICATION-TYPE
  2572. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2573. STATUS current
  2574. DESCRIPTION "Checks that cvm IP address is in sync with zeus configuration."
  2575. ::= { nutanix 1235 }
  2576.  
  2577. ntxTrapZeusConfigMismatch NOTIFICATION-TYPE
  2578. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2579. STATUS current
  2580. DESCRIPTION "Checks that hypervisor IP address is in sync with zeus configuration."
  2581. ::= { nutanix 1236 }
  2582.  
  2583. ntxTrapIPMIIPAddressMismatch NOTIFICATION-TYPE
  2584. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2585. STATUS current
  2586. DESCRIPTION "Checks that IPMI IP address is in sync with zeus configuration."
  2587. ::= { nutanix 1237 }
  2588.  
  2589. ntxTrapJumboFramesEnabled NOTIFICATION-TYPE
  2590. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2591. STATUS current
  2592. DESCRIPTION "Check MTU of the CVM network interfaces."
  2593. ::= { nutanix 1238 }
  2594.  
  2595. ntxTrapNICFlaps NOTIFICATION-TYPE
  2596. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2597. STATUS current
  2598. DESCRIPTION "Check that all nics have no flapping."
  2599. ::= { nutanix 1239 }
  2600.  
  2601. ntxTrapIncorrectNTPConfiguration NOTIFICATION-TYPE
  2602. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2603. STATUS current
  2604. DESCRIPTION "Check that NTP is configured properly on CVM/Hypervisor."
  2605. ::= { nutanix 1240 }
  2606.  
  2607. ntxTrapCVMIsUnreachable NOTIFICATION-TYPE
  2608. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2609. STATUS current
  2610. DESCRIPTION "Check that all CVMs are reachable via ping."
  2611. ::= { nutanix 1241 }
  2612.  
  2613. ntxTrapNGTInstallationRequired NOTIFICATION-TYPE
  2614. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2615. STATUS current
  2616. DESCRIPTION "Some VMs in protection domain replicating to cross-hypervisor remote site do not have NGT installed."
  2617. ::= { nutanix 1242 }
  2618.  
  2619. ntxTrapTooManyFilesInTheProtectionDomain NOTIFICATION-TYPE
  2620. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2621. STATUS current
  2622. DESCRIPTION "Checks if too many files are being protected by any Metro/Vstore protection domain."
  2623. ::= { nutanix 1243 }
  2624.  
  2625. ntxTrapTooManyFilesInTheConsistencyGroup NOTIFICATION-TYPE
  2626. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2627. STATUS current
  2628. DESCRIPTION "Checks if too many files are being protected by a single consistency group of any Metro/Vstore protection domain."
  2629. ::= { nutanix 1244 }
  2630.  
  2631. ntxTrapFoundOldClonesOnCluster NOTIFICATION-TYPE
  2632. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2633. STATUS current
  2634. DESCRIPTION "Check for any clones restored from protection domain snapshots that are too old."
  2635. ::= { nutanix 1245 }
  2636.  
  2637. ntxTrapTooManyClonesOnCluster NOTIFICATION-TYPE
  2638. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2639. STATUS current
  2640. DESCRIPTION "Check if there are too many clones restored from protection domain snapshots."
  2641. ::= { nutanix 1246 }
  2642.  
  2643. ntxTrapProtectingVMsThatAreUsingSharedVHDXDisksIsUnsupported NOTIFICATION-TYPE
  2644. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2645. STATUS current
  2646. DESCRIPTION "Check if VMs with shared VHDX disks are not part of any protection domain."
  2647. ::= { nutanix 1247 }
  2648.  
  2649. ntxTrapSymlinksFoundOnMetrovstoreProtectedContainer NOTIFICATION-TYPE
  2650. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2651. STATUS current
  2652. DESCRIPTION "Check for symlinks in metro/vstore protection domain."
  2653. ::= { nutanix 1248 }
  2654.  
  2655. ntxTrapAgedThirdpartyBackupSnapshotsPresent NOTIFICATION-TYPE
  2656. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2657. STATUS current
  2658. DESCRIPTION "Check for aged third-party backup snapshots."
  2659. ::= { nutanix 1249 }
  2660.  
  2661. ntxTrapProtectionDomainContainsMoreThanOneEntity NOTIFICATION-TYPE
  2662. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2663. STATUS current
  2664. DESCRIPTION "Check if protection domains being replicated to backup site contain more than one entity."
  2665. ::= { nutanix 1250 }
  2666.  
  2667. ntxTrapRemoteSiteConnectivityNotNormal NOTIFICATION-TYPE
  2668. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2669. STATUS current
  2670. DESCRIPTION "Check if connectivity to remote sites is normal."
  2671. ::= { nutanix 1251 }
  2672.  
  2673. ntxTrapCPUAverageLoadHighOnControllerVM NOTIFICATION-TYPE
  2674. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2675. STATUS current
  2676. DESCRIPTION "Verify system load average for the past 5 minutes is below cvm_load_average_threshold."
  2677. ::= { nutanix 1252 }
  2678.  
  2679. ntxTrapCPUAverageLoadCriticallyHighOnControllerVM NOTIFICATION-TYPE
  2680. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2681. STATUS current
  2682. DESCRIPTION "Verify system load average for the past 5 minutes is below cvm_load_average_threshold_critical."
  2683. ::= { nutanix 1253 }
  2684.  
  2685. ntxTrapControllerVMCertificateExpiring NOTIFICATION-TYPE
  2686. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2687. STATUS current
  2688. DESCRIPTION "Check if node certificates are about to expire."
  2689. ::= { nutanix 1254 }
  2690.  
  2691. ntxTrapClusterCertificateExpiring NOTIFICATION-TYPE
  2692. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2693. STATUS current
  2694. DESCRIPTION "Check if CA certificates are about to expire."
  2695. ::= { nutanix 1255 }
  2696.  
  2697. ntxTrapRemoteSiteInsecure NOTIFICATION-TYPE
  2698. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2699. STATUS current
  2700. DESCRIPTION "Check if Remote site contains encrypted drives if the local site does."
  2701. ::= { nutanix 1256 }
  2702.  
  2703. ntxTrapMixedSelfEncryptingDriveHardware NOTIFICATION-TYPE
  2704. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2705. STATUS current
  2706. DESCRIPTION "Cluster with self-encrypting drives has non-self encrypting drives installed."
  2707. ::= { nutanix 1257 }
  2708.  
  2709. ntxTrapKeyManagementServerUnavailable NOTIFICATION-TYPE
  2710. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2711. STATUS current
  2712. DESCRIPTION "Check Key Management Server is available."
  2713. ::= { nutanix 1258 }
  2714.  
  2715. ntxTrapNumberOfOrphanedEgroupsIsOverTheRecommendedThreshold NOTIFICATION-TYPE
  2716. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2717. STATUS current
  2718. DESCRIPTION "Check that the number of orphaned egroups are below the recommended threshold."
  2719. ::= { nutanix 1259 }
  2720.  
  2721. ntxTrapCVMRAMUsageHigh NOTIFICATION-TYPE
  2722. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2723. STATUS current
  2724. DESCRIPTION "Check that CVM memory usage is not high."
  2725. ::= { nutanix 1260 }
  2726.  
  2727. ntxTrapClusterServicesAreDown NOTIFICATION-TYPE
  2728. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2729. STATUS current
  2730. DESCRIPTION "Check that no services are down in the cluster."
  2731. ::= { nutanix 1261 }
  2732.  
  2733. ntxTrapKernelMemoryUsageHigh NOTIFICATION-TYPE
  2734. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2735. STATUS current
  2736. DESCRIPTION "Checks whether CVM's kernel memory usage is higher than expected."
  2737. ::= { nutanix 1262 }
  2738.  
  2739. ntxTrapCVMServicesRestartingFrequently NOTIFICATION-TYPE
  2740. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2741. STATUS current
  2742. DESCRIPTION "Check if services have restarted recently in the Controller VM."
  2743. ::= { nutanix 1263 }
  2744.  
  2745. ntxTrapClusterServiceRestartingFrequently NOTIFICATION-TYPE
  2746. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2747. STATUS current
  2748. DESCRIPTION "Check if services have restarted recently across the cluster."
  2749. ::= { nutanix 1264 }
  2750.  
  2751. ntxTrapCVMConnectivityFailure NOTIFICATION-TYPE
  2752. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2753. STATUS current
  2754. DESCRIPTION "Check that SVM has passwordless connection to each other."
  2755. ::= { nutanix 1265 }
  2756.  
  2757. ntxTrapStorageContainerReplicationFactorLow NOTIFICATION-TYPE
  2758. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2759. STATUS current
  2760. DESCRIPTION "Check that the Storage Container region replication factor is not low."
  2761. ::= { nutanix 1266 }
  2762.  
  2763. ntxTrapCVMRebooted NOTIFICATION-TYPE
  2764. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2765. STATUS current
  2766. DESCRIPTION "Check that Cvm is not rebooted recently."
  2767. ::= { nutanix 1267 }
  2768.  
  2769. ntxTrapRemoteSupportEnabled NOTIFICATION-TYPE
  2770. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2771. STATUS current
  2772. DESCRIPTION "Checks if remote support tunnel to Nutanix HQ is enabled on this cluster."
  2773. ::= { nutanix 1268 }
  2774.  
  2775. ntxTrapDatastoreVMCountHigh NOTIFICATION-TYPE
  2776. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2777. STATUS current
  2778. DESCRIPTION "Checks for high VM count on datastores."
  2779. ::= { nutanix 1269 }
  2780.  
  2781. ntxTrapHighVDiskCountInTheCluster NOTIFICATION-TYPE
  2782. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2783. STATUS current
  2784. DESCRIPTION "Checks for high vDisk count in the cluster."
  2785. ::= { nutanix 1270 }
  2786.  
  2787. ntxTrapAllFlashNodesMixedWithNonallflashNodes NOTIFICATION-TYPE
  2788. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2789. STATUS current
  2790. DESCRIPTION "Checks that all-flash nodes do not coexist with non-all-flash nodes in a cluster."
  2791. ::= { nutanix 1271 }
  2792.  
  2793. ntxTrapHaswellAndBroadwellCPUsAreInTheSameChassis NOTIFICATION-TYPE
  2794. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2795. STATUS current
  2796. DESCRIPTION "Checks whether CPUs within a chassis are of the same type."
  2797. ::= { nutanix 1272 }
  2798.  
  2799. ntxTrapTimeSinceLastCuratorScanIsBeyondThreshold NOTIFICATION-TYPE
  2800. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2801. STATUS current
  2802. DESCRIPTION "Check if time since last Curator Scan is beyond threshold."
  2803. ::= { nutanix 1273 }
  2804.  
  2805. ntxTrapSnapshotChainHeightExceedsThreshold NOTIFICATION-TYPE
  2806. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2807. STATUS current
  2808. DESCRIPTION "Check that snapshot chain height is less than 25."
  2809. ::= { nutanix 1274 }
  2810.  
  2811. ntxTrapDIMMsOfDifferentTypesInOneMemoryChannel NOTIFICATION-TYPE
  2812. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2813. STATUS current
  2814. DESCRIPTION "DIMMs Interoperability Check."
  2815. ::= { nutanix 1275 }
  2816.  
  2817. ntxTrapZookeeperNotActiveOnAllCVMs NOTIFICATION-TYPE
  2818. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2819. STATUS current
  2820. DESCRIPTION "Checks if number of active zookeepers is equal to the total number of zookeeper CVMs."
  2821. ::= { nutanix 1276 }
  2822.  
  2823. ntxTrapM60GPUConfigurationWrongOnTheNode NOTIFICATION-TYPE
  2824. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2825. STATUS current
  2826. DESCRIPTION "Check number of M60 GPUs on a node."
  2827. ::= { nutanix 1277 }
  2828.  
  2829. ntxTrapM10GPUConfigurationWrongOnTheNode NOTIFICATION-TYPE
  2830. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2831. STATUS current
  2832. DESCRIPTION "Check number of M10 GPUs on a node."
  2833. ::= { nutanix 1278 }
  2834.  
  2835. ntxTrapM10AndM60GPUsInstalledOnTheSameNode NOTIFICATION-TYPE
  2836. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2837. STATUS current
  2838. DESCRIPTION "Check if M10 and M60 GPUs installed on the same node."
  2839. ::= { nutanix 1279 }
  2840.  
  2841. ntxTrapPCVCPUAvailabilityCheck NOTIFICATION-TYPE
  2842. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2843. STATUS current
  2844. DESCRIPTION "Checks if the number of vCPUs is sufficient for the number of VM entities in Prism Central."
  2845. ::= { nutanix 1280 }
  2846.  
  2847. ntxTrapPCSufficientDiskSpaceCheck NOTIFICATION-TYPE
  2848. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2849. STATUS current
  2850. DESCRIPTION "Checks if the amount of storage is sufficient for the number of VM entities in Prism Central."
  2851. ::= { nutanix 1281 }
  2852.  
  2853. ntxTrapPCMemoryAvailabilityCheck NOTIFICATION-TYPE
  2854. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2855. STATUS current
  2856. DESCRIPTION "Checks if the amount of memory is sufficient for the number of VM entities in Prism Central."
  2857. ::= { nutanix 1282 }
  2858.  
  2859. ntxTrapPCVMLimitCheck NOTIFICATION-TYPE
  2860. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2861. STATUS current
  2862. DESCRIPTION "Checks if the number of VM entities is within the limit."
  2863. ::= { nutanix 1283 }
  2864.  
  2865. ntxTrapStoragePoolSpaceUsageExceeded NOTIFICATION-TYPE
  2866. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2867. STATUS current
  2868. DESCRIPTION "Check high space usage on storagepools."
  2869. ::= { nutanix 1284 }
  2870.  
  2871. ntxTrapDiskInodeUsageHigh NOTIFICATION-TYPE
  2872. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2873. STATUS current
  2874. DESCRIPTION "Check that current inode usage is above inode_usage_threshold_pct."
  2875. ::= { nutanix 1285 }
  2876.  
  2877. ntxTrapDiskUnused NOTIFICATION-TYPE
  2878. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2879. STATUS current
  2880. DESCRIPTION "Check that if some disk is not part of any storage pool."
  2881. ::= { nutanix 1286 }
  2882.  
  2883. ntxTrapFusionIOWearHigh NOTIFICATION-TYPE
  2884. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2885. STATUS current
  2886. DESCRIPTION "Checks whether fusion io drive has worn out beyond write limit."
  2887. ::= { nutanix 1287 }
  2888.  
  2889. ntxTrapFusionIOTemperatureHigh NOTIFICATION-TYPE
  2890. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2891. STATUS current
  2892. DESCRIPTION "Checks whether temperature exceeded on fusion-io drive."
  2893. ::= { nutanix 1288 }
  2894.  
  2895. ntxTrapFusionIOReserveLow NOTIFICATION-TYPE
  2896. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2897. STATUS current
  2898. DESCRIPTION "Checks whether fusion io reserves are down."
  2899. ::= { nutanix 1289 }
  2900.  
  2901. ntxTrapFusionIODiskFailed NOTIFICATION-TYPE
  2902. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2903. STATUS current
  2904. DESCRIPTION "Checks whether fusion-io drive has failed."
  2905. ::= { nutanix 1290 }
  2906.  
  2907. ntxTrapStorageContainerSpaceUsageExceededNCCCheck NOTIFICATION-TYPE
  2908. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2909. STATUS current
  2910. DESCRIPTION "Check high space usage on Storage Containers."
  2911. ::= { nutanix 1291 }
  2912.  
  2913. ntxTrapDataDiskSpaceUsageHigh NOTIFICATION-TYPE
  2914. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2915. STATUS current
  2916. DESCRIPTION "Check that current amount of disk usage is above disk_usage_threshold_pct."
  2917. ::= { nutanix 1292 }
  2918.  
  2919. ntxTrapSystemPartitionsSpaceUsageHigh NOTIFICATION-TYPE
  2920. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2921. STATUS current
  2922. DESCRIPTION "Check that current amount of disk usage is above home_nutanix_usage_threshold_pct."
  2923. ::= { nutanix 1293 }
  2924.  
  2925. ntxTrapStorageDeviceHealthBad NOTIFICATION-TYPE
  2926. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2927. STATUS current
  2928. DESCRIPTION "Smartctl health bad."
  2929. ::= { nutanix 1294 }
  2930.  
  2931. ntxTrapIntelSSDWearHigh NOTIFICATION-TYPE
  2932. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2933. STATUS current
  2934. DESCRIPTION "Check for wear out on Intel PCIe SSDs."
  2935. ::= { nutanix 1295 }
  2936.  
  2937. ntxTrapIntelSSDTemperatureHigh NOTIFICATION-TYPE
  2938. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2939. STATUS current
  2940. DESCRIPTION "Check the temperature on Intel PCIe SSDs."
  2941. ::= { nutanix 1296 }
  2942.  
  2943. ntxTrapCVMBootRaidDegraded NOTIFICATION-TYPE
  2944. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2945. STATUS current
  2946. DESCRIPTION "Check the health of boot RAID volumes."
  2947. ::= { nutanix 1297 }
  2948.  
  2949. ntxTrapAbnormalHostBootRAIDState NOTIFICATION-TYPE
  2950. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2951. STATUS current
  2952. DESCRIPTION "Check the health of boot RAID volumes."
  2953. ::= { nutanix 1298 }
  2954.  
  2955. ntxTrapHypervisorDiskSpaceUsageHigh NOTIFICATION-TYPE
  2956. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2957. STATUS current
  2958. DESCRIPTION "Checks that host disk usage is not high."
  2959. ::= { nutanix 1299 }
  2960.  
  2961. ntxTrapInvalidDriveConfiguration NOTIFICATION-TYPE
  2962. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2963. STATUS current
  2964. DESCRIPTION "Checks whether combination of SSDs and HDDs is valid."
  2965. ::= { nutanix 1300 }
  2966.  
  2967. ntxTrapSATADOMHasFailed NOTIFICATION-TYPE
  2968. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2969. STATUS current
  2970. DESCRIPTION "Checks that host SATA DOM is functioning."
  2971. ::= { nutanix 1301 }
  2972.  
  2973. ntxTrapSATADOMNotReachable NOTIFICATION-TYPE
  2974. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2975. STATUS current
  2976. DESCRIPTION "Checks that host SATA DOM is reachable."
  2977. ::= { nutanix 1302 }
  2978.  
  2979. ntxTrapSATADOMHasWornOut NOTIFICATION-TYPE
  2980. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2981. STATUS current
  2982. DESCRIPTION "Checks the wearout of SATA DOM via SMART data."
  2983. ::= { nutanix 1303 }
  2984.  
  2985. ntxTrapSATADOMSL3IE3HasHighWear NOTIFICATION-TYPE
  2986. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2987. STATUS current
  2988. DESCRIPTION "Checks the wearout of SATADOM-SL 3IE3 via SMART data."
  2989. ::= { nutanix 1304 }
  2990.  
  2991. ntxTrapSATADOMNeedsFirmwareVersionUpgradeToS170119 NOTIFICATION-TYPE
  2992. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2993. STATUS current
  2994. DESCRIPTION "Checks the firmware version of SATA DOM."
  2995. ::= { nutanix 1305 }
  2996.  
  2997. ntxTrapmodelFirmwareVersionIsNotTheLatestFirmwareVersion NOTIFICATION-TYPE
  2998. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  2999. STATUS current
  3000. DESCRIPTION "Checks the firmware version of SATA DOM."
  3001. ::= { nutanix 1306 }
  3002.  
  3003. ntxTrapSATADOMHasGuestVM NOTIFICATION-TYPE
  3004. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3005. STATUS current
  3006. DESCRIPTION "Checks that no guest VM is installed on SATA DOM."
  3007. ::= { nutanix 1307 }
  3008.  
  3009. ntxTrapSASConnectivityNotNormal NOTIFICATION-TYPE
  3010. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3011. STATUS current
  3012. DESCRIPTION "Check SAS connectivity."
  3013. ::= { nutanix 1308 }
  3014.  
  3015. ntxTrapSamsungPM1633DriveHasWornOut NOTIFICATION-TYPE
  3016. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3017. STATUS current
  3018. DESCRIPTION "Checks the status of Samsung PM1633 drive via SMART data."
  3019. ::= { nutanix 1309 }
  3020.  
  3021. ntxTrapToshibaPM3DriveHasWornOut NOTIFICATION-TYPE
  3022. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3023. STATUS current
  3024. DESCRIPTION "Checks the status of Toshiba PM3 drive via SMART data."
  3025. ::= { nutanix 1310 }
  3026.  
  3027. ntxTrapToshibaPM4DriveHasWornOut NOTIFICATION-TYPE
  3028. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3029. STATUS current
  3030. DESCRIPTION "Check the status of Toshiba PM4 drive."
  3031. ::= { nutanix 1311 }
  3032.  
  3033. ntxTrapSM863DriveHasWornOut NOTIFICATION-TYPE
  3034. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3035. STATUS current
  3036. DESCRIPTION "Check the status of SM863 and SM863a SSD drive."
  3037. ::= { nutanix 1312 }
  3038.  
  3039. ntxTrapMicron5100DriveHasWornOut NOTIFICATION-TYPE
  3040. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3041. STATUS current
  3042. DESCRIPTION "Check the status of Micron5100 SSD drive."
  3043. ::= { nutanix 1313 }
  3044.  
  3045. ntxTrapIntelSSDS3610OnipaddressHasConfigurationProblems NOTIFICATION-TYPE
  3046. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3047. STATUS current
  3048. DESCRIPTION "Check if node has supported configuration for Intel SSD S3610."
  3049. ::= { nutanix 1314 }
  3050.  
  3051. ntxTrapOfflineDiskInACluster NOTIFICATION-TYPE
  3052. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3053. STATUS current
  3054. DESCRIPTION "Check for the offline disks."
  3055. ::= { nutanix 1315 }
  3056.  
  3057. ntxTrapNVMeDriveHasErrors NOTIFICATION-TYPE
  3058. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3059. STATUS current
  3060. DESCRIPTION "Check that host NVMe drive is functioning properly."
  3061. ::= { nutanix 1316 }
  3062.  
  3063. ntxTrapHypervisorBootDriveWearHigh NOTIFICATION-TYPE
  3064. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3065. STATUS current
  3066. DESCRIPTION "Check Hyve boot disk status."
  3067. ::= { nutanix 1317 }
  3068.  
  3069. ntxTrapVMIsProtectedInMultiplePDs NOTIFICATION-TYPE
  3070. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3071. STATUS current
  3072. DESCRIPTION "VMs are protected in multiple Protection Domains."
  3073. ::= { nutanix 1318 }
  3074.  
  3075. ntxTrapProtectedVMsNotOnNutanixStorage NOTIFICATION-TYPE
  3076. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3077. STATUS current
  3078. DESCRIPTION "Protected VMs have invalid storage configuration."
  3079. ::= { nutanix 1319 }
  3080.  
  3081. ntxTrapClusterConnectivityStatus NOTIFICATION-TYPE
  3082. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3083. STATUS current
  3084. DESCRIPTION "Tests whether the cluster connectivity is fine."
  3085. ::= { nutanix 1320 }
  3086.  
  3087. ntxTrapHighGarbageDueToErasureCoding NOTIFICATION-TYPE
  3088. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3089. STATUS current
  3090. DESCRIPTION "Checks if erasure coding garbage is below a safe threshold."
  3091. ::= { nutanix 1321 }
  3092.  
  3093. ntxTrapA1175 NOTIFICATION-TYPE
  3094. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3095. STATUS current
  3096. DESCRIPTION "Checks erasure coding is enabled on cluster with version < 4.5.2."
  3097. ::= { nutanix 1322 }
  3098.  
  3099. ntxTrapInvalidErasureCodeDelayParameter NOTIFICATION-TYPE
  3100. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3101. STATUS current
  3102. DESCRIPTION "Validate the EC param value for erasure-code-delay."
  3103. ::= { nutanix 1323 }
  3104.  
  3105. ntxTrapFlashModeConfigurationHasExceededTheThresholdLimit NOTIFICATION-TYPE
  3106. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3107. STATUS current
  3108. DESCRIPTION "Check the total configured size of flash-mode-enabled vDisks with respect to the threshold limit."
  3109. ::= { nutanix 1324 }
  3110.  
  3111. ntxTrapFlashModeUsageLimitExceeded NOTIFICATION-TYPE
  3112. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3113. STATUS current
  3114. DESCRIPTION "Check the amount of usage by flash-mode-enabled vDisks with respect to the threshold limit."
  3115. ::= { nutanix 1325 }
  3116.  
  3117. ntxTrapFlashmodeenabledVMPowerStatus NOTIFICATION-TYPE
  3118. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3119. STATUS current
  3120. DESCRIPTION "Check if any flash-mode-enabled VMs are Powered Off."
  3121. ::= { nutanix 1326 }
  3122.  
  3123. ntxTrapStoragePoolFlashModeConfiguration NOTIFICATION-TYPE
  3124. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3125. STATUS current
  3126. DESCRIPTION "Flash Mode is not supported when multiple storage pools are in use."
  3127. ::= { nutanix 1327 }
  3128.  
  3129. ntxTrapTestNotificationTitle NOTIFICATION-TYPE
  3130. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3131. STATUS current
  3132. DESCRIPTION "Test Notification."
  3133. ::= { nutanix 1328 }
  3134.  
  3135. ntxTrapIncompatibleFileServer NOTIFICATION-TYPE
  3136. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3137. STATUS current
  3138. DESCRIPTION "File Server version incompatible with AOS."
  3139. ::= { nutanix 1329 }
  3140.  
  3141. ntxTrapA1202 NOTIFICATION-TYPE
  3142. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3143. STATUS current
  3144. DESCRIPTION "Check the compatibility of Samsung PM1633 drives with NOS and Foundation versions."
  3145. ::= { nutanix 1330 }
  3146.  
  3147. ntxTrapFirmwareVersionOfSamsungPM1633DrivesIsOld NOTIFICATION-TYPE
  3148. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3149. STATUS current
  3150. DESCRIPTION "Check the firmware of Samsung PM1633 drives."
  3151. ::= { nutanix 1331 }
  3152.  
  3153. ntxTrapMoreThanOneTypeOfToshibaPM4DrivesInstalledOnTheNode NOTIFICATION-TYPE
  3154. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3155. STATUS current
  3156. DESCRIPTION "Check the Configuration of Toshiba PM4 drives."
  3157. ::= { nutanix 1332 }
  3158.  
  3159. ntxTrapA1200 NOTIFICATION-TYPE
  3160. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3161. STATUS current
  3162. DESCRIPTION "Check the compatibility of Toshiba PM4 drives with NOS and Foundation versions."
  3163. ::= { nutanix 1333 }
  3164.  
  3165. ntxTrapFirmwareVersionOfToshibaPM4DrivesIsOld NOTIFICATION-TYPE
  3166. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3167. STATUS current
  3168. DESCRIPTION "Check the firmware of Toshiba PM4 drives."
  3169. ::= { nutanix 1334 }
  3170.  
  3171. ntxTrapFirmwareVersionOfSM863DrivesIsOld NOTIFICATION-TYPE
  3172. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3173. STATUS current
  3174. DESCRIPTION "Check the firmware of SM863 or SM863a drives."
  3175. ::= { nutanix 1335 }
  3176.  
  3177. ntxTrapFewerThanTwoNonSamsungPM863aDrivesInstalledOnTheNode NOTIFICATION-TYPE
  3178. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3179. STATUS current
  3180. DESCRIPTION "Check the types of disk drives on a node that has PM863a drives installed."
  3181. ::= { nutanix 1336 }
  3182.  
  3183. ntxTrapFirmwareVersionOfPM863aDrivesIsOld NOTIFICATION-TYPE
  3184. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3185. STATUS current
  3186. DESCRIPTION "Check firmware of PM863a drives."
  3187. ::= { nutanix 1337 }
  3188.  
  3189. ntxTrapPM863aDriveHasWornOut NOTIFICATION-TYPE
  3190. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3191. STATUS current
  3192. DESCRIPTION "Check the status of PM863a SSD."
  3193. ::= { nutanix 1338 }
  3194.  
  3195. ntxTrapOfflineDiskInCluster NOTIFICATION-TYPE
  3196. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3197. STATUS current
  3198. DESCRIPTION "Check for offline disks."
  3199. ::= { nutanix 1339 }
  3200.  
  3201. ntxTrapMetadataDisksNotMountedOnCVM NOTIFICATION-TYPE
  3202. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3203. STATUS current
  3204. DESCRIPTION "Check that all metadata disks are mounted."
  3205. ::= { nutanix 1340 }
  3206.  
  3207. ntxTrapFileServerUpgradeTaskIsNotProgressing NOTIFICATION-TYPE
  3208. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3209. STATUS current
  3210. DESCRIPTION "Check that file server task is progressing."
  3211. ::= { nutanix 1341 }
  3212.  
  3213. ntxTrapA130129 NOTIFICATION-TYPE
  3214. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3215. STATUS current
  3216. DESCRIPTION "VMs in the standby site of a Metro Availability protection domain are running at suboptimal performance."
  3217. ::= { nutanix 1342 }
  3218.  
  3219. ntxTrapA130118 NOTIFICATION-TYPE
  3220. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3221. STATUS current
  3222. DESCRIPTION "Error in updating failure handling on the remote Metro Availability protection domain."
  3223. ::= { nutanix 1343 }
  3224.  
  3225. ntxTrapFileServerCloneFailed NOTIFICATION-TYPE
  3226. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3227. STATUS current
  3228. DESCRIPTION "File Server Clone Failed."
  3229. ::= { nutanix 1344 }
  3230.  
  3231. ntxTrapFileServerRenameFailed NOTIFICATION-TYPE
  3232. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3233. STATUS current
  3234. DESCRIPTION "File Server Rename Failed."
  3235. ::= { nutanix 1345 }
  3236.  
  3237. ntxTrapA130097 NOTIFICATION-TYPE
  3238. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3239. STATUS current
  3240. DESCRIPTION "Failed to mount ISO image as part of Nutanix Guest Tools reconfiguration for a VM in protection domain."
  3241. ::= { nutanix 1346 }
  3242.  
  3243. ntxTrapA130095 NOTIFICATION-TYPE
  3244. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3245. STATUS current
  3246. DESCRIPTION "Failed to enable Nutanix Guest Tools during VMs recovery for protection domain."
  3247. ::= { nutanix 1347 }
  3248.  
  3249. ntxTrapA130131 NOTIFICATION-TYPE
  3250. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3251. STATUS current
  3252. DESCRIPTION "Snapshot contains entities from the storage container that have deduplication enabled."
  3253. ::= { nutanix 1348 }
  3254.  
  3255. ntxTrapA130137 NOTIFICATION-TYPE
  3256. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3257. STATUS current
  3258. DESCRIPTION "Replication of protection domain has not progressed."
  3259. ::= { nutanix 1349 }
  3260.  
  3261. ntxTrapA106030 NOTIFICATION-TYPE
  3262. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3263. STATUS current
  3264. DESCRIPTION "Check the compatibility of SM863a drives with NOS and Foundation versions."
  3265. ::= { nutanix 1350 }
  3266.  
  3267. ntxTrapA106033 NOTIFICATION-TYPE
  3268. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3269. STATUS current
  3270. DESCRIPTION "Check the compatibility of PM863a drives with AOS and Foundation versions."
  3271. ::= { nutanix 1351 }
  3272.  
  3273. ntxTrapA111047 NOTIFICATION-TYPE
  3274. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3275. STATUS current
  3276. DESCRIPTION "Checks if Mellanox NICs are down or if any Mellanox NIC has speed other than 10GbE or 40GbE. Checks if both 10GbE and 40GbE Mellanox NICs are installed on one node."
  3277. ::= { nutanix 1352 }
  3278.  
  3279. ntxTrapA110219 NOTIFICATION-TYPE
  3280. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3281. STATUS current
  3282. DESCRIPTION "Unsupported number of VMs in Metro/Vstore Protection Domain."
  3283. ::= { nutanix 1353 }
  3284.  
  3285. ntxTrapA110251 NOTIFICATION-TYPE
  3286. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3287. STATUS current
  3288. DESCRIPTION "Replications are scheduled on entitites from the storage containers that have deduplication enabled."
  3289. ::= { nutanix 1354 }
  3290.  
  3291. ntxTrapA111044 NOTIFICATION-TYPE
  3292. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3293. STATUS current
  3294. DESCRIPTION "Check that cluster virtual IP address is part of cluster external subnet."
  3295. ::= { nutanix 1355 }
  3296.  
  3297. ntxTrapMaximumConnectionsLimitReachedOnAFileServerVM NOTIFICATION-TYPE
  3298. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3299. STATUS current
  3300. DESCRIPTION "Maximum connections limit reached on a file server VM."
  3301. ::= { nutanix 1356 }
  3302.  
  3303. ntxTrapFailedToAddOneOrMoreFileServerAdministratorUsersOrGroups NOTIFICATION-TYPE
  3304. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3305. STATUS current
  3306. DESCRIPTION "Failed to add one or more users or groups as file server administrators."
  3307. ::= { nutanix 1357 }
  3308.  
  3309. ntxTrapUserDefinedAlert NOTIFICATION-TYPE
  3310. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3311. STATUS current
  3312. DESCRIPTION "This trap corresponds to any of user defined alerts."
  3313. ::= { nutanix 1358 }
  3314.  
  3315. ntxTrapFileServerNetworkChangeFailed NOTIFICATION-TYPE
  3316. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3317. STATUS current
  3318. DESCRIPTION "File Server Network Change Failed."
  3319. ::= { nutanix 1359 }
  3320.  
  3321. ntxTrapSnapshotCreationDelayed NOTIFICATION-TYPE
  3322. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3323. STATUS current
  3324. DESCRIPTION "Protection domain protection_domain_name has creation of one or more snapshots delayed."
  3325. ::= { nutanix 1360 }
  3326.  
  3327. ntxTrapA130146 NOTIFICATION-TYPE
  3328. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3329. STATUS current
  3330. DESCRIPTION "Protection Domain protection_domain_name will maintain rpo_string RPO until a baseline is established to remote_site remote_name."
  3331. ::= { nutanix 1361 }
  3332.  
  3333. ntxTrapA130143 NOTIFICATION-TYPE
  3334. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3335. STATUS current
  3336. DESCRIPTION "Protection Domain fallback to lower frequency replications to remote."
  3337. ::= { nutanix 1362 }
  3338.  
  3339. ntxTrapA130144 NOTIFICATION-TYPE
  3340. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3341. STATUS current
  3342. DESCRIPTION "Protection Domain transitioning to higher frequency snapshot schedule."
  3343. ::= { nutanix 1363 }
  3344.  
  3345. ntxTrapFoundationVersionsInconsistent NOTIFICATION-TYPE
  3346. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3347. STATUS current
  3348. DESCRIPTION "Check that the Foundation version are correct and consistent."
  3349. ::= { nutanix 1364 }
  3350.  
  3351. ntxTrapMetadataDiskUsageIsHigherThanTheSpecifiedLimit NOTIFICATION-TYPE
  3352. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3353. STATUS current
  3354. DESCRIPTION "Check if metadata disk usage on cloud Controller VM is within the specified limit."
  3355. ::= { nutanix 1365 }
  3356.  
  3357. ntxTrapVolumeGroupSpaceUsageExceeded NOTIFICATION-TYPE
  3358. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3359. STATUS current
  3360. DESCRIPTION "Check high space usage on volume groups."
  3361. ::= { nutanix 1366 }
  3362.  
  3363. ntxTrapVSSContainersHaveHighFileCount NOTIFICATION-TYPE
  3364. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3365. STATUS current
  3366. DESCRIPTION "Check containers file count within limit."
  3367. ::= { nutanix 1367 }
  3368.  
  3369. ntxTrapCVMdestipIsUnreachable NOTIFICATION-TYPE
  3370. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3371. STATUS current
  3372. DESCRIPTION "Check that all CVMs are reachable via ping."
  3373. ::= { nutanix 1368 }
  3374.  
  3375. ntxTrapIncorrectClusterInformationInTheRemoteSite NOTIFICATION-TYPE
  3376. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3377. STATUS current
  3378. DESCRIPTION "Check if the cluster information in remote site is correct."
  3379. ::= { nutanix 1369 }
  3380.  
  3381. ntxTrapProtectionDomainActivationMayFailAsConflictingFilesExist NOTIFICATION-TYPE
  3382. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3383. STATUS current
  3384. DESCRIPTION "Check if any existing file turns into a conflicting state after activating an inactive Protection Domain."
  3385. ::= { nutanix 1370 }
  3386.  
  3387. ntxTrapVNUMAVMPinningFailure NOTIFICATION-TYPE
  3388. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3389. STATUS current
  3390. DESCRIPTION "Cluster was unable to provide requested vNUMA pinning for VM."
  3391. ::= { nutanix 1371 }
  3392.  
  3393. ntxTrapGuestPowerOperationThroughNGTFailed NOTIFICATION-TYPE
  3394. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3395. STATUS current
  3396. DESCRIPTION "Guest Power Operation Failed."
  3397. ::= { nutanix 1372 }
  3398.  
  3399. ntxTrapMellanoxNICNotInstalledOrWithWrongTypeOnHostMachine NOTIFICATION-TYPE
  3400. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3401. STATUS current
  3402. DESCRIPTION "Checks if Mellanox NICs belong to the ConnectX-3 Pro family."
  3403. ::= { nutanix 1373 }
  3404.  
  3405. ntxTrapNonComplianceWithHostAffinityPolicies NOTIFICATION-TYPE
  3406. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3407. STATUS current
  3408. DESCRIPTION "VM not in compliance with the defined affinity policies."
  3409. ::= { nutanix 1374 }
  3410.  
  3411. ntxTrapPolicyNotApplicableToAnyHost NOTIFICATION-TYPE
  3412. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3413. STATUS current
  3414. DESCRIPTION "Policy as defined does not apply to any of the Hosts."
  3415. ::= { nutanix 1375 }
  3416.  
  3417. ntxTrapTheClusterIsNotSynchronizingTimeWithAnyExternalServers NOTIFICATION-TYPE
  3418. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3419. STATUS current
  3420. DESCRIPTION "Checks to ensure that the Controller VM is synchronizing time with an NTP server."
  3421. ::= { nutanix 1376 }
  3422.  
  3423. ntxTrapTheHypervisorIsNotSynchronizingTimeWithAnyExternalServers NOTIFICATION-TYPE
  3424. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3425. STATUS current
  3426. DESCRIPTION "Checks to ensure that the hypervisor is synchronizing time with an NTP server."
  3427. ::= { nutanix 1377 }
  3428.  
  3429. ntxTrapProtectionDomainActivationOrMigrationFailure NOTIFICATION-TYPE
  3430. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3431. STATUS current
  3432. DESCRIPTION "Protection Domain Activation or Migration Failure."
  3433. ::= { nutanix 1378 }
  3434.  
  3435. ntxTrapProtectionDomainContainsMoreThanTheSpecifiedVMs NOTIFICATION-TYPE
  3436. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3437. STATUS current
  3438. DESCRIPTION "Protection domain contains multiple VMs."
  3439. ::= { nutanix 1379 }
  3440.  
  3441. ntxTrapSATADOMML3SEHasHighWear NOTIFICATION-TYPE
  3442. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3443. STATUS current
  3444. DESCRIPTION "Checks the wearout of SATADOM-ML 3SE via SMART data."
  3445. ::= { nutanix 1380 }
  3446.  
  3447. ntxTrapFileServerAntiVirusScanQueueFullOnFSVM NOTIFICATION-TYPE
  3448. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3449. STATUS current
  3450. DESCRIPTION "Antivirus Scan Queue is Full on FSVM."
  3451. ::= { nutanix 1381 }
  3452.  
  3453. ntxTrapFileServerAntiVirusScanQueuePilingUpOnFSVM NOTIFICATION-TYPE
  3454. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3455. STATUS current
  3456. DESCRIPTION "Antivirus Scan Queue is Piling Up on FSVM."
  3457. ::= { nutanix 1382 }
  3458.  
  3459. ntxTrapFileServerAntiVirusExcessiveQuarantinedUnquarantinedFiles NOTIFICATION-TYPE
  3460. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3461. STATUS current
  3462. DESCRIPTION "Excessive Quarantined / Unquarantined Files on File Server."
  3463. ::= { nutanix 1383 }
  3464.  
  3465. ntxTrapA160048 NOTIFICATION-TYPE
  3466. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3467. STATUS current
  3468. DESCRIPTION "Quarantined / Unquarantined Files Limit is Reached on File Server."
  3469. ::= { nutanix 1384 }
  3470.  
  3471. ntxTrapFailedToTakeTheApplicationconsistentSnapshotForTheVM NOTIFICATION-TYPE
  3472. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3473. STATUS current
  3474. DESCRIPTION "Failed to take the application-consistent snapshot for the VM."
  3475. ::= { nutanix 1385 }
  3476.  
  3477. ntxTrapRemovalOfTheTemporaryHypervisorSnapshotFailedForTheVM NOTIFICATION-TYPE
  3478. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3479. STATUS current
  3480. DESCRIPTION "Removal of the temporary hypervisor snapshot that got created while taking the host-based application-consistent snapshot has failed for the VM."
  3481. ::= { nutanix 1386 }
  3482.  
  3483. ntxTrapCloudDiskUsageIsNearingTheThreshold NOTIFICATION-TYPE
  3484. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3485. STATUS current
  3486. DESCRIPTION "Check if the cloud disk usage is within the threshold limit."
  3487. ::= { nutanix 1387 }
  3488.  
  3489. ntxTrapDIMMsHaveInvalidPartNumber NOTIFICATION-TYPE
  3490. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3491. STATUS current
  3492. DESCRIPTION "DIMMs Part Number Check."
  3493. ::= { nutanix 1388 }
  3494.  
  3495. ntxTrapAzureCloudControllerVMHasSmallerDisks NOTIFICATION-TYPE
  3496. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3497. STATUS current
  3498. DESCRIPTION "Verify that the Azure cloud Controller VM has recommended configuration."
  3499. ::= { nutanix 1389 }
  3500.  
  3501. ntxTrapFirmwareVersionOfSM863OrSM863aDrivesIsOld NOTIFICATION-TYPE
  3502. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3503. STATUS current
  3504. DESCRIPTION "Check the firmware of SM863 or SM863a drives."
  3505. ::= { nutanix 1390 }
  3506.  
  3507. ntxTrapM2Micron5100HostBootDriveHasWornOut NOTIFICATION-TYPE
  3508. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3509. STATUS current
  3510. DESCRIPTION "Check the status of M.2 Micron5100 host boot drive."
  3511. ::= { nutanix 1391 }
  3512.  
  3513. ntxTrapM2IntelS3520HostBootDriveHasWornOut NOTIFICATION-TYPE
  3514. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3515. STATUS current
  3516. DESCRIPTION "Check the status of M.2 Intel S3520 host boot drive."
  3517. ::= { nutanix 1392 }
  3518.  
  3519. ntxTrapClusterInOverrideMode NOTIFICATION-TYPE
  3520. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3521. STATUS current
  3522. DESCRIPTION "Single-node cluster is in override mode."
  3523. ::= { nutanix 1393 }
  3524.  
  3525. ntxTrapMultipleVcentersDiscovered NOTIFICATION-TYPE
  3526. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3527. STATUS current
  3528. DESCRIPTION "Multiple vCenter servers discovered."
  3529. ::= { nutanix 1394 }
  3530.  
  3531. ntxTrapProtectionRuleTestAlertTitle NOTIFICATION-TYPE
  3532. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3533. STATUS current
  3534. DESCRIPTION "Test Alert ProtectionRule."
  3535. ::= { nutanix 1395 }
  3536.  
  3537. ntxTrapExternalClientAuthentication NOTIFICATION-TYPE
  3538. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3539. STATUS current
  3540. DESCRIPTION "Checks if any external client is authenticated to the REST API with the admin user."
  3541. ::= { nutanix 1396 }
  3542.  
  3543. ntxTrapTwoNodeClusterStateChangeToclusteroperationmode NOTIFICATION-TYPE
  3544. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3545. STATUS current
  3546. DESCRIPTION "Change in state of two node cluster."
  3547. ::= { nutanix 1397 }
  3548.  
  3549. ntxTrapWitnessIsUnreachableFromNode NOTIFICATION-TYPE
  3550. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3551. STATUS current
  3552. DESCRIPTION "Witness is unreachable, the node may not be able to handle failure."
  3553. ::= { nutanix 1398 }
  3554.  
  3555. ntxTrapTwoNodeClusterChangedStateToStandaloneMode NOTIFICATION-TYPE
  3556. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3557. STATUS current
  3558. DESCRIPTION "One of the nodes in a two node cluster is currently unavailable, the cluster is now operating in stand-alone mode."
  3559. ::= { nutanix 1399 }
  3560.  
  3561. ntxTrapTwoNodeClusterStateChangeTostate NOTIFICATION-TYPE
  3562. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3563. STATUS current
  3564. DESCRIPTION "Change in state of two node cluster."
  3565. ::= { nutanix 1400 }
  3566.  
  3567. ntxTrapTwoNodeClusterStateChangeToStandaloneMode NOTIFICATION-TYPE
  3568. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3569. STATUS current
  3570. DESCRIPTION "Change in state of two node cluster."
  3571. ::= { nutanix 1401 }
  3572.  
  3573. ntxTrapRecoveryPlanExecutionFailed NOTIFICATION-TYPE
  3574. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3575. STATUS current
  3576. DESCRIPTION "Recovery plan execution on recovery_plan_name failed."
  3577. ::= { nutanix 1402 }
  3578.  
  3579. ntxTrapXiPaymentMissed NOTIFICATION-TYPE
  3580. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3581. STATUS current
  3582. DESCRIPTION "Unable to process payment. If this issue persists, you may experience an interruption in service."
  3583. ::= { nutanix 1403 }
  3584.  
  3585. ntxTrapFreeXiAccountExpired NOTIFICATION-TYPE
  3586. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3587. STATUS current
  3588. DESCRIPTION "Free period using Xi expired. If this issue persists, you may experience an interruption in service."
  3589. ::= { nutanix 1404 }
  3590.  
  3591. ntxTrapXiSubscriptionExpired NOTIFICATION-TYPE
  3592. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3593. STATUS current
  3594. DESCRIPTION "Xi subscription period expired. If this issue persists, you may experience an interruption in service."
  3595. ::= { nutanix 1405 }
  3596.  
  3597. ntxTrapEntitySyncFailure NOTIFICATION-TYPE
  3598. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3599. STATUS current
  3600. DESCRIPTION "Entity Sync Failed."
  3601. ::= { nutanix 1406 }
  3602.  
  3603. ntxTrapNucalmInternalServiceHasStoppedWorking NOTIFICATION-TYPE
  3604. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3605. STATUS current
  3606. DESCRIPTION "Nucalm internal service is down."
  3607. ::= { nutanix 1407 }
  3608.  
  3609. ntxTrapEpsilonInternalServiceHasStoppedWorking NOTIFICATION-TYPE
  3610. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3611. STATUS current
  3612. DESCRIPTION "Epsilon internal service is down."
  3613. ::= { nutanix 1408 }
  3614.  
  3615. ntxTrapProtectionRuleConflictOccurred NOTIFICATION-TYPE
  3616. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3617. STATUS current
  3618. DESCRIPTION "Unable to protect VM due to conflicting protection rules."
  3619. ::= { nutanix 1409 }
  3620.  
  3621. ntxTrapDomainFaultToleranceIsReducedForMetadata NOTIFICATION-TYPE
  3622. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3623. STATUS current
  3624. DESCRIPTION "Domain fault tolerance is low for metadata."
  3625. ::= { nutanix 1410 }
  3626.  
  3627. ntxTrapVMProtectionFailed NOTIFICATION-TYPE
  3628. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3629. STATUS current
  3630. DESCRIPTION "VM protection failed."
  3631. ::= { nutanix 1411 }
  3632.  
  3633. ntxTrapVMRecoveryPointReplicationFailed NOTIFICATION-TYPE
  3634. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3635. STATUS current
  3636. DESCRIPTION "VM recovery point replication failed."
  3637. ::= { nutanix 1412 }
  3638.  
  3639. ntxTrapVMRecoveryPointCreationFailed NOTIFICATION-TYPE
  3640. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3641. STATUS current
  3642. DESCRIPTION "VM recovery point creation failed."
  3643. ::= { nutanix 1413 }
  3644.  
  3645. ntxTrapMicrosegmentationControlPlaneFailed NOTIFICATION-TYPE
  3646. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3647. STATUS current
  3648. DESCRIPTION "Microsegmentation failure event."
  3649. ::= { nutanix 1414 }
  3650.  
  3651. ntxTrapMicrosegmentationRuleFailed NOTIFICATION-TYPE
  3652. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3653. STATUS current
  3654. DESCRIPTION "Programming a microsegmentation rule failed."
  3655. ::= { nutanix 1415 }
  3656.  
  3657. ntxTrapDriveRemovalStuck NOTIFICATION-TYPE
  3658. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3659. STATUS current
  3660. DESCRIPTION "Drive Removal Stuck."
  3661. ::= { nutanix 1416 }
  3662.  
  3663. ntxTrapFileServerNTPServersConnectivityFailure NOTIFICATION-TYPE
  3664. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3665. STATUS current
  3666. DESCRIPTION "File server cannot connect to NTP server."
  3667. ::= { nutanix 1417 }
  3668.  
  3669. ntxTrapFileServerTimeIsOutOfSyncWithTheActiveDirectory NOTIFICATION-TYPE
  3670. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3671. STATUS current
  3672. DESCRIPTION "File server time is out of sync with the Active Directory domain controllers."
  3673. ::= { nutanix 1418 }
  3674.  
  3675. ntxTrapFileServerDNSResolverIPConnectivityFailure NOTIFICATION-TYPE
  3676. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3677. STATUS current
  3678. DESCRIPTION "File server cannot resolve its domain name using configured DNS resolver IP addresses."
  3679. ::= { nutanix 1419 }
  3680.  
  3681. ntxTrapFileServerUserManagementConfigurationFailed NOTIFICATION-TYPE
  3682. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3683. STATUS current
  3684. DESCRIPTION "Given user management options could not be configured for the file server."
  3685. ::= { nutanix 1420 }
  3686.  
  3687. ntxTraphomePartitionUsageOnAFileServerVMHigherThanThreshold NOTIFICATION-TYPE
  3688. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3689. STATUS current
  3690. DESCRIPTION "Space consumption under /home partition on file server VM is higher than the set threshold."
  3691. ::= { nutanix 1421 }
  3692.  
  3693. ntxTrapFileServerDNSRecordsCannotBeRefreshed NOTIFICATION-TYPE
  3694. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3695. STATUS current
  3696. DESCRIPTION "File server DNS records periodic refresh failed."
  3697. ::= { nutanix 1422 }
  3698.  
  3699. ntxTrapFileServerShareBackupDiffPathTranslationFailed NOTIFICATION-TYPE
  3700. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3701. STATUS current
  3702. DESCRIPTION "Backup diff found inodes whose path translation failed."
  3703. ::= { nutanix 1423 }
  3704.  
  3705. ntxTrapFileServerPartnerServerConnectivityDown NOTIFICATION-TYPE
  3706. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3707. STATUS current
  3708. DESCRIPTION "Partner server is not responding to file notifications."
  3709. ::= { nutanix 1424 }
  3710.  
  3711. ntxTrapFileServerPDActionToIncompatibleRemoteSiteAOS NOTIFICATION-TYPE
  3712. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3713. STATUS current
  3714. DESCRIPTION "Remote Site AOS version is not compatible with File Server version."
  3715. ::= { nutanix 1425 }
  3716.  
  3717. ntxTrapFileServerServicesGotInterrupted NOTIFICATION-TYPE
  3718. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3719. STATUS current
  3720. DESCRIPTION "One of the fileserver services crashed."
  3721. ::= { nutanix 1426 }
  3722.  
  3723. ntxTrapCommonPortGroupBetweenESXiHostsIsAbsent NOTIFICATION-TYPE
  3724. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3725. STATUS current
  3726. DESCRIPTION "Common port group between ESXi hosts is not present."
  3727. ::= { nutanix 1427 }
  3728.  
  3729. ntxTrapFailedToReceiveSnapshotForTheProtectionDomain NOTIFICATION-TYPE
  3730. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3731. STATUS current
  3732. DESCRIPTION "Protection Domain Receive Snapshot Failure."
  3733. ::= { nutanix 1428 }
  3734.  
  3735. ntxTrapHostNetworkUplinkConfigurationFailed NOTIFICATION-TYPE
  3736. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3737. STATUS current
  3738. DESCRIPTION "Failed to apply host uplink configuration on the host(s)."
  3739. ::= { nutanix 1429 }
  3740.  
  3741. ntxTrapRestartVMsBeforePerformingUpgradeOrMigrateOperation NOTIFICATION-TYPE
  3742. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3743. STATUS current
  3744. DESCRIPTION "Restart all the VMs before you perform the upgrade or migrate operation."
  3745. ::= { nutanix 1430 }
  3746.  
  3747. ntxTrapOplogEpisodeCountCheck NOTIFICATION-TYPE
  3748. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3749. STATUS current
  3750. DESCRIPTION "Check that oplog episode count is within threshold."
  3751. ::= { nutanix 1431 }
  3752.  
  3753. ntxTrapCerebroStatsCollectorFailed NOTIFICATION-TYPE
  3754. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3755. STATUS current
  3756. DESCRIPTION "Collect Cerebro stats and publish to CFS."
  3757. ::= { nutanix 1432 }
  3758.  
  3759. ntxTrapLatencyBetweenvmtypes NOTIFICATION-TYPE
  3760. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3761. STATUS current
  3762. DESCRIPTION "Checks whether latency among CVMs is high."
  3763. ::= { nutanix 1433 }
  3764.  
  3765. ntxTrapLicenseInvalid NOTIFICATION-TYPE
  3766. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3767. STATUS current
  3768. DESCRIPTION "Check for license capacity."
  3769. ::= { nutanix 1434 }
  3770.  
  3771. ntxTrapRemoteSiteAOSNotCompatibleWithFileServerVersion NOTIFICATION-TYPE
  3772. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3773. STATUS current
  3774. DESCRIPTION "Checks File server remote sites AOS are file server version compatible."
  3775. ::= { nutanix 1435 }
  3776.  
  3777. ntxTrapA106043 NOTIFICATION-TYPE
  3778. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3779. STATUS current
  3780. DESCRIPTION "Check the compatibility of Intel S4600 drives with AOS and Foundation versions."
  3781. ::= { nutanix 1436 }
  3782.  
  3783. ntxTrapFirmwareVersionOfIntelS4600DrivesIsOld NOTIFICATION-TYPE
  3784. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3785. STATUS current
  3786. DESCRIPTION "Check firmware of Intel S4600 drives."
  3787. ::= { nutanix 1437 }
  3788.  
  3789. ntxTrapIntelS4600DriveHasWornOut NOTIFICATION-TYPE
  3790. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3791. STATUS current
  3792. DESCRIPTION "Check the status of Intel S4600 SSD."
  3793. ::= { nutanix 1438 }
  3794.  
  3795. ntxTrapHostBootDiskSerialNumberHasChanged NOTIFICATION-TYPE
  3796. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3797. STATUS current
  3798. DESCRIPTION "Check the change of host boot disk."
  3799. ::= { nutanix 1439 }
  3800.  
  3801. ntxTrapSataControllerStatusIsBad NOTIFICATION-TYPE
  3802. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3803. STATUS current
  3804. DESCRIPTION "Check SATA controller ports."
  3805. ::= { nutanix 1440 }
  3806.  
  3807. ntxTrapSamsung863Or863aOnipaddressHasConfigurationProblems NOTIFICATION-TYPE
  3808. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3809. STATUS current
  3810. DESCRIPTION "Check if node has supported configuration for Samsung 863 or 863a."
  3811. ::= { nutanix 1441 }
  3812.  
  3813. ntxTrapHypervisorBootDriveRAIDIsInAnUnhealthyState NOTIFICATION-TYPE
  3814. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3815. STATUS current
  3816. DESCRIPTION "Checks the status of Dell Marvell BOSS hypervisor boot drive."
  3817. ::= { nutanix 1442 }
  3818.  
  3819. ntxTrapCVMPortGroupRenamed NOTIFICATION-TYPE
  3820. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3821. STATUS current
  3822. DESCRIPTION "Check that CVM port group name has not changed."
  3823. ::= { nutanix 1443 }
  3824.  
  3825. ntxTrapA106453 NOTIFICATION-TYPE
  3826. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3827. STATUS current
  3828. DESCRIPTION "Check if any orphan VSS copies are present."
  3829. ::= { nutanix 1444 }
  3830.  
  3831. ntxTrapActiveDirectoryDCsAndorDNSServersRunningOnCluster NOTIFICATION-TYPE
  3832. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3833. STATUS current
  3834. DESCRIPTION "Check if all active directory domain controllers and DNS servers are running on Nutanix cluster."
  3835. ::= { nutanix 1445 }
  3836.  
  3837. ntxTrappowersourceDown NOTIFICATION-TYPE
  3838. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3839. STATUS current
  3840. DESCRIPTION "Check that Power supply has no errors."
  3841. ::= { nutanix 1446 }
  3842.  
  3843. ntxTrapCPUTemperatureLow NOTIFICATION-TYPE
  3844. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3845. STATUS current
  3846. DESCRIPTION "Check that cpu temperature is not too low."
  3847. ::= { nutanix 1447 }
  3848.  
  3849. ntxTrapRAMTemperatureLow NOTIFICATION-TYPE
  3850. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3851. STATUS current
  3852. DESCRIPTION "Check that DIMM temperature is not low."
  3853. ::= { nutanix 1448 }
  3854.  
  3855. ntxTrapSystemTemperatureLow NOTIFICATION-TYPE
  3856. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3857. STATUS current
  3858. DESCRIPTION "Check that system temperature is not low."
  3859. ::= { nutanix 1449 }
  3860.  
  3861. ntxTrapIPMISELLogFetchFail NOTIFICATION-TYPE
  3862. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3863. STATUS current
  3864. DESCRIPTION "Check fetching IPMI SEL logs."
  3865. ::= { nutanix 1450 }
  3866.  
  3867. ntxTrapIPMISELLogPowerFailure NOTIFICATION-TYPE
  3868. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3869. STATUS current
  3870. DESCRIPTION "Check for IPMI SEL Power failure in the past 24 hours."
  3871. ::= { nutanix 1451 }
  3872.  
  3873. ntxTrapAggressiveBreakReplicationTimeout NOTIFICATION-TYPE
  3874. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3875. STATUS current
  3876. DESCRIPTION "Check if break replication timeout of metro protection domain is more than the recommended limit."
  3877. ::= { nutanix 1452 }
  3878.  
  3879. ntxTrapCVMOrPCVMRAMUsageHigh NOTIFICATION-TYPE
  3880. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3881. STATUS current
  3882. DESCRIPTION "Check that CVM or PC VM memory usage is not high."
  3883. ::= { nutanix 1453 }
  3884.  
  3885. ntxTrapCVMOrPCVMCPULoadHigh NOTIFICATION-TYPE
  3886. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3887. STATUS current
  3888. DESCRIPTION "Check that CVM or PC VM CPU load is not high."
  3889. ::= { nutanix 1454 }
  3890.  
  3891. ntxTrapCVMRenamedIncorrectly NOTIFICATION-TYPE
  3892. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3893. STATUS current
  3894. DESCRIPTION "Check that CVM has been named properly."
  3895. ::= { nutanix 1455 }
  3896.  
  3897. ntxTrapvmtypeRebooted NOTIFICATION-TYPE
  3898. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3899. STATUS current
  3900. DESCRIPTION "Check that Cvm is not rebooted recently."
  3901. ::= { nutanix 1456 }
  3902.  
  3903. ntxTrapPCVMDiskUsageHigh NOTIFICATION-TYPE
  3904. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3905. STATUS current
  3906. DESCRIPTION "Check that disk space usage on the Prism Central VM is within limits."
  3907. ::= { nutanix 1457 }
  3908.  
  3909. ntxTrapvmtypeVirtualIPCheck NOTIFICATION-TYPE
  3910. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3911. STATUS current
  3912. DESCRIPTION "Check if virtual ip is configured and reachable."
  3913. ::= { nutanix 1458 }
  3914.  
  3915. ntxTrapvmtypeSameTimezoneCheck NOTIFICATION-TYPE
  3916. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3917. STATUS current
  3918. DESCRIPTION "Check that all CVMs are in the same timezone."
  3919. ::= { nutanix 1459 }
  3920.  
  3921. ntxTrapDIMMConfigurationIsWrong NOTIFICATION-TYPE
  3922. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3923. STATUS current
  3924. DESCRIPTION "DIMM Configuration Check."
  3925. ::= { nutanix 1460 }
  3926.  
  3927. ntxTrapP40GPUConfigurationWrongOnTheNode NOTIFICATION-TYPE
  3928. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3929. STATUS current
  3930. DESCRIPTION "Check number of P40 GPUs on a node."
  3931. ::= { nutanix 1461 }
  3932.  
  3933. ntxTrapP40GPUBMCVersionIsOldOnTheNode NOTIFICATION-TYPE
  3934. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3935. STATUS current
  3936. DESCRIPTION "Check BMC version of P40 GPUs on a node."
  3937. ::= { nutanix 1462 }
  3938.  
  3939. ntxTrapMemoryConfigurationInconsistent NOTIFICATION-TYPE
  3940. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3941. STATUS current
  3942. DESCRIPTION "Check all Controller VM or Prism Central VM memory is at the same level."
  3943. ::= { nutanix 1463 }
  3944.  
  3945. ntxTrapEntityCountExceededTheMaximumLimit NOTIFICATION-TYPE
  3946. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3947. STATUS current
  3948. DESCRIPTION "Entity Count Exceeded the Maximum Limit."
  3949. ::= { nutanix 1464 }
  3950.  
  3951. ntxTrapAOSUpgradesAreDisabledOncvmip NOTIFICATION-TYPE
  3952. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3953. STATUS current
  3954. DESCRIPTION "Check if AOS upgrades are disabled on CVM."
  3955. ::= { nutanix 1465 }
  3956.  
  3957. ntxTrapFirmwareUpgradesAreDisabledOncvmip NOTIFICATION-TYPE
  3958. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3959. STATUS current
  3960. DESCRIPTION "Check if firmware upgrades are disabled on the CVM."
  3961. ::= { nutanix 1466 }
  3962.  
  3963. ntxTrapHypervisorDiskdevnameSpaceUsageHigh NOTIFICATION-TYPE
  3964. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3965. STATUS current
  3966. DESCRIPTION "Checks that host disk usage is not high."
  3967. ::= { nutanix 1467 }
  3968.  
  3969. ntxTrapCVMPasswordlessSSHToHost NOTIFICATION-TYPE
  3970. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3971. STATUS current
  3972. DESCRIPTION "Check passwordless SSH into local hypervisor."
  3973. ::= { nutanix 1468 }
  3974.  
  3975. ntxTrapCPUsOfDifferentTypesOrModelsAreInTheSameChassis NOTIFICATION-TYPE
  3976. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3977. STATUS current
  3978. DESCRIPTION "Checks whether CPUs within a chassis are of the same type."
  3979. ::= { nutanix 1469 }
  3980.  
  3981. ntxTrapRecoveryPointReplicationSkipped NOTIFICATION-TYPE
  3982. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3983. STATUS current
  3984. DESCRIPTION "Recovery Point Replication Skipped."
  3985. ::= { nutanix 1470 }
  3986.  
  3987. ntxTrapNetworkCreationFailureForRecoveryPlan NOTIFICATION-TYPE
  3988. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3989. STATUS current
  3990. DESCRIPTION "Network network_cidr creation failed for the Recovery Plan recovery_plan_name."
  3991. ::= { nutanix 1471 }
  3992.  
  3993. ntxTrapVirtualIPAddressNotConfiguredOnTheRemoteCluster NOTIFICATION-TYPE
  3994. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  3995. STATUS current
  3996. DESCRIPTION "Virtual IP address is not configured on the remote cluster."
  3997. ::= { nutanix 1472 }
  3998.  
  3999. ntxTrapEntityCountExceedDiscovered NOTIFICATION-TYPE
  4000. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4001. STATUS current
  4002. DESCRIPTION "Entity count exceed discovered."
  4003. ::= { nutanix 1473 }
  4004.  
  4005. ntxTrapVMReplicationFailure NOTIFICATION-TYPE
  4006. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4007. STATUS current
  4008. DESCRIPTION "VM Replication Failure."
  4009. ::= { nutanix 1474 }
  4010.  
  4011. ntxTrapVMReplicationExpired NOTIFICATION-TYPE
  4012. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4013. STATUS current
  4014. DESCRIPTION "VM Replication Expired."
  4015. ::= { nutanix 1475 }
  4016.  
  4017. ntxTrapApplicationConsistentRecoveryPointFailed NOTIFICATION-TYPE
  4018. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4019. STATUS current
  4020. DESCRIPTION "Application consistent Recovery Point failed."
  4021. ::= { nutanix 1476 }
  4022.  
  4023. ntxTrapReplicationTimeExceededTheRPOLimit NOTIFICATION-TYPE
  4024. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4025. STATUS current
  4026. DESCRIPTION "Replication Time Exceeded the RPO Limit."
  4027. ::= { nutanix 1477 }
  4028.  
  4029. ntxTrapNGTOnVMvmnameWasNotReachable NOTIFICATION-TYPE
  4030. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4031. STATUS current
  4032. DESCRIPTION "NGT on VM vm_name was not reachable."
  4033. ::= { nutanix 1478 }
  4034.  
  4035. ntxTrapVMReplicationHasNotProgressed NOTIFICATION-TYPE
  4036. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4037. STATUS current
  4038. DESCRIPTION "Replication of the VM has not progressed."
  4039. ::= { nutanix 1479 }
  4040.  
  4041. ntxTrapVSSProviderOrprefreezepostthawScriptsNotInstalled NOTIFICATION-TYPE
  4042. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4043. STATUS current
  4044. DESCRIPTION "VSS provider or pre_freeze/post_thaw Scripts Not Installed."
  4045. ::= { nutanix 1480 }
  4046.  
  4047. ntxTrapPartialRecoveryPoint NOTIFICATION-TYPE
  4048. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4049. STATUS current
  4050. DESCRIPTION "Partial Recovery Point."
  4051. ::= { nutanix 1481 }
  4052.  
  4053. ntxTrapPulseCannotConnectToRESTServerEndpoint NOTIFICATION-TYPE
  4054. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4055. STATUS current
  4056. DESCRIPTION "Check if Pulse can connect to REST server endpoint."
  4057. ::= { nutanix 1482 }
  4058.  
  4059. ntxTrapJumboFramesEnabledForNICnicnameOnservicevmexternalip NOTIFICATION-TYPE
  4060. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4061. STATUS current
  4062. DESCRIPTION "Check MTU of the CVM network interfaces."
  4063. ::= { nutanix 1483 }
  4064.  
  4065. ntxTrapUnableToRetrieveTheAvailabilityZoneEndpoint NOTIFICATION-TYPE
  4066. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4067. STATUS current
  4068. DESCRIPTION "Unable to retrieve the endpoint information for the Availability Zone."
  4069. ::= { nutanix 1484 }
  4070.  
  4071. ntxTrapRecoveryPointReplicationFailed NOTIFICATION-TYPE
  4072. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4073. STATUS current
  4074. DESCRIPTION "Recovery Point replication failed."
  4075. ::= { nutanix 1485 }
  4076.  
  4077. ntxTrapUnableToCommunicateWithTheDataCenterManager NOTIFICATION-TYPE
  4078. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4079. STATUS current
  4080. DESCRIPTION "Unable to retrieve the endpoint information for the Availability Zone from the Data Center Manager."
  4081. ::= { nutanix 1486 }
  4082.  
  4083. ntxTrapRemoteSiteInSameVCenterDatacenter NOTIFICATION-TYPE
  4084. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4085. STATUS current
  4086. DESCRIPTION "Check if any remote site is added under the same datacenter in vCenter."
  4087. ::= { nutanix 1487 }
  4088.  
  4089. ntxTrapV100GPUConfigurationWrongOnTheNode NOTIFICATION-TYPE
  4090. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4091. STATUS current
  4092. DESCRIPTION "Check number of V100 GPUs on a node."
  4093. ::= { nutanix 1488 }
  4094.  
  4095. ntxTrapApplicationsArchiveReadyForDownload NOTIFICATION-TYPE
  4096. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4097. STATUS current
  4098. DESCRIPTION "Archive ready for download."
  4099. ::= { nutanix 1489 }
  4100.  
  4101. ntxTrapMoreThanOneTypeOfGPUsInstalledOnTheSameNode NOTIFICATION-TYPE
  4102. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4103. STATUS current
  4104. DESCRIPTION "Check if more than one type of GPUs installed on the same node."
  4105. ::= { nutanix 1490 }
  4106.  
  4107. ntxTrapVmRegisteredWithoutNetwork NOTIFICATION-TYPE
  4108. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4109. STATUS current
  4110. DESCRIPTION "Failed to attach vNIC for recovered VM: vm_name."
  4111. ::= { nutanix 1491 }
  4112.  
  4113. ntxTrapAlertEmailFailure NOTIFICATION-TYPE
  4114. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4115. STATUS current
  4116. DESCRIPTION "Failed to send alert emails."
  4117. ::= { nutanix 1492 }
  4118.  
  4119. ntxTrapNICRXCRCErrorRateHigh NOTIFICATION-TYPE
  4120. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4121. STATUS current
  4122. DESCRIPTION "Checks whether the NICs on hypervisor are experiencing rx_crc errors."
  4123. ::= { nutanix 1493 }
  4124.  
  4125. ntxTrapNICRXMissedErrorRateHigh NOTIFICATION-TYPE
  4126. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4127. STATUS current
  4128. DESCRIPTION "Checks whether the NICs on hypervisor are experiencing rx_missed errors."
  4129. ::= { nutanix 1494 }
  4130.  
  4131. ntxTrapEntityUnprotectionFailed NOTIFICATION-TYPE
  4132. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4133. STATUS current
  4134. DESCRIPTION "Unable to unprotect VM due to some Internal Error."
  4135. ::= { nutanix 1495 }
  4136.  
  4137. ntxTrapAvailabilityZoneValidationFailed NOTIFICATION-TYPE
  4138. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4139. STATUS current
  4140. DESCRIPTION "Availability Zone is not Valid."
  4141. ::= { nutanix 1496 }
  4142.  
  4143. ntxTrapInvalidNetworkMappingForRecoveryPlanrecoveryplanname NOTIFICATION-TYPE
  4144. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4145. STATUS current
  4146. DESCRIPTION "Network mapping have Availability Zones that are not in accordance with Availability Zone order list of Protection Policy applied to VMs in Recovery Plan."
  4147. ::= { nutanix 1497 }
  4148.  
  4149. ntxTrapDataProtectionTasksAreNotProgressing NOTIFICATION-TYPE
  4150. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4151. STATUS current
  4152. DESCRIPTION "Cerebro Tasks got stuck."
  4153. ::= { nutanix 1498 }
  4154.  
  4155. ntxTrapIncorrectClusterInformationInTheRemoteSiteremotename NOTIFICATION-TYPE
  4156. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4157. STATUS current
  4158. DESCRIPTION "Check if the cluster information in remote site is correct."
  4159. ::= { nutanix 1499 }
  4160.  
  4161. ntxTrapVCenterNotRegistered NOTIFICATION-TYPE
  4162. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4163. STATUS current
  4164. DESCRIPTION "Check if vCenter server is registered."
  4165. ::= { nutanix 1500 }
  4166.  
  4167. ntxTrapNGTUpdateAvailable NOTIFICATION-TYPE
  4168. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4169. STATUS current
  4170. DESCRIPTION "Checks whether VMs have latest NGT version installed."
  4171. ::= { nutanix 1501 }
  4172.  
  4173. ntxTrapDuplicateCVMIPAddressDetected NOTIFICATION-TYPE
  4174. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4175. STATUS current
  4176. DESCRIPTION "Check for duplicate CVM IP address."
  4177. ::= { nutanix 1502 }
  4178.  
  4179. ntxTrapMTUConfigurationAcrossControllerVMsIsNotConsistent NOTIFICATION-TYPE
  4180. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4181. STATUS current
  4182. DESCRIPTION "Check connectivity between Controller VMs by pinging with configured MTUs."
  4183. ::= { nutanix 1503 }
  4184.  
  4185. ntxTrapMultipleCpuunblockProcessesRunning NOTIFICATION-TYPE
  4186. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4187. STATUS current
  4188. DESCRIPTION "Check that there are no stale cpu_unblock processes running."
  4189. ::= { nutanix 1504 }
  4190.  
  4191. ntxTrapRecoveryLocationOperationChangedToReadOnlyMode NOTIFICATION-TYPE
  4192. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4193. STATUS current
  4194. DESCRIPTION "Operation Mode of the Recovery Location changed to Read Only."
  4195. ::= { nutanix 1505 }
  4196.  
  4197. ntxTrapA130181 NOTIFICATION-TYPE
  4198. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4199. STATUS current
  4200. DESCRIPTION "Snapshot contains entities from the storage container that have deduplication enabled."
  4201. ::= { nutanix 1506 }
  4202.  
  4203. ntxTrapAvailabilityZoneConnectionFailure NOTIFICATION-TYPE
  4204. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4205. STATUS current
  4206. DESCRIPTION "The remote availability zone az_url is unreachable."
  4207. ::= { nutanix 1507 }
  4208.  
  4209. ntxTrapPEPCConnectionFailure NOTIFICATION-TYPE
  4210. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4211. STATUS current
  4212. DESCRIPTION "The remote remote_vm_type cluster_ip is unreachable."
  4213. ::= { nutanix 1508 }
  4214.  
  4215. ntxTrapNutanixGuestToolsNotUpgraded NOTIFICATION-TYPE
  4216. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4217. STATUS current
  4218. DESCRIPTION "Nutanix Guest Tools not upgraded."
  4219. ::= { nutanix 1509 }
  4220.  
  4221. ntxTrapFileServerMultipleVMsOnSingleNodeCheck NOTIFICATION-TYPE
  4222. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4223. STATUS current
  4224. DESCRIPTION "Checks that multiple File server VMs are running on a single node."
  4225. ::= { nutanix 1510 }
  4226.  
  4227. ntxTrapShareUsageReachingToConfiguredLimit NOTIFICATION-TYPE
  4228. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4229. STATUS current
  4230. DESCRIPTION "Share will be no longer writeable."
  4231. ::= { nutanix 1511 }
  4232.  
  4233. ntxTrapProtectedVMsNotRecoverable NOTIFICATION-TYPE
  4234. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4235. STATUS current
  4236. DESCRIPTION "Protected VM(s) Not Recoverable."
  4237. ::= { nutanix 1512 }
  4238.  
  4239. ntxTrapEntitySyncFailureForProtectionRule NOTIFICATION-TYPE
  4240. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4241. STATUS current
  4242. DESCRIPTION "Entity Sync failed for ProtectionRule."
  4243. ::= { nutanix 1513 }
  4244.  
  4245. ntxTrapEntitySyncFailureForRecoveryPlan NOTIFICATION-TYPE
  4246. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4247. STATUS current
  4248. DESCRIPTION "Entity Sync failed for RecoveryPlan."
  4249. ::= { nutanix 1514 }
  4250.  
  4251. ntxTrapDataAtRestEncryptionKeyBackupWarning NOTIFICATION-TYPE
  4252. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4253. STATUS current
  4254. DESCRIPTION "New encryption keys not backed up."
  4255. ::= { nutanix 1515 }
  4256.  
  4257. ntxTrapLocalKeyManagerMasterKeyRotationWarning NOTIFICATION-TYPE
  4258. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4259. STATUS current
  4260. DESCRIPTION "Unable to rotate local key manager's master key."
  4261. ::= { nutanix 1516 }
  4262.  
  4263. ntxTrapPulseCannotConnectToRESTServerEndpointOnFileServer NOTIFICATION-TYPE
  4264. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4265. STATUS current
  4266. DESCRIPTION "Check if Pulse can connect to REST server endpoint on File Server."
  4267. ::= { nutanix 1517 }
  4268.  
  4269. ntxTrapDetectedIncompatibleAHVVersion NOTIFICATION-TYPE
  4270. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4271. STATUS current
  4272. DESCRIPTION "Check if hosts are installed with a compatible AHV version."
  4273. ::= { nutanix 1518 }
  4274.  
  4275. ntxTrapNucalmLicenseIsOvershooting NOTIFICATION-TYPE
  4276. OBJECTS { ntxAlertCreationTime, ntxAlertDisplayMsg, ntxAlertTitle, ntxAlertSeverity }
  4277. STATUS current
  4278. DESCRIPTION "Nucalm license is Overshooting."
  4279. ::= { nutanix 1519 }
  4280. END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement