Advertisement
Guest User

stack

a guest
Mar 25th, 2014
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 44.47 KB | None | 0 0
  1. 2014-03-25 15:12:42,046 [inv.discovery: asset_discovery(core-tech-01-stack)] Changing name to 'core-tech-01-stack#1'
  2. 2014-03-25 15:12:42,197 [inv.discovery: asset_discovery(core-tech-01-stack)] Changing name to 'core-tech-01-stack#2'
  3. 2014-03-25 15:12:42,329 [inv.discovery: asset_discovery(core-tech-01-stack)] Changing name to 'core-tech-01-stack#3'
  4. 2014-03-25 15:12:42,383 [inv.discovery: asset_discovery(core-tech-01-stack)] Creating new object. model='Avaya | Transceiver | 1G | LX', serial='FBXNCND4H2002761'
  5. 2014-03-25 15:12:42,441 [inv.discovery: asset_discovery(core-tech-01-stack)] UNHANDLED EXCEPTION (2014-03-25 15:12:42.383695)
  6. Working directory: /opt/noc
  7. <type 'exceptions.AttributeError'>
  8. 'Object' object has no attribute '_changed_fields'
  9. START OF TRACEBACK
  10. ------------------------------------------------------------------------
  11. File: /opt/noc/inv/models/object.py (Line: 459)
  12. Function: change_container
  13. 452 if hasattr(mo, "id"):
  14. 453 mo = mo.id
  15. 454 return cls.objects.filter(data__management__managed_object=mo)
  16. 455
  17. 456 @classmethod
  18. 457 def change_container(cls, sender, document, target=None,
  19. 458 created=False, **kwargs):
  20. 459 ==> if "container" not in document._changed_fields:
  21. 460 return
  22. 461 old_container = getattr(document, "_cache_container", None)
  23. 462 old_pop = None
  24. 463 new_pop = None
  25. 464 # Old pop
  26. 465 if old_container:
  27. Variables:
  28. sender = <class 'noc.inv.models.object.Object'>
  29. created = False
  30. kwargs = {}
  31. target = None
  32. document = <Object: None>
  33. cls = <class 'noc.inv.models.object.Object'>
  34. ------------------------------------------------------------------------
  35. File: /opt/noc/lib/python2.7/site-packages/blinker/base.py (Line: 267)
  36. Function: send
  37. 260 '%s given' % len(sender))
  38. 261 else:
  39. 262 sender = sender[0]
  40. 263 if not self.receivers:
  41. 264 return []
  42. 265 else:
  43. 266 return [(receiver, receiver(sender, **kwargs))
  44. 267 ==> for receiver in self.receivers_for(sender)]
  45. 268
  46. 269 def has_receivers_for(self, sender):
  47. 270 """True if there is probably a receiver for *sender*.
  48. 271
  49. 272 Performs an optimistic check only. Does not guarantee that all
  50. 273 weakly referenced receivers are still alive. See
  51. Variables:
  52. self = <blinker.base.NamedSignal object at 0x289e550; 'pre_save'>
  53. kwargs = {'document': <Object: None>}
  54. sender = <class 'noc.inv.models.object.Object'>
  55. receiver =
  56. <bound method ?.change_container of <class 'noc.inv.models.object.Object'>>
  57. ------------------------------------------------------------------------
  58. File: /opt/noc/lib/python2.7/site-packages/mongoengine/document.py (Line: 181)
  59. Function: save
  60. 174 .. versionchanged:: 0.6
  61. 175 Cascade saves are optional = defaults to True, if you want fine grain
  62. 176 control then you can turn off using document meta['cascade'] = False
  63. 177 Also you can pass different kwargs to the cascade save using cascade_kwargs
  64. 178 which overwrites the existing kwargs with custom values
  65. 179
  66. 180 """
  67. 181 ==> signals.pre_save.send(self.__class__, document=self)
  68. 182
  69. 183 if validate:
  70. 184 self.validate()
  71. 185
  72. 186 if not write_options:
  73. 187 write_options = {}
  74. Variables:
  75. force_insert = False
  76. self = <Object: None>
  77. safe = True
  78. _refs = None
  79. cascade = None
  80. cascade_kwargs = None
  81. write_options = None
  82. validate = True
  83. ------------------------------------------------------------------------
  84. File: /opt/noc/inv/discovery/reports/asset.py (Line: 136)
  85. Function: submit
  86. 129 # Create new object
  87. 130 self.info("Creating new object. model='%s', serial='%s'" % (
  88. 131 m.name, serial))
  89. 132 data = {"asset": {"serial": serial}}
  90. 133 if revision:
  91. 134 data["asset"]["revision"] = revision
  92. 135 o = Object(model=m, data=data, container=self.lost_and_found)
  93. 136 ==> o.save()
  94. 137 o.log(
  95. 138 "Created by asset_discovery",
  96. 139 system="DISCOVERY", managed_object=self.object,
  97. 140 op="CREATE"
  98. 141 )
  99. 142 # Check revision
  100. Variables:
  101. vnd = <Vendor: Avaya>
  102. vendor = 'AVAYA'
  103. description = 'Avaya | Transceiver | 1G | LX'
  104. part_no = ['AA1419049-E6']
  105. type = 'XCVR'
  106. self = <noc.inv.discovery.reports.asset.AssetReport object at 0x43d4f50>
  107. m = <ObjectModel: Avaya | Transceiver | 1G | LX>
  108. number = '11'
  109. is_unknown_xcvr = False
  110. p = 'AA1419049-E6'
  111. builtin = False
  112. o = <Object: None>
  113. serial = 'FBXNCND4H2002761'
  114. data = {'asset': {'serial': 'FBXNCND4H2002761', 'revision': '10'}}
  115. revision = '10'
  116. ------------------------------------------------------------------------
  117. File: /opt/noc/inv/discovery/jobs/asset_discovery.py (Line: 41)
  118. Function: handler
  119. 34 for o in result:
  120. 35 self.debug("Submit %s" % str_dict(o))
  121. 36 self.report.submit(
  122. 37 type=o["type"], number=o.get("number"),
  123. 38 builtin=o["builtin"],
  124. 39 vendor=o.get("vendor"), part_no=o["part_no"],
  125. 40 revision=o.get("revision"), serial=o.get("serial"),
  126. 41 ==> description=o.get("description")
  127. 42 )
  128. 43 # Assign stack members
  129. 44 self.report.submit_stack_members()
  130. 45 #
  131. 46 self.report.submit_connections()
  132. 47 #
  133. Variables:
  134. self =
  135. <noc.inv.discovery.jobs.asset_discovery.AssetDiscoveryJob object at 0x4661410>
  136. object = <ManagedObject: core-tech-01-stack>
  137. result =
  138. [{'builtin': False,
  139. 'description': '5632FD',
  140. 'number': '1',
  141. 'part_no': ['5632FD'],
  142. 'revision': '06',
  143. 'serial': 'LBNNTMJPW5069M',
  144. 'type': 'CHASSIS',
  145. 'vendor': 'AVAYA'},
  146. {'builtin': False,
  147. 'description': 'Avaya | Transceiver | 1G | LX',
  148. 'number': '1',
  149. 'part_no': ['AA1419049-E6'],
  150. 'revision': '0000',
  151. 'serial': 'AVAGCNC004G6C',
  152. 'type': 'XCVR',
  153. 'vendor': 'AVAYA'},
  154. {'builtin': False,
  155. 'description': 'Avaya | Transceiver | 1G | LX',
  156. 'number': '2',
  157. 'part_no': ['AA1419049-E6'],
  158. 'revision': '0000',
  159. 'serial': 'AVAGCNC004CTW',
  160. 'type': 'XCVR',
  161. 'vendor': 'AVAYA'},
  162. {'builtin': False,
  163. 'description': 'Avaya | Transceiver | 1G | LX',
  164. 'number': '3',
  165. 'part_no': ['AA1419049-E6'],
  166. 'revision': '0000',
  167. 'serial': 'AVAGCNC004H6A',
  168. 'type': 'XCVR',
  169. 'vendor': 'AVAYA'},
  170. {'builtin': False,
  171. 'description': 'Avaya | Transceiver | 1G | LX',
  172. 'number': '4',
  173. 'part_no': ['AA1419049-E6'],
  174. 'revision': '0000',
  175. 'serial': 'AVAGCNC004H5S',
  176. 'type': 'XCVR',
  177. 'vendor': 'AVAYA'},
  178. {'builtin': False,
  179. 'description': 'Avaya | Transceiver | 1G | LX',
  180. 'number': '5',
  181. 'part_no': ['AA1419049-E6'],
  182. 'revision': '0000',
  183. 'serial': 'AVAGCNC004H6E',
  184. 'type': 'XCVR',
  185. 'vendor': 'AVAYA'},
  186. {'builtin': False,
  187. 'description': 'Avaya | Transceiver | 1G | LX',
  188. 'number': '6',
  189. 'part_no': ['AA1419049-E6'],
  190. 'revision': '0000',
  191. 'serial': 'AVAGCNC004H6N',
  192. 'type': 'XCVR',
  193. 'vendor': 'AVAYA'},
  194. {'builtin': False,
  195. 'description': 'Avaya | Transceiver | 1G | LX',
  196. 'number': '7',
  197. 'part_no': ['AA1419049-E6'],
  198. 'revision': '0000',
  199. 'serial': 'AVAGCNC004HC2',
  200. 'type': 'XCVR',
  201. 'vendor': 'AVAYA'},
  202. {'builtin': False,
  203. 'description': 'Avaya | Transceiver | 1G | LX',
  204. 'number': '8',
  205. 'part_no': ['AA1419049-E6'],
  206. 'revision': '0000',
  207. 'serial': 'AVAGCNC004HB3',
  208. 'type': 'XCVR',
  209. 'vendor': 'AVAYA'},
  210. {'builtin': False,
  211. 'description': 'Avaya | Transceiver | 1G | LX',
  212. 'number': '9',
  213. 'part_no': ['AA1419049-E6'],
  214. 'revision': '0000',
  215. 'serial': 'AVAGCNC004H60',
  216. 'type': 'XCVR',
  217. 'vendor': 'AVAYA'},
  218. {'builtin': False,
  219. 'description': 'Avaya | Transceiver | 1G | LX',
  220. 'number': '10',
  221. 'part_no': ['AA1419049-E6'],
  222. 'revision': '0000',
  223. 'serial': 'AVAGCNC004EW7',
  224. 'type': 'XCVR',
  225. 'vendor': 'AVAYA'},
  226. {'builtin': False,
  227. 'description': 'Avaya | Transceiver | 1G | LX',
  228. 'number': '11',
  229. 'part_no': ['AA1419049-E6'],
  230. 'revision': '0000',
  231. 'serial': 'AVAGCNC004H6T',
  232. 'type': 'XCVR',
  233. 'vendor': 'AVAYA'},
  234. {'builtin': False,
  235. 'description': 'Avaya | Transceiver | 1G | LX',
  236. 'number': '12',
  237. 'part_no': ['AA1419049-E6'],
  238. 'revision': '0000',
  239. 'serial': 'AVAGCNC004G6L',
  240. 'type': 'XCVR',
  241. 'vendor': 'AVAYA'},
  242. {'builtin': False,
  243. 'description': 'Avaya | Transceiver | 1G | LX',
  244. 'number': '13',
  245. 'part_no': ['AA1419049-E6'],
  246. 'revision': '0000',
  247. 'serial': 'AVAGCNC004HBJ',
  248. 'type': 'XCVR',
  249. 'vendor': 'AVAYA'},
  250. {'builtin': False,
  251. 'description': 'Avaya | Transceiver | 1G | LX',
  252. 'number': '14',
  253. 'part_no': ['AA1419049-E6'],
  254. 'revision': '0000',
  255. 'serial': 'AVAGCNC004G6E',
  256. 'type': 'XCVR',
  257. 'vendor': 'AVAYA'},
  258. {'builtin': False,
  259. 'description': 'Avaya | Transceiver | 1G | LX',
  260. 'number': '15',
  261. 'part_no': ['AA1419049-E6'],
  262. 'revision': '0000',
  263. 'serial': 'AVAGCNC004CT0',
  264. 'type': 'XCVR',
  265. 'vendor': 'AVAYA'},
  266. {'builtin': False,
  267. 'description': 'Avaya | Transceiver | 1G | LX',
  268. 'number': '16',
  269. 'part_no': ['AA1419049-E6'],
  270. 'revision': '0000',
  271. 'serial': 'AVAGCNC004FA3',
  272. 'type': 'XCVR',
  273. 'vendor': 'AVAYA'},
  274. {'builtin': False,
  275. 'description': 'Avaya | Transceiver | 1G | LX',
  276. 'number': '17',
  277. 'part_no': ['AA1419049-E6'],
  278. 'revision': '10',
  279. 'serial': 'FBXNCND4H2001332',
  280. 'type': 'XCVR',
  281. 'vendor': 'AVAYA'},
  282. {'builtin': False,
  283. 'description': 'Avaya | Transceiver | 1G | LX',
  284. 'number': '18',
  285. 'part_no': ['AA1419049-E6'],
  286. 'revision': '10',
  287. 'serial': 'FBXNCND4J2000880',
  288. 'type': 'XCVR',
  289. 'vendor': 'AVAYA'},
  290. {'builtin': False,
  291. 'description': 'Avaya | Transceiver | 1G | LX',
  292. 'number': '19',
  293. 'part_no': ['AA1419049-E6'],
  294. 'revision': '0000',
  295. 'serial': 'AVAGCNC004F49',
  296. 'type': 'XCVR',
  297. 'vendor': 'AVAYA'},
  298. {'builtin': False,
  299. 'description': 'Avaya | Transceiver | 1G | LX',
  300. 'number': '20',
  301. 'part_no': ['AA1419049-E6'],
  302. 'revision': '10',
  303. 'serial': 'FBXNCND4H2000333',
  304. 'type': 'XCVR',
  305. 'vendor': 'AVAYA'},
  306. {'builtin': False,
  307. 'description': 'Avaya | Transceiver | 1G | LX',
  308. 'number': '21',
  309. 'part_no': ['AA1419049-E6'],
  310. 'revision': '10',
  311. 'serial': 'FBXNCND4J2000641',
  312. 'type': 'XCVR',
  313. 'vendor': 'AVAYA'},
  314. {'builtin': False,
  315. 'description': 'Avaya | Transceiver | 1G | LX',
  316. 'number': '22',
  317. 'part_no': ['AA1419049-E6'],
  318. 'revision': '10',
  319. 'serial': 'FBXNCND4F2000026',
  320. 'type': 'XCVR',
  321. 'vendor': 'AVAYA'},
  322. {'builtin': False,
  323. 'description': 'Avaya | Transceiver | 1G | LX',
  324. 'number': '23',
  325. 'part_no': ['AA1419049-E6'],
  326. 'revision': '0000',
  327. 'serial': 'AVAGCNC004HAU',
  328. 'type': 'XCVR',
  329. 'vendor': 'AVAYA'},
  330. {'builtin': False,
  331. 'description': 'Avaya | Transceiver | 1G | LX',
  332. 'number': '24',
  333. 'part_no': ['AA1419049-E6'],
  334. 'revision': '10',
  335. 'serial': 'FBXNCND4J2002312',
  336. 'type': 'XCVR',
  337. 'vendor': 'AVAYA'},
  338. {'builtin': False,
  339. 'description': 'Avaya | Transceiver | 10G | 10GB-LR',
  340. 'number': '30',
  341. 'part_no': ['AA1403001-E5'],
  342. 'revision': 'N/A',
  343. 'serial': 'JDSUTHC4589060D1',
  344. 'type': 'XCVR',
  345. 'vendor': 'AVAYA'},
  346. {'builtin': False,
  347. 'description': 'Avaya | Transceiver | 10G | 10GB-LR',
  348. 'number': '31',
  349. 'part_no': ['AA1403001-E5'],
  350. 'revision': 'N/A',
  351. 'serial': 'JDSUTHC448906257',
  352. 'type': 'XCVR',
  353. 'vendor': 'AVAYA'},
  354. {'builtin': False,
  355. 'description': 'Avaya | Transceiver | 10G | 10GB-LR',
  356. 'number': '32',
  357. 'part_no': ['AA1403001-E5'],
  358. 'revision': 'N/A',
  359. 'serial': 'JDSUTHC458906220',
  360. 'type': 'XCVR',
  361. 'vendor': 'AVAYA'},
  362. {'builtin': False,
  363. 'description': '5632FD',
  364. 'number': '2',
  365. 'part_no': ['5632FD'],
  366. 'revision': '06',
  367. 'serial': 'LBNNTMJPW5069V',
  368. 'type': 'CHASSIS',
  369. 'vendor': 'AVAYA'},
  370. {'builtin': False,
  371. 'description': 'Avaya | Transceiver | 1G | LX',
  372. 'number': '1',
  373. 'part_no': ['AA1419049-E6'],
  374. 'revision': '10',
  375. 'serial': 'FBXNCND4J2001329',
  376. 'type': 'XCVR',
  377. 'vendor': 'AVAYA'},
  378. {'builtin': False,
  379. 'description': 'Avaya | Transceiver | 1G | LX',
  380. 'number': '2',
  381. 'part_no': ['AA1419049-E6'],
  382. 'revision': '10',
  383. 'serial': 'FBXNCND4J2001526',
  384. 'type': 'XCVR',
  385. 'vendor': 'AVAYA'},
  386. {'builtin': False,
  387. 'description': 'Avaya | Transceiver | 1G | LX',
  388. 'number': '3',
  389. 'part_no': ['AA1419049-E6'],
  390. 'revision': '10',
  391. 'serial': 'FBXNCND4G2000218',
  392. 'type': 'XCVR',
  393. 'vendor': 'AVAYA'},
  394. {'builtin': False,
  395. 'description': 'Avaya | Transceiver | 1G | LX',
  396. 'number': '4',
  397. 'part_no': ['AA1419049-E6'],
  398. 'revision': '10',
  399. 'serial': 'FBXNCND4G2001379',
  400. 'type': 'XCVR',
  401. 'vendor': 'AVAYA'},
  402. {'builtin': False,
  403. 'description': 'Avaya | Transceiver | 1G | LX',
  404. 'number': '5',
  405. 'part_no': ['AA1419049-E6'],
  406. 'revision': '10',
  407. 'serial': 'FBXNCND4G2000222',
  408. 'type': 'XCVR',
  409. 'vendor': 'AVAYA'},
  410. {'builtin': False,
  411. 'description': 'Avaya | Transceiver | 1G | LX',
  412. 'number': '6',
  413. 'part_no': ['AA1419049-E6'],
  414. 'revision': '10',
  415. 'serial': 'FBXNCND4G2000060',
  416. 'type': 'XCVR',
  417. 'vendor': 'AVAYA'},
  418. {'builtin': False,
  419. 'description': 'Avaya | Transceiver | 1G | LX',
  420. 'number': '7',
  421. 'part_no': ['AA1419049-E6'],
  422. 'revision': '10',
  423. 'serial': 'FBXNCND4J2002345',
  424. 'type': 'XCVR',
  425. 'vendor': 'AVAYA'},
  426. {'builtin': False,
  427. 'description': 'Avaya | Transceiver | 1G | LX',
  428. 'number': '8',
  429. 'part_no': ['AA1419049-E6'],
  430. 'revision': '10',
  431. 'serial': 'FBXNCND4H2002223',
  432. 'type': 'XCVR',
  433. 'vendor': 'AVAYA'},
  434. {'builtin': False,
  435. 'description': 'Avaya | Transceiver | 1G | LX',
  436. 'number': '9',
  437. 'part_no': ['AA1419049-E6'],
  438. 'revision': '10',
  439. 'serial': 'FBXNCND4G2000880',
  440. 'type': 'XCVR',
  441. 'vendor': 'AVAYA'},
  442. {'builtin': False,
  443. 'description': 'Avaya | Transceiver | 1G | LX',
  444. 'number': '10',
  445. 'part_no': ['AA1419049-E6'],
  446. 'revision': '10',
  447. 'serial': 'FBXNCND4G2001130',
  448. 'type': 'XCVR',
  449. 'vendor': 'AVAYA'},
  450. {'builtin': False,
  451. 'description': 'Avaya | Transceiver | 1G | LX',
  452. 'number': '11',
  453. 'part_no': ['AA1419049-E6'],
  454. 'revision': '10',
  455. 'serial': 'FBXNCND4J2001252',
  456. 'type': 'XCVR',
  457. 'vendor': 'AVAYA'},
  458. {'builtin': False,
  459. 'description': 'Avaya | Transceiver | 1G | LX',
  460. 'number': '12',
  461. 'part_no': ['AA1419049-E6'],
  462. 'revision': '10',
  463. 'serial': 'FBXNCND4H2000883',
  464. 'type': 'XCVR',
  465. 'vendor': 'AVAYA'},
  466. {'builtin': False,
  467. 'description': 'Avaya | Transceiver | 1G | LX',
  468. 'number': '13',
  469. 'part_no': ['AA1419049-E6'],
  470. 'revision': '10',
  471. 'serial': 'FBXNCND4J2001307',
  472. 'type': 'XCVR',
  473. 'vendor': 'AVAYA'},
  474. {'builtin': False,
  475. 'description': 'Avaya | Transceiver | 1G | LX',
  476. 'number': '14',
  477. 'part_no': ['AA1419049-E6'],
  478. 'revision': '10',
  479. 'serial': 'FBXNCND2M2001615',
  480. 'type': 'XCVR',
  481. 'vendor': 'AVAYA'},
  482. {'builtin': False,
  483. 'description': 'Avaya | Transceiver | 1G | LX',
  484. 'number': '15',
  485. 'part_no': ['AA1419049-E6'],
  486. 'revision': '10',
  487. 'serial': 'FBXNCND4J2000282',
  488. 'type': 'XCVR',
  489. 'vendor': 'AVAYA'},
  490. {'builtin': False,
  491. 'description': 'Avaya | Transceiver | 1G | LX',
  492. 'number': '16',
  493. 'part_no': ['AA1419049-E6'],
  494. 'revision': '10',
  495. 'serial': 'FBXNCND4H2000496',
  496. 'type': 'XCVR',
  497. 'vendor': 'AVAYA'},
  498. {'builtin': False,
  499. 'description': 'Avaya | Transceiver | 1G | LX',
  500. 'number': '17',
  501. 'part_no': ['AA1419049-E6'],
  502. 'revision': '10',
  503. 'serial': 'FBXNCND4J2001996',
  504. 'type': 'XCVR',
  505. 'vendor': 'AVAYA'},
  506. {'builtin': False,
  507. 'description': 'Avaya | Transceiver | 1G | LX',
  508. 'number': '18',
  509. 'part_no': ['AA1419049-E6'],
  510. 'revision': '10',
  511. 'serial': 'FBXNCND4H2001971',
  512. 'type': 'XCVR',
  513. 'vendor': 'AVAYA'},
  514. {'builtin': False,
  515. 'description': 'Avaya | Transceiver | 1G | LX',
  516. 'number': '19',
  517. 'part_no': ['AA1419049-E6'],
  518. 'revision': '10',
  519. 'serial': 'FBXNCND4J2001368',
  520. 'type': 'XCVR',
  521. 'vendor': 'AVAYA'},
  522. {'builtin': False,
  523. 'description': 'Avaya | Transceiver | 1G | LX',
  524. 'number': '20',
  525. 'part_no': ['AA1419049-E6'],
  526. 'revision': '10',
  527. 'serial': 'FBXNCND4J2002432',
  528. 'type': 'XCVR',
  529. 'vendor': 'AVAYA'},
  530. {'builtin': False,
  531. 'description': 'Avaya | Transceiver | 1G | LX',
  532. 'number': '21',
  533. 'part_no': ['AA1419049-E6'],
  534. 'revision': '10',
  535. 'serial': 'FBXNCND4H2002516',
  536. 'type': 'XCVR',
  537. 'vendor': 'AVAYA'},
  538. {'builtin': False,
  539. 'description': 'Avaya | Transceiver | 1G | LX',
  540. 'number': '22',
  541. 'part_no': ['AA1419049-E6'],
  542. 'revision': '10',
  543. 'serial': 'FBXNCND4G2001686',
  544. 'type': 'XCVR',
  545. 'vendor': 'AVAYA'},
  546. {'builtin': False,
  547. 'description': 'Avaya | Transceiver | 1G | LX',
  548. 'number': '23',
  549. 'part_no': ['AA1419049-E6'],
  550. 'revision': '10',
  551. 'serial': 'FBXNCND4G2000525',
  552. 'type': 'XCVR',
  553. 'vendor': 'AVAYA'},
  554. {'builtin': False,
  555. 'description': 'Avaya | Transceiver | 1G | LX',
  556. 'number': '24',
  557. 'part_no': ['AA1419049-E6'],
  558. 'revision': 'N/A',
  559. 'serial': 'WHTDCNBP13001824',
  560. 'type': 'XCVR',
  561. 'vendor': 'AVAYA'},
  562. {'builtin': False,
  563. 'description': 'Avaya | Transceiver | 10G | 10GB-LR',
  564. 'number': '31',
  565. 'part_no': ['AA1403001-E5'],
  566. 'revision': 'N/A',
  567. 'serial': 'JDSUTHC458906130',
  568. 'type': 'XCVR',
  569. 'vendor': 'AVAYA'},
  570. {'builtin': False,
  571. 'description': '5632FD',
  572. 'number': '3',
  573. 'part_no': ['5632FD'],
  574. 'revision': '06',
  575. 'serial': 'LBNNTMJPW5069N',
  576. 'type': 'CHASSIS',
  577. 'vendor': 'AVAYA'},
  578. {'builtin': False,
  579. 'description': 'Avaya | Transceiver | 1G | LX',
  580. 'number': '1',
  581. 'part_no': ['AA1419049-E6'],
  582. 'revision': 'N/A',
  583. 'serial': 'WHTDCNBP13002158',
  584. 'type': 'XCVR',
  585. 'vendor': 'AVAYA'},
  586. {'builtin': False,
  587. 'description': 'Avaya | Transceiver | 1G | LX',
  588. 'number': '2',
  589. 'part_no': ['AA1419049-E6'],
  590. 'revision': 'N/A',
  591. 'serial': 'WHTDCNBP13002636',
  592. 'type': 'XCVR',
  593. 'vendor': 'AVAYA'},
  594. {'builtin': False,
  595. 'description': 'Avaya | Transceiver | 1G | LX',
  596. 'number': '3',
  597. 'part_no': ['AA1419049-E6'],
  598. 'revision': '10',
  599. 'serial': 'FBXNCND4J2000882',
  600. 'type': 'XCVR',
  601. 'vendor': 'AVAYA'},
  602. {'builtin': False,
  603. 'description': 'Avaya | Transceiver | 1G | LX',
  604. 'number': '4',
  605. 'part_no': ['AA1419049-E6'],
  606. 'revision': 'N/A',
  607. 'serial': 'WHTDCNBP13002150',
  608. 'type': 'XCVR',
  609. 'vendor': 'AVAYA'},
  610. {'builtin': False,
  611. 'description': 'Avaya | Transceiver | 1G | LX',
  612. 'number': '5',
  613. 'part_no': ['AA1419049-E6'],
  614. 'revision': '10',
  615. 'serial': 'FBXNCND2M2000003',
  616. 'type': 'XCVR',
  617. 'vendor': 'AVAYA'},
  618. {'builtin': False,
  619. 'description': 'Avaya | Transceiver | 1G | LX',
  620. 'number': '6',
  621. 'part_no': ['AA1419049-E6'],
  622. 'revision': 'N/A',
  623. 'serial': 'WHTDCNBP13001410',
  624. 'type': 'XCVR',
  625. 'vendor': 'AVAYA'},
  626. {'builtin': False,
  627. 'description': 'Avaya | Transceiver | 1G | LX',
  628. 'number': '7',
  629. 'part_no': ['AA1419049-E6'],
  630. 'revision': '0000',
  631. 'serial': 'AVAGCNC004B60',
  632. 'type': 'XCVR',
  633. 'vendor': 'AVAYA'},
  634. {'builtin': False,
  635. 'description': 'Avaya | Transceiver | 1G | LX',
  636. 'number': '8',
  637. 'part_no': ['AA1419049-E6'],
  638. 'revision': 'N/A',
  639. 'serial': 'WHTDCNBP13002627',
  640. 'type': 'XCVR',
  641. 'vendor': 'AVAYA'},
  642. {'builtin': False,
  643. 'description': 'Avaya | Transceiver | 1G | LX',
  644. 'number': '9',
  645. 'part_no': ['AA1419049-E6'],
  646. 'revision': 'N/A',
  647. 'serial': 'WHTDCNBP13002312',
  648. 'type': 'XCVR',
  649. 'vendor': 'AVAYA'},
  650. {'builtin': False,
  651. 'description': 'Avaya | Transceiver | 1G | LX',
  652. 'number': '10',
  653. 'part_no': ['AA1419049-E6'],
  654. 'revision': '10',
  655. 'serial': 'FBXNCND2M2000040',
  656. 'type': 'XCVR',
  657. 'vendor': 'AVAYA'},
  658. {'builtin': False,
  659. 'description': 'Avaya | Transceiver | 1G | LX',
  660. 'number': '11',
  661. 'part_no': ['AA1419049-E6'],
  662. 'revision': '10',
  663. 'serial': 'FBXNCND4H2002761',
  664. 'type': 'XCVR',
  665. 'vendor': 'AVAYA'},
  666. {'builtin': False,
  667. 'description': 'Avaya | Transceiver | 1G | LX',
  668. 'number': '23',
  669. 'part_no': ['AA1419049-E6'],
  670. 'revision': 'N/A',
  671. 'serial': 'WHTDCNBP13000943',
  672. 'type': 'XCVR',
  673. 'vendor': 'AVAYA'},
  674. {'builtin': False,
  675. 'description': 'Avaya | Transceiver | 10G | 10GB-LR',
  676. 'number': '32',
  677. 'part_no': ['AA1403001-E5'],
  678. 'revision': 'N/A',
  679. 'serial': 'FBXNCNCA92000093',
  680. 'type': 'XCVR',
  681. 'vendor': 'AVAYA'},
  682. {'builtin': False,
  683. 'description': '5650TD',
  684. 'number': '4',
  685. 'part_no': ['5650TD'],
  686. 'revision': '05',
  687. 'serial': 'LBNNTMJPW409WH',
  688. 'type': 'CHASSIS',
  689. 'vendor': 'AVAYA'},
  690. {'builtin': False,
  691. 'description': '5650TD',
  692. 'number': '5',
  693. 'part_no': ['5650TD'],
  694. 'revision': '07',
  695. 'serial': 'LBNNTMJPW40CXK',
  696. 'type': 'CHASSIS',
  697. 'vendor': 'AVAYA'},
  698. {'builtin': False,
  699. 'description': '5650TD',
  700. 'number': '6',
  701. 'part_no': ['5650TD'],
  702. 'revision': '05',
  703. 'serial': 'LBNNTMJPW409V8',
  704. 'type': 'CHASSIS',
  705. 'vendor': 'AVAYA'},
  706. {'builtin': False,
  707. 'description': '5650TD',
  708. 'number': '7',
  709. 'part_no': ['5650TD'],
  710. 'revision': '07',
  711. 'serial': 'LBNNTMJPW40CTM',
  712. 'type': 'CHASSIS',
  713. 'vendor': 'AVAYA'}]
  714. o =
  715. {'builtin': False,
  716. 'description': 'Avaya | Transceiver | 1G | LX',
  717. 'number': '11',
  718. 'part_no': ['AA1419049-E6'],
  719. 'revision': '10',
  720. 'serial': 'FBXNCND4H2002761',
  721. 'type': 'XCVR',
  722. 'vendor': 'AVAYA'}
  723. ------------------------------------------------------------------------
  724. File: /opt/noc/lib/scheduler/scheduler.py (Line: 280)
  725. Function: _job_wrapper
  726. 273 else:
  727. 274 return self._job_wrapper(job, **kwargs)
  728. 275
  729. 276 def _job_wrapper(self, job, **kwargs):
  730. 277 tb = None
  731. 278 t0 = time.time()
  732. 279 try:
  733. 280 ==> r = job.handler(**kwargs)
  734. 281 except Exception:
  735. 282 # error_report()
  736. 283 tb = get_traceback()
  737. 284 job.error(tb)
  738. 285 job.on_exception()
  739. 286 s = job.S_EXCEPTION
  740. Variables:
  741. job =
  742. <noc.inv.discovery.jobs.asset_discovery.AssetDiscoveryJob object at 0x4661410>
  743. tb = None
  744. self = <noc.inv.discovery.scheduler.DiscoveryScheduler object at 0x3b5a450>
  745. t0 = 1395745962.023411
  746. kwargs =
  747. {'object': <ManagedObject: core-tech-01-stack>,
  748. 'result': [{'builtin': False,
  749. 'description': '5632FD',
  750. 'number': '1',
  751. 'part_no': ['5632FD'],
  752. 'revision': '06',
  753. 'serial': 'LBNNTMJPW5069M',
  754. 'type': 'CHASSIS',
  755. 'vendor': 'AVAYA'},
  756. {'builtin': False,
  757. 'description': 'Avaya | Transceiver | 1G | LX',
  758. 'number': '1',
  759. 'part_no': ['AA1419049-E6'],
  760. 'revision': '0000',
  761. 'serial': 'AVAGCNC004G6C',
  762. 'type': 'XCVR',
  763. 'vendor': 'AVAYA'},
  764. {'builtin': False,
  765. 'description': 'Avaya | Transceiver | 1G | LX',
  766. 'number': '2',
  767. 'part_no': ['AA1419049-E6'],
  768. 'revision': '0000',
  769. 'serial': 'AVAGCNC004CTW',
  770. 'type': 'XCVR',
  771. 'vendor': 'AVAYA'},
  772. {'builtin': False,
  773. 'description': 'Avaya | Transceiver | 1G | LX',
  774. 'number': '3',
  775. 'part_no': ['AA1419049-E6'],
  776. 'revision': '0000',
  777. 'serial': 'AVAGCNC004H6A',
  778. 'type': 'XCVR',
  779. 'vendor': 'AVAYA'},
  780. {'builtin': False,
  781. 'description': 'Avaya | Transceiver | 1G | LX',
  782. 'number': '4',
  783. 'part_no': ['AA1419049-E6'],
  784. 'revision': '0000',
  785. 'serial': 'AVAGCNC004H5S',
  786. 'type': 'XCVR',
  787. 'vendor': 'AVAYA'},
  788. {'builtin': False,
  789. 'description': 'Avaya | Transceiver | 1G | LX',
  790. 'number': '5',
  791. 'part_no': ['AA1419049-E6'],
  792. 'revision': '0000',
  793. 'serial': 'AVAGCNC004H6E',
  794. 'type': 'XCVR',
  795. 'vendor': 'AVAYA'},
  796. {'builtin': False,
  797. 'description': 'Avaya | Transceiver | 1G | LX',
  798. 'number': '6',
  799. 'part_no': ['AA1419049-E6'],
  800. 'revision': '0000',
  801. 'serial': 'AVAGCNC004H6N',
  802. 'type': 'XCVR',
  803. 'vendor': 'AVAYA'},
  804. {'builtin': False,
  805. 'description': 'Avaya | Transceiver | 1G | LX',
  806. 'number': '7',
  807. 'part_no': ['AA1419049-E6'],
  808. 'revision': '0000',
  809. 'serial': 'AVAGCNC004HC2',
  810. 'type': 'XCVR',
  811. 'vendor': 'AVAYA'},
  812. {'builtin': False,
  813. 'description': 'Avaya | Transceiver | 1G | LX',
  814. 'number': '8',
  815. 'part_no': ['AA1419049-E6'],
  816. 'revision': '0000',
  817. 'serial': 'AVAGCNC004HB3',
  818. 'type': 'XCVR',
  819. 'vendor': 'AVAYA'},
  820. {'builtin': False,
  821. 'description': 'Avaya | Transceiver | 1G | LX',
  822. 'number': '9',
  823. 'part_no': ['AA1419049-E6'],
  824. 'revision': '0000',
  825. 'serial': 'AVAGCNC004H60',
  826. 'type': 'XCVR',
  827. 'vendor': 'AVAYA'},
  828. {'builtin': False,
  829. 'description': 'Avaya | Transceiver | 1G | LX',
  830. 'number': '10',
  831. 'part_no': ['AA1419049-E6'],
  832. 'revision': '0000',
  833. 'serial': 'AVAGCNC004EW7',
  834. 'type': 'XCVR',
  835. 'vendor': 'AVAYA'},
  836. {'builtin': False,
  837. 'description': 'Avaya | Transceiver | 1G | LX',
  838. 'number': '11',
  839. 'part_no': ['AA1419049-E6'],
  840. 'revision': '0000',
  841. 'serial': 'AVAGCNC004H6T',
  842. 'type': 'XCVR',
  843. 'vendor': 'AVAYA'},
  844. {'builtin': False,
  845. 'description': 'Avaya | Transceiver | 1G | LX',
  846. 'number': '12',
  847. 'part_no': ['AA1419049-E6'],
  848. 'revision': '0000',
  849. 'serial': 'AVAGCNC004G6L',
  850. 'type': 'XCVR',
  851. 'vendor': 'AVAYA'},
  852. {'builtin': False,
  853. 'description': 'Avaya | Transceiver | 1G | LX',
  854. 'number': '13',
  855. 'part_no': ['AA1419049-E6'],
  856. 'revision': '0000',
  857. 'serial': 'AVAGCNC004HBJ',
  858. 'type': 'XCVR',
  859. 'vendor': 'AVAYA'},
  860. {'builtin': False,
  861. 'description': 'Avaya | Transceiver | 1G | LX',
  862. 'number': '14',
  863. 'part_no': ['AA1419049-E6'],
  864. 'revision': '0000',
  865. 'serial': 'AVAGCNC004G6E',
  866. 'type': 'XCVR',
  867. 'vendor': 'AVAYA'},
  868. {'builtin': False,
  869. 'description': 'Avaya | Transceiver | 1G | LX',
  870. 'number': '15',
  871. 'part_no': ['AA1419049-E6'],
  872. 'revision': '0000',
  873. 'serial': 'AVAGCNC004CT0',
  874. 'type': 'XCVR',
  875. 'vendor': 'AVAYA'},
  876. {'builtin': False,
  877. 'description': 'Avaya | Transceiver | 1G | LX',
  878. 'number': '16',
  879. 'part_no': ['AA1419049-E6'],
  880. 'revision': '0000',
  881. 'serial': 'AVAGCNC004FA3',
  882. 'type': 'XCVR',
  883. 'vendor': 'AVAYA'},
  884. {'builtin': False,
  885. 'description': 'Avaya | Transceiver | 1G | LX',
  886. 'number': '17',
  887. 'part_no': ['AA1419049-E6'],
  888. 'revision': '10',
  889. 'serial': 'FBXNCND4H2001332',
  890. 'type': 'XCVR',
  891. 'vendor': 'AVAYA'},
  892. {'builtin': False,
  893. 'description': 'Avaya | Transceiver | 1G | LX',
  894. 'number': '18',
  895. 'part_no': ['AA1419049-E6'],
  896. 'revision': '10',
  897. 'serial': 'FBXNCND4J2000880',
  898. 'type': 'XCVR',
  899. 'vendor': 'AVAYA'},
  900. {'builtin': False,
  901. 'description': 'Avaya | Transceiver | 1G | LX',
  902. 'number': '19',
  903. 'part_no': ['AA1419049-E6'],
  904. 'revision': '0000',
  905. 'serial': 'AVAGCNC004F49',
  906. 'type': 'XCVR',
  907. 'vendor': 'AVAYA'},
  908. {'builtin': False,
  909. 'description': 'Avaya | Transceiver | 1G | LX',
  910. 'number': '20',
  911. 'part_no': ['AA1419049-E6'],
  912. 'revision': '10',
  913. 'serial': 'FBXNCND4H2000333',
  914. 'type': 'XCVR',
  915. 'vendor': 'AVAYA'},
  916. {'builtin': False,
  917. 'description': 'Avaya | Transceiver | 1G | LX',
  918. 'number': '21',
  919. 'part_no': ['AA1419049-E6'],
  920. 'revision': '10',
  921. 'serial': 'FBXNCND4J2000641',
  922. 'type': 'XCVR',
  923. 'vendor': 'AVAYA'},
  924. {'builtin': False,
  925. 'description': 'Avaya | Transceiver | 1G | LX',
  926. 'number': '22',
  927. 'part_no': ['AA1419049-E6'],
  928. 'revision': '10',
  929. 'serial': 'FBXNCND4F2000026',
  930. 'type': 'XCVR',
  931. 'vendor': 'AVAYA'},
  932. {'builtin': False,
  933. 'description': 'Avaya | Transceiver | 1G | LX',
  934. 'number': '23',
  935. 'part_no': ['AA1419049-E6'],
  936. 'revision': '0000',
  937. 'serial': 'AVAGCNC004HAU',
  938. 'type': 'XCVR',
  939. 'vendor': 'AVAYA'},
  940. {'builtin': False,
  941. 'description': 'Avaya | Transceiver | 1G | LX',
  942. 'number': '24',
  943. 'part_no': ['AA1419049-E6'],
  944. 'revision': '10',
  945. 'serial': 'FBXNCND4J2002312',
  946. 'type': 'XCVR',
  947. 'vendor': 'AVAYA'},
  948. {'builtin': False,
  949. 'description': 'Avaya | Transceiver | 10G | 10GB-LR',
  950. 'number': '30',
  951. 'part_no': ['AA1403001-E5'],
  952. 'revision': 'N/A',
  953. 'serial': 'JDSUTHC4589060D1',
  954. 'type': 'XCVR',
  955. 'vendor': 'AVAYA'},
  956. {'builtin': False,
  957. 'description': 'Avaya | Transceiver | 10G | 10GB-LR',
  958. 'number': '31',
  959. 'part_no': ['AA1403001-E5'],
  960. 'revision': 'N/A',
  961. 'serial': 'JDSUTHC448906257',
  962. 'type': 'XCVR',
  963. 'vendor': 'AVAYA'},
  964. {'builtin': False,
  965. 'description': 'Avaya | Transceiver | 10G | 10GB-LR',
  966. 'number': '32',
  967. 'part_no': ['AA1403001-E5'],
  968. 'revision': 'N/A',
  969. 'serial': 'JDSUTHC458906220',
  970. 'type': 'XCVR',
  971. 'vendor': 'AVAYA'},
  972. {'builtin': False,
  973. 'description': '5632FD',
  974. 'number': '2',
  975. 'part_no': ['5632FD'],
  976. 'revision': '06',
  977. 'serial': 'LBNNTMJPW5069V',
  978. 'type': 'CHASSIS',
  979. 'vendor': 'AVAYA'},
  980. {'builtin': False,
  981. 'description': 'Avaya | Transceiver | 1G | LX',
  982. 'number': '1',
  983. 'part_no': ['AA1419049-E6'],
  984. 'revision': '10',
  985. 'serial': 'FBXNCND4J2001329',
  986. 'type': 'XCVR',
  987. 'vendor': 'AVAYA'},
  988. {'builtin': False,
  989. 'description': 'Avaya | Transceiver | 1G | LX',
  990. 'number': '2',
  991. 'part_no': ['AA1419049-E6'],
  992. 'revision': '10',
  993. 'serial': 'FBXNCND4J2001526',
  994. 'type': 'XCVR',
  995. 'vendor': 'AVAYA'},
  996. {'builtin': False,
  997. 'description': 'Avaya | Transceiver | 1G | LX',
  998. 'number': '3',
  999. 'part_no': ['AA1419049-E6'],
  1000. 'revision': '10',
  1001. 'serial': 'FBXNCND4G2000218',
  1002. 'type': 'XCVR',
  1003. 'vendor': 'AVAYA'},
  1004. {'builtin': False,
  1005. 'description': 'Avaya | Transceiver | 1G | LX',
  1006. 'number': '4',
  1007. 'part_no': ['AA1419049-E6'],
  1008. 'revision': '10',
  1009. 'serial': 'FBXNCND4G2001379',
  1010. 'type': 'XCVR',
  1011. 'vendor': 'AVAYA'},
  1012. {'builtin': False,
  1013. 'description': 'Avaya | Transceiver | 1G | LX',
  1014. 'number': '5',
  1015. 'part_no': ['AA1419049-E6'],
  1016. 'revision': '10',
  1017. 'serial': 'FBXNCND4G2000222',
  1018. 'type': 'XCVR',
  1019. 'vendor': 'AVAYA'},
  1020. {'builtin': False,
  1021. 'description': 'Avaya | Transceiver | 1G | LX',
  1022. 'number': '6',
  1023. 'part_no': ['AA1419049-E6'],
  1024. 'revision': '10',
  1025. 'serial': 'FBXNCND4G2000060',
  1026. 'type': 'XCVR',
  1027. 'vendor': 'AVAYA'},
  1028. {'builtin': False,
  1029. 'description': 'Avaya | Transceiver | 1G | LX',
  1030. 'number': '7',
  1031. 'part_no': ['AA1419049-E6'],
  1032. 'revision': '10',
  1033. 'serial': 'FBXNCND4J2002345',
  1034. 'type': 'XCVR',
  1035. 'vendor': 'AVAYA'},
  1036. {'builtin': False,
  1037. 'description': 'Avaya | Transceiver | 1G | LX',
  1038. 'number': '8',
  1039. 'part_no': ['AA1419049-E6'],
  1040. 'revision': '10',
  1041. 'serial': 'FBXNCND4H2002223',
  1042. 'type': 'XCVR',
  1043. 'vendor': 'AVAYA'},
  1044. {'builtin': False,
  1045. 'description': 'Avaya | Transceiver | 1G | LX',
  1046. 'number': '9',
  1047. 'part_no': ['AA1419049-E6'],
  1048. 'revision': '10',
  1049. 'serial': 'FBXNCND4G2000880',
  1050. 'type': 'XCVR',
  1051. 'vendor': 'AVAYA'},
  1052. {'builtin': False,
  1053. 'description': 'Avaya | Transceiver | 1G | LX',
  1054. 'number': '10',
  1055. 'part_no': ['AA1419049-E6'],
  1056. 'revision': '10',
  1057. 'serial': 'FBXNCND4G2001130',
  1058. 'type': 'XCVR',
  1059. 'vendor': 'AVAYA'},
  1060. {'builtin': False,
  1061. 'description': 'Avaya | Transceiver | 1G | LX',
  1062. 'number': '11',
  1063. 'part_no': ['AA1419049-E6'],
  1064. 'revision': '10',
  1065. 'serial': 'FBXNCND4J2001252',
  1066. 'type': 'XCVR',
  1067. 'vendor': 'AVAYA'},
  1068. {'builtin': False,
  1069. 'description': 'Avaya | Transceiver | 1G | LX',
  1070. 'number': '12',
  1071. 'part_no': ['AA1419049-E6'],
  1072. 'revision': '10',
  1073. 'serial': 'FBXNCND4H2000883',
  1074. 'type': 'XCVR',
  1075. 'vendor': 'AVAYA'},
  1076. {'builtin': False,
  1077. 'description': 'Avaya | Transceiver | 1G | LX',
  1078. 'number': '13',
  1079. 'part_no': ['AA1419049-E6'],
  1080. 'revision': '10',
  1081. 'serial': 'FBXNCND4J2001307',
  1082. 'type': 'XCVR',
  1083. 'vendor': 'AVAYA'},
  1084. {'builtin': False,
  1085. 'description': 'Avaya | Transceiver | 1G | LX',
  1086. 'number': '14',
  1087. 'part_no': ['AA1419049-E6'],
  1088. 'revision': '10',
  1089. 'serial': 'FBXNCND2M2001615',
  1090. 'type': 'XCVR',
  1091. 'vendor': 'AVAYA'},
  1092. {'builtin': False,
  1093. 'description': 'Avaya | Transceiver | 1G | LX',
  1094. 'number': '15',
  1095. 'part_no': ['AA1419049-E6'],
  1096. 'revision': '10',
  1097. 'serial': 'FBXNCND4J2000282',
  1098. 'type': 'XCVR',
  1099. 'vendor': 'AVAYA'},
  1100. {'builtin': False,
  1101. 'description': 'Avaya | Transceiver | 1G | LX',
  1102. 'number': '16',
  1103. 'part_no': ['AA1419049-E6'],
  1104. 'revision': '10',
  1105. 'serial': 'FBXNCND4H2000496',
  1106. 'type': 'XCVR',
  1107. 'vendor': 'AVAYA'},
  1108. {'builtin': False,
  1109. 'description': 'Avaya | Transceiver | 1G | LX',
  1110. 'number': '17',
  1111. 'part_no': ['AA1419049-E6'],
  1112. 'revision': '10',
  1113. 'serial': 'FBXNCND4J2001996',
  1114. 'type': 'XCVR',
  1115. 'vendor': 'AVAYA'},
  1116. {'builtin': False,
  1117. 'description': 'Avaya | Transceiver | 1G | LX',
  1118. 'number': '18',
  1119. 'part_no': ['AA1419049-E6'],
  1120. 'revision': '10',
  1121. 'serial': 'FBXNCND4H2001971',
  1122. 'type': 'XCVR',
  1123. 'vendor': 'AVAYA'},
  1124. {'builtin': False,
  1125. 'description': 'Avaya | Transceiver | 1G | LX',
  1126. 'number': '19',
  1127. 'part_no': ['AA1419049-E6'],
  1128. 'revision': '10',
  1129. 'serial': 'FBXNCND4J2001368',
  1130. 'type': 'XCVR',
  1131. 'vendor': 'AVAYA'},
  1132. {'builtin': False,
  1133. 'description': 'Avaya | Transceiver | 1G | LX',
  1134. 'number': '20',
  1135. 'part_no': ['AA1419049-E6'],
  1136. 'revision': '10',
  1137. 'serial': 'FBXNCND4J2002432',
  1138. 'type': 'XCVR',
  1139. 'vendor': 'AVAYA'},
  1140. {'builtin': False,
  1141. 'description': 'Avaya | Transceiver | 1G | LX',
  1142. 'number': '21',
  1143. 'part_no': ['AA1419049-E6'],
  1144. 'revision': '10',
  1145. 'serial': 'FBXNCND4H2002516',
  1146. 'type': 'XCVR',
  1147. 'vendor': 'AVAYA'},
  1148. {'builtin': False,
  1149. 'description': 'Avaya | Transceiver | 1G | LX',
  1150. 'number': '22',
  1151. 'part_no': ['AA1419049-E6'],
  1152. 'revision': '10',
  1153. 'serial': 'FBXNCND4G2001686',
  1154. 'type': 'XCVR',
  1155. 'vendor': 'AVAYA'},
  1156. {'builtin': False,
  1157. 'description': 'Avaya | Transceiver | 1G | LX',
  1158. 'number': '23',
  1159. 'part_no': ['AA1419049-E6'],
  1160. 'revision': '10',
  1161. 'serial': 'FBXNCND4G2000525',
  1162. 'type': 'XCVR',
  1163. 'vendor': 'AVAYA'},
  1164. {'builtin': False,
  1165. 'description': 'Avaya | Transceiver | 1G | LX',
  1166. 'number': '24',
  1167. 'part_no': ['AA1419049-E6'],
  1168. 'revision': 'N/A',
  1169. 'serial': 'WHTDCNBP13001824',
  1170. 'type': 'XCVR',
  1171. 'vendor': 'AVAYA'},
  1172. {'builtin': False,
  1173. 'description': 'Avaya | Transceiver | 10G | 10GB-LR',
  1174. 'number': '31',
  1175. 'part_no': ['AA1403001-E5'],
  1176. 'revision': 'N/A',
  1177. 'serial': 'JDSUTHC458906130',
  1178. 'type': 'XCVR',
  1179. 'vendor': 'AVAYA'},
  1180. {'builtin': False,
  1181. 'description': '5632FD',
  1182. 'number': '3',
  1183. 'part_no': ['5632FD'],
  1184. 'revision': '06',
  1185. 'serial': 'LBNNTMJPW5069N',
  1186. 'type': 'CHASSIS',
  1187. 'vendor': 'AVAYA'},
  1188. {'builtin': False,
  1189. 'description': 'Avaya | Transceiver | 1G | LX',
  1190. 'number': '1',
  1191. 'part_no': ['AA1419049-E6'],
  1192. 'revision': 'N/A',
  1193. 'serial': 'WHTDCNBP13002158',
  1194. 'type': 'XCVR',
  1195. 'vendor': 'AVAYA'},
  1196. {'builtin': False,
  1197. 'description': 'Avaya | Transceiver | 1G | LX',
  1198. 'number': '2',
  1199. 'part_no': ['AA1419049-E6'],
  1200. 'revision': 'N/A',
  1201. 'serial': 'WHTDCNBP13002636',
  1202. 'type': 'XCVR',
  1203. 'vendor': 'AVAYA'},
  1204. {'builtin': False,
  1205. 'description': 'Avaya | Transceiver | 1G | LX',
  1206. 'number': '3',
  1207. 'part_no': ['AA1419049-E6'],
  1208. 'revision': '10',
  1209. 'serial': 'FBXNCND4J2000882',
  1210. 'type': 'XCVR',
  1211. 'vendor': 'AVAYA'},
  1212. {'builtin': False,
  1213. 'description': 'Avaya | Transceiver | 1G | LX',
  1214. 'number': '4',
  1215. 'part_no': ['AA1419049-E6'],
  1216. 'revision': 'N/A',
  1217. 'serial': 'WHTDCNBP13002150',
  1218. 'type': 'XCVR',
  1219. 'vendor': 'AVAYA'},
  1220. {'builtin': False,
  1221. 'description': 'Avaya | Transceiver | 1G | LX',
  1222. 'number': '5',
  1223. 'part_no': ['AA1419049-E6'],
  1224. 'revision': '10',
  1225. 'serial': 'FBXNCND2M2000003',
  1226. 'type': 'XCVR',
  1227. 'vendor': 'AVAYA'},
  1228. {'builtin': False,
  1229. 'description': 'Avaya | Transceiver | 1G | LX',
  1230. 'number': '6',
  1231. 'part_no': ['AA1419049-E6'],
  1232. 'revision': 'N/A',
  1233. 'serial': 'WHTDCNBP13001410',
  1234. 'type': 'XCVR',
  1235. 'vendor': 'AVAYA'},
  1236. {'builtin': False,
  1237. 'description': 'Avaya | Transceiver | 1G | LX',
  1238. 'number': '7',
  1239. 'part_no': ['AA1419049-E6'],
  1240. 'revision': '0000',
  1241. 'serial': 'AVAGCNC004B60',
  1242. 'type': 'XCVR',
  1243. 'vendor': 'AVAYA'},
  1244. {'builtin': False,
  1245. 'description': 'Avaya | Transceiver | 1G | LX',
  1246. 'number': '8',
  1247. 'part_no': ['AA1419049-E6'],
  1248. 'revision': 'N/A',
  1249. 'serial': 'WHTDCNBP13002627',
  1250. 'type': 'XCVR',
  1251. 'vendor': 'AVAYA'},
  1252. {'builtin': False,
  1253. 'description': 'Avaya | Transceiver | 1G | LX',
  1254. 'number': '9',
  1255. 'part_no': ['AA1419049-E6'],
  1256. 'revision': 'N/A',
  1257. 'serial': 'WHTDCNBP13002312',
  1258. 'type': 'XCVR',
  1259. 'vendor': 'AVAYA'},
  1260. {'builtin': False,
  1261. 'description': 'Avaya | Transceiver | 1G | LX',
  1262. 'number': '10',
  1263. 'part_no': ['AA1419049-E6'],
  1264. 'revision': '10',
  1265. 'serial': 'FBXNCND2M2000040',
  1266. 'type': 'XCVR',
  1267. 'vendor': 'AVAYA'},
  1268. {'builtin': False,
  1269. 'description': 'Avaya | Transceiver | 1G | LX',
  1270. 'number': '11',
  1271. 'part_no': ['AA1419049-E6'],
  1272. 'revision': '10',
  1273. 'serial': 'FBXNCND4H2002761',
  1274. 'type': 'XCVR',
  1275. 'vendor': 'AVAYA'},
  1276. {'builtin': False,
  1277. 'description': 'Avaya | Transceiver | 1G | LX',
  1278. 'number': '23',
  1279. 'part_no': ['AA1419049-E6'],
  1280. 'revision': 'N/A',
  1281. 'serial': 'WHTDCNBP13000943',
  1282. 'type': 'XCVR',
  1283. 'vendor': 'AVAYA'},
  1284. {'builtin': False,
  1285. 'description': 'Avaya | Transceiver | 10G | 10GB-LR',
  1286. 'number': '32',
  1287. 'part_no': ['AA1403001-E5'],
  1288. 'revision': 'N/A',
  1289. 'serial': 'FBXNCNCA92000093',
  1290. 'type': 'XCVR',
  1291. 'vendor': 'AVAYA'},
  1292. {'builtin': False,
  1293. 'description': '5650TD',
  1294. 'number': '4',
  1295. 'part_no': ['5650TD'],
  1296. 'revision': '05',
  1297. 'serial': 'LBNNTMJPW409WH',
  1298. 'type': 'CHASSIS',
  1299. 'vendor': 'AVAYA'},
  1300. {'builtin': False,
  1301. 'description': '5650TD',
  1302. 'number': '5',
  1303. 'part_no': ['5650TD'],
  1304. 'revision': '07',
  1305. 'serial': 'LBNNTMJPW40CXK',
  1306. 'type': 'CHASSIS',
  1307. 'vendor': 'AVAYA'},
  1308. {'builtin': False,
  1309. 'description': '5650TD',
  1310. 'number': '6',
  1311. 'part_no': ['5650TD'],
  1312. 'revision': '05',
  1313. 'serial': 'LBNNTMJPW409V8',
  1314. 'type': 'CHASSIS',
  1315. 'vendor': 'AVAYA'},
  1316. {'builtin': False,
  1317. 'description': '5650TD',
  1318. 'number': '7',
  1319. 'part_no': ['5650TD'],
  1320. 'revision': '07',
  1321. 'serial': 'LBNNTMJPW40CTM',
  1322. 'type': 'CHASSIS',
  1323. 'vendor': 'AVAYA'}]}
  1324. ------------------------------------------------------------------------
  1325. END OF TRACEBACK
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement