@itentialopensource/adapter-centreon 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (126) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +18 -0
  3. package/.jshintrc +3 -0
  4. package/AUTH.md +39 -0
  5. package/BROKER.md +199 -0
  6. package/CALLS.md +170 -0
  7. package/CHANGELOG.md +9 -0
  8. package/CODE_OF_CONDUCT.md +43 -0
  9. package/CONTRIBUTING.md +172 -0
  10. package/ENHANCE.md +69 -0
  11. package/LICENSE +201 -0
  12. package/PROPERTIES.md +641 -0
  13. package/README.md +337 -0
  14. package/SUMMARY.md +9 -0
  15. package/SYSTEMINFO.md +11 -0
  16. package/TROUBLESHOOT.md +47 -0
  17. package/adapter.js +13198 -0
  18. package/adapterBase.js +1787 -0
  19. package/entities/.generic/action.json +214 -0
  20. package/entities/.generic/schema.json +28 -0
  21. package/entities/.system/action.json +50 -0
  22. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  23. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  24. package/entities/.system/schema.json +19 -0
  25. package/entities/.system/schemaTokenReq.json +53 -0
  26. package/entities/.system/schemaTokenResp.json +53 -0
  27. package/entities/AccessControl/action.json +25 -0
  28. package/entities/AccessControl/schema.json +19 -0
  29. package/entities/Acknowledgement/action.json +351 -0
  30. package/entities/Acknowledgement/schema.json +90 -0
  31. package/entities/Administration/action.json +290 -0
  32. package/entities/Administration/mockdatafiles/listonevaultconfigurationbyitsid-default.json +9 -0
  33. package/entities/Administration/schema.json +54 -0
  34. package/entities/Authentication/action.json +126 -0
  35. package/entities/Authentication/mockdatafiles/providersConfigurations-default.json +26 -0
  36. package/entities/Authentication/schema.json +35 -0
  37. package/entities/Check/action.json +124 -0
  38. package/entities/Check/schema.json +57 -0
  39. package/entities/Comment/action.json +24 -0
  40. package/entities/Comment/schema.json +19 -0
  41. package/entities/Downtime/action.json +291 -0
  42. package/entities/Downtime/schema.json +98 -0
  43. package/entities/Gorgone/action.json +45 -0
  44. package/entities/Gorgone/mockdatafiles/gorgonepollerresponsestoken-default.json +398 -0
  45. package/entities/Gorgone/schema.json +42 -0
  46. package/entities/Host/action.json +46 -0
  47. package/entities/Host/schema.json +53 -0
  48. package/entities/HostCategory/action.json +106 -0
  49. package/entities/HostCategory/schema.json +45 -0
  50. package/entities/HostGroup/action.json +107 -0
  51. package/entities/HostGroup/schema.json +78 -0
  52. package/entities/HostSeverity/action.json +65 -0
  53. package/entities/HostSeverity/schema.json +32 -0
  54. package/entities/HostTemplate/action.json +25 -0
  55. package/entities/HostTemplate/schema.json +19 -0
  56. package/entities/Icons/action.json +25 -0
  57. package/entities/Icons/schema.json +19 -0
  58. package/entities/MetaService/action.json +67 -0
  59. package/entities/MetaService/schema.json +43 -0
  60. package/entities/Metrics/action.json +109 -0
  61. package/entities/Metrics/schema.json +56 -0
  62. package/entities/MonitoringServer/action.json +172 -0
  63. package/entities/MonitoringServer/schema.json +48 -0
  64. package/entities/NotificationPolicy/action.json +67 -0
  65. package/entities/NotificationPolicy/schema.json +54 -0
  66. package/entities/Platform/action.json +86 -0
  67. package/entities/Platform/schema.json +22 -0
  68. package/entities/Proxy/action.json +45 -0
  69. package/entities/Proxy/schema.json +20 -0
  70. package/entities/Resource/action.json +67 -0
  71. package/entities/Resource/schema.json +164 -0
  72. package/entities/Service/action.json +67 -0
  73. package/entities/Service/schema.json +54 -0
  74. package/entities/ServiceCategory/action.json +66 -0
  75. package/entities/ServiceCategory/schema.json +21 -0
  76. package/entities/ServiceGroup/action.json +107 -0
  77. package/entities/ServiceGroup/schema.json +89 -0
  78. package/entities/ServiceSeverity/action.json +65 -0
  79. package/entities/ServiceSeverity/schema.json +32 -0
  80. package/entities/Severity/action.json +46 -0
  81. package/entities/Severity/schema.json +31 -0
  82. package/entities/Submit/action.json +84 -0
  83. package/entities/Submit/schema.json +55 -0
  84. package/entities/TimePeriod/action.json +106 -0
  85. package/entities/TimePeriod/schema.json +23 -0
  86. package/entities/Timeline/action.json +46 -0
  87. package/entities/Timeline/schema.json +53 -0
  88. package/entities/Topology/action.json +65 -0
  89. package/entities/Topology/schema.json +32 -0
  90. package/entities/User/action.json +171 -0
  91. package/entities/User/schema.json +48 -0
  92. package/entities/UserFilters/action.json +84 -0
  93. package/entities/UserFilters/schema.json +44 -0
  94. package/error.json +190 -0
  95. package/package.json +87 -0
  96. package/pronghorn.json +9146 -0
  97. package/propertiesDecorators.json +14 -0
  98. package/propertiesSchema.json +1248 -0
  99. package/refs?service=git-upload-pack +0 -0
  100. package/report/Centreon Monitoring tool.yml-OpenApi3Json.json +20770 -0
  101. package/report/creationReport.json +1400 -0
  102. package/sampleProperties.json +195 -0
  103. package/test/integration/adapterTestBasicGet.js +83 -0
  104. package/test/integration/adapterTestConnectivity.js +93 -0
  105. package/test/integration/adapterTestIntegration.js +4456 -0
  106. package/test/unit/adapterBaseTestUnit.js +949 -0
  107. package/test/unit/adapterTestUnit.js +5654 -0
  108. package/utils/adapterInfo.js +206 -0
  109. package/utils/addAuth.js +94 -0
  110. package/utils/artifactize.js +146 -0
  111. package/utils/basicGet.js +50 -0
  112. package/utils/checkMigrate.js +63 -0
  113. package/utils/entitiesToDB.js +178 -0
  114. package/utils/findPath.js +74 -0
  115. package/utils/methodDocumentor.js +225 -0
  116. package/utils/modify.js +154 -0
  117. package/utils/packModificationScript.js +35 -0
  118. package/utils/patches2bundledDeps.js +90 -0
  119. package/utils/pre-commit.sh +32 -0
  120. package/utils/removeHooks.js +20 -0
  121. package/utils/setup.js +33 -0
  122. package/utils/tbScript.js +246 -0
  123. package/utils/tbUtils.js +490 -0
  124. package/utils/testRunner.js +298 -0
  125. package/utils/troubleshootingAdapter.js +195 -0
  126. package/workflows/README.md +3 -0
@@ -0,0 +1,1400 @@
1
+ {
2
+ "errors": [],
3
+ "statistics": [
4
+ {
5
+ "owner": "errorJson",
6
+ "description": "Standard adapter errors available for use",
7
+ "value": 31
8
+ },
9
+ {
10
+ "owner": "packageJson",
11
+ "description": "Number of production dependencies",
12
+ "value": 16
13
+ },
14
+ {
15
+ "owner": "packageJson",
16
+ "description": "Number of development dependencies",
17
+ "value": 7
18
+ },
19
+ {
20
+ "owner": "packageJson",
21
+ "description": "Number of npm scripts",
22
+ "value": 22
23
+ },
24
+ {
25
+ "owner": "packageJson",
26
+ "description": "Runtime Library dependency",
27
+ "value": "^4.48.0"
28
+ },
29
+ {
30
+ "owner": "propertiesSchemaJson",
31
+ "description": "Adapter properties defined in the propertiesSchema file",
32
+ "value": 70
33
+ },
34
+ {
35
+ "owner": "adapterJS",
36
+ "description": "Lines of code generated in adapter.js",
37
+ "value": 13199
38
+ },
39
+ {
40
+ "owner": "adapterJS",
41
+ "description": "Number of Functions added to adapter.js",
42
+ "value": 148
43
+ },
44
+ {
45
+ "owner": "pronghornJson",
46
+ "description": "Number of Methods added to pronghorn.json",
47
+ "value": 148
48
+ },
49
+ {
50
+ "owner": "markdown",
51
+ "description": "Number of lines in the README.md",
52
+ "value": 338
53
+ },
54
+ {
55
+ "owner": "markdown",
56
+ "description": "Number of lines in the SUMMARY.md",
57
+ "value": 9
58
+ },
59
+ {
60
+ "owner": "markdown",
61
+ "description": "Number of lines in the PROPERTIES.md",
62
+ "value": 642
63
+ },
64
+ {
65
+ "owner": "markdown",
66
+ "description": "Number of lines in the TROUBLESHOOT.md",
67
+ "value": 48
68
+ },
69
+ {
70
+ "owner": "markdown",
71
+ "description": "Number of lines in the ENHANCE.md",
72
+ "value": 70
73
+ },
74
+ {
75
+ "owner": "markdown",
76
+ "description": "Number of lines in the BROKER.md",
77
+ "value": 200
78
+ },
79
+ {
80
+ "owner": "markdown",
81
+ "description": "Number of lines in the CALLS.md",
82
+ "value": 171
83
+ },
84
+ {
85
+ "owner": "markdown",
86
+ "description": "Number of lines in the AUTH.md",
87
+ "value": 40
88
+ },
89
+ {
90
+ "owner": "markdown",
91
+ "description": "Number of lines in the SYSTEMINFO.md",
92
+ "value": 11
93
+ },
94
+ {
95
+ "owner": "unitTestJS",
96
+ "description": "Number of lines of code in unit tests",
97
+ "value": 5655
98
+ },
99
+ {
100
+ "owner": "unitTestJS",
101
+ "description": "Number of unit tests",
102
+ "value": 354
103
+ },
104
+ {
105
+ "owner": "integrationTestJS",
106
+ "description": "Number of lines of code in integration tests",
107
+ "value": 4457
108
+ },
109
+ {
110
+ "owner": "integrationTestJS",
111
+ "description": "Number of integration tests",
112
+ "value": 153
113
+ },
114
+ {
115
+ "owner": "actionJson",
116
+ "description": "Number of actions for Acknowledgement entity",
117
+ "value": 17
118
+ },
119
+ {
120
+ "owner": "actionJson",
121
+ "description": "Number of actions for Downtime entity",
122
+ "value": 14
123
+ },
124
+ {
125
+ "owner": "actionJson",
126
+ "description": "Number of actions for MetaService entity",
127
+ "value": 3
128
+ },
129
+ {
130
+ "owner": "actionJson",
131
+ "description": "Number of actions for Check entity",
132
+ "value": 6
133
+ },
134
+ {
135
+ "owner": "actionJson",
136
+ "description": "Number of actions for Submit entity",
137
+ "value": 4
138
+ },
139
+ {
140
+ "owner": "actionJson",
141
+ "description": "Number of actions for Administration entity",
142
+ "value": 14
143
+ },
144
+ {
145
+ "owner": "actionJson",
146
+ "description": "Number of actions for Authentication entity",
147
+ "value": 6
148
+ },
149
+ {
150
+ "owner": "actionJson",
151
+ "description": "Number of actions for Gorgone entity",
152
+ "value": 2
153
+ },
154
+ {
155
+ "owner": "actionJson",
156
+ "description": "Number of actions for Host entity",
157
+ "value": 2
158
+ },
159
+ {
160
+ "owner": "actionJson",
161
+ "description": "Number of actions for HostCategory entity",
162
+ "value": 5
163
+ },
164
+ {
165
+ "owner": "actionJson",
166
+ "description": "Number of actions for HostGroup entity",
167
+ "value": 5
168
+ },
169
+ {
170
+ "owner": "actionJson",
171
+ "description": "Number of actions for HostSeverity entity",
172
+ "value": 3
173
+ },
174
+ {
175
+ "owner": "actionJson",
176
+ "description": "Number of actions for HostTemplate entity",
177
+ "value": 1
178
+ },
179
+ {
180
+ "owner": "actionJson",
181
+ "description": "Number of actions for MonitoringServer entity",
182
+ "value": 8
183
+ },
184
+ {
185
+ "owner": "actionJson",
186
+ "description": "Number of actions for Proxy entity",
187
+ "value": 2
188
+ },
189
+ {
190
+ "owner": "actionJson",
191
+ "description": "Number of actions for Service entity",
192
+ "value": 3
193
+ },
194
+ {
195
+ "owner": "actionJson",
196
+ "description": "Number of actions for ServiceGroup entity",
197
+ "value": 5
198
+ },
199
+ {
200
+ "owner": "actionJson",
201
+ "description": "Number of actions for ServiceCategory entity",
202
+ "value": 3
203
+ },
204
+ {
205
+ "owner": "actionJson",
206
+ "description": "Number of actions for Severity entity",
207
+ "value": 2
208
+ },
209
+ {
210
+ "owner": "actionJson",
211
+ "description": "Number of actions for TimePeriod entity",
212
+ "value": 5
213
+ },
214
+ {
215
+ "owner": "actionJson",
216
+ "description": "Number of actions for Topology entity",
217
+ "value": 3
218
+ },
219
+ {
220
+ "owner": "actionJson",
221
+ "description": "Number of actions for ServiceSeverity entity",
222
+ "value": 3
223
+ },
224
+ {
225
+ "owner": "actionJson",
226
+ "description": "Number of actions for Icons entity",
227
+ "value": 1
228
+ },
229
+ {
230
+ "owner": "actionJson",
231
+ "description": "Number of actions for NotificationPolicy entity",
232
+ "value": 3
233
+ },
234
+ {
235
+ "owner": "actionJson",
236
+ "description": "Number of actions for User entity",
237
+ "value": 8
238
+ },
239
+ {
240
+ "owner": "actionJson",
241
+ "description": "Number of actions for UserFilters entity",
242
+ "value": 4
243
+ },
244
+ {
245
+ "owner": "actionJson",
246
+ "description": "Number of actions for AccessControl entity",
247
+ "value": 1
248
+ },
249
+ {
250
+ "owner": "actionJson",
251
+ "description": "Number of actions for Resource entity",
252
+ "value": 3
253
+ },
254
+ {
255
+ "owner": "actionJson",
256
+ "description": "Number of actions for Comment entity",
257
+ "value": 1
258
+ },
259
+ {
260
+ "owner": "actionJson",
261
+ "description": "Number of actions for Metrics entity",
262
+ "value": 5
263
+ },
264
+ {
265
+ "owner": "actionJson",
266
+ "description": "Number of actions for Timeline entity",
267
+ "value": 2
268
+ },
269
+ {
270
+ "owner": "actionJson",
271
+ "description": "Number of actions for Platform entity",
272
+ "value": 4
273
+ },
274
+ {
275
+ "owner": "actionJson",
276
+ "description": "Total number of actions",
277
+ "value": 148
278
+ },
279
+ {
280
+ "owner": "actionJson",
281
+ "description": "Total number of entities",
282
+ "value": 32
283
+ },
284
+ {
285
+ "owner": "schemaJson",
286
+ "description": "Number of schemas for Acknowledgement entity",
287
+ "value": 1
288
+ },
289
+ {
290
+ "owner": "schemaJson",
291
+ "description": "Number of schemas for Downtime entity",
292
+ "value": 1
293
+ },
294
+ {
295
+ "owner": "schemaJson",
296
+ "description": "Number of schemas for MetaService entity",
297
+ "value": 1
298
+ },
299
+ {
300
+ "owner": "schemaJson",
301
+ "description": "Number of schemas for Check entity",
302
+ "value": 1
303
+ },
304
+ {
305
+ "owner": "schemaJson",
306
+ "description": "Number of schemas for Submit entity",
307
+ "value": 1
308
+ },
309
+ {
310
+ "owner": "schemaJson",
311
+ "description": "Number of schemas for Administration entity",
312
+ "value": 1
313
+ },
314
+ {
315
+ "owner": "schemaJson",
316
+ "description": "Number of schemas for Authentication entity",
317
+ "value": 1
318
+ },
319
+ {
320
+ "owner": "schemaJson",
321
+ "description": "Number of schemas for Gorgone entity",
322
+ "value": 1
323
+ },
324
+ {
325
+ "owner": "schemaJson",
326
+ "description": "Number of schemas for Host entity",
327
+ "value": 1
328
+ },
329
+ {
330
+ "owner": "schemaJson",
331
+ "description": "Number of schemas for HostCategory entity",
332
+ "value": 1
333
+ },
334
+ {
335
+ "owner": "schemaJson",
336
+ "description": "Number of schemas for HostGroup entity",
337
+ "value": 1
338
+ },
339
+ {
340
+ "owner": "schemaJson",
341
+ "description": "Number of schemas for HostSeverity entity",
342
+ "value": 1
343
+ },
344
+ {
345
+ "owner": "schemaJson",
346
+ "description": "Number of schemas for HostTemplate entity",
347
+ "value": 1
348
+ },
349
+ {
350
+ "owner": "schemaJson",
351
+ "description": "Number of schemas for MonitoringServer entity",
352
+ "value": 1
353
+ },
354
+ {
355
+ "owner": "schemaJson",
356
+ "description": "Number of schemas for Proxy entity",
357
+ "value": 1
358
+ },
359
+ {
360
+ "owner": "schemaJson",
361
+ "description": "Number of schemas for Service entity",
362
+ "value": 1
363
+ },
364
+ {
365
+ "owner": "schemaJson",
366
+ "description": "Number of schemas for ServiceGroup entity",
367
+ "value": 1
368
+ },
369
+ {
370
+ "owner": "schemaJson",
371
+ "description": "Number of schemas for ServiceCategory entity",
372
+ "value": 1
373
+ },
374
+ {
375
+ "owner": "schemaJson",
376
+ "description": "Number of schemas for Severity entity",
377
+ "value": 1
378
+ },
379
+ {
380
+ "owner": "schemaJson",
381
+ "description": "Number of schemas for TimePeriod entity",
382
+ "value": 1
383
+ },
384
+ {
385
+ "owner": "schemaJson",
386
+ "description": "Number of schemas for Topology entity",
387
+ "value": 1
388
+ },
389
+ {
390
+ "owner": "schemaJson",
391
+ "description": "Number of schemas for ServiceSeverity entity",
392
+ "value": 1
393
+ },
394
+ {
395
+ "owner": "schemaJson",
396
+ "description": "Number of schemas for Icons entity",
397
+ "value": 1
398
+ },
399
+ {
400
+ "owner": "schemaJson",
401
+ "description": "Number of schemas for NotificationPolicy entity",
402
+ "value": 1
403
+ },
404
+ {
405
+ "owner": "schemaJson",
406
+ "description": "Number of schemas for User entity",
407
+ "value": 1
408
+ },
409
+ {
410
+ "owner": "schemaJson",
411
+ "description": "Number of schemas for UserFilters entity",
412
+ "value": 1
413
+ },
414
+ {
415
+ "owner": "schemaJson",
416
+ "description": "Number of schemas for AccessControl entity",
417
+ "value": 1
418
+ },
419
+ {
420
+ "owner": "schemaJson",
421
+ "description": "Number of schemas for Resource entity",
422
+ "value": 1
423
+ },
424
+ {
425
+ "owner": "schemaJson",
426
+ "description": "Number of schemas for Comment entity",
427
+ "value": 1
428
+ },
429
+ {
430
+ "owner": "schemaJson",
431
+ "description": "Number of schemas for Metrics entity",
432
+ "value": 1
433
+ },
434
+ {
435
+ "owner": "schemaJson",
436
+ "description": "Number of schemas for Timeline entity",
437
+ "value": 1
438
+ },
439
+ {
440
+ "owner": "schemaJson",
441
+ "description": "Number of schemas for Platform entity",
442
+ "value": 1
443
+ },
444
+ {
445
+ "owner": "schemaJson",
446
+ "description": "Total number of schemas",
447
+ "value": 32
448
+ },
449
+ {
450
+ "owner": "mockdata",
451
+ "description": "Number of mock data files for Acknowledgement entity",
452
+ "value": 0
453
+ },
454
+ {
455
+ "owner": "mockdata",
456
+ "description": "Number of mock data files for Downtime entity",
457
+ "value": 0
458
+ },
459
+ {
460
+ "owner": "mockdata",
461
+ "description": "Number of mock data files for MetaService entity",
462
+ "value": 0
463
+ },
464
+ {
465
+ "owner": "mockdata",
466
+ "description": "Number of mock data files for Check entity",
467
+ "value": 0
468
+ },
469
+ {
470
+ "owner": "mockdata",
471
+ "description": "Number of mock data files for Submit entity",
472
+ "value": 0
473
+ },
474
+ {
475
+ "owner": "mockdata",
476
+ "description": "Number of mock data files for Administration entity",
477
+ "value": 1
478
+ },
479
+ {
480
+ "owner": "mockdata",
481
+ "description": "Number of mock data files for Authentication entity",
482
+ "value": 1
483
+ },
484
+ {
485
+ "owner": "mockdata",
486
+ "description": "Number of mock data files for Gorgone entity",
487
+ "value": 1
488
+ },
489
+ {
490
+ "owner": "mockdata",
491
+ "description": "Number of mock data files for Host entity",
492
+ "value": 0
493
+ },
494
+ {
495
+ "owner": "mockdata",
496
+ "description": "Number of mock data files for HostCategory entity",
497
+ "value": 0
498
+ },
499
+ {
500
+ "owner": "mockdata",
501
+ "description": "Number of mock data files for HostGroup entity",
502
+ "value": 0
503
+ },
504
+ {
505
+ "owner": "mockdata",
506
+ "description": "Number of mock data files for HostSeverity entity",
507
+ "value": 0
508
+ },
509
+ {
510
+ "owner": "mockdata",
511
+ "description": "Number of mock data files for HostTemplate entity",
512
+ "value": 0
513
+ },
514
+ {
515
+ "owner": "mockdata",
516
+ "description": "Number of mock data files for MonitoringServer entity",
517
+ "value": 0
518
+ },
519
+ {
520
+ "owner": "mockdata",
521
+ "description": "Number of mock data files for Proxy entity",
522
+ "value": 0
523
+ },
524
+ {
525
+ "owner": "mockdata",
526
+ "description": "Number of mock data files for Service entity",
527
+ "value": 0
528
+ },
529
+ {
530
+ "owner": "mockdata",
531
+ "description": "Number of mock data files for ServiceGroup entity",
532
+ "value": 0
533
+ },
534
+ {
535
+ "owner": "mockdata",
536
+ "description": "Number of mock data files for ServiceCategory entity",
537
+ "value": 0
538
+ },
539
+ {
540
+ "owner": "mockdata",
541
+ "description": "Number of mock data files for Severity entity",
542
+ "value": 0
543
+ },
544
+ {
545
+ "owner": "mockdata",
546
+ "description": "Number of mock data files for TimePeriod entity",
547
+ "value": 0
548
+ },
549
+ {
550
+ "owner": "mockdata",
551
+ "description": "Number of mock data files for Topology entity",
552
+ "value": 0
553
+ },
554
+ {
555
+ "owner": "mockdata",
556
+ "description": "Number of mock data files for ServiceSeverity entity",
557
+ "value": 0
558
+ },
559
+ {
560
+ "owner": "mockdata",
561
+ "description": "Number of mock data files for Icons entity",
562
+ "value": 0
563
+ },
564
+ {
565
+ "owner": "mockdata",
566
+ "description": "Number of mock data files for NotificationPolicy entity",
567
+ "value": 0
568
+ },
569
+ {
570
+ "owner": "mockdata",
571
+ "description": "Number of mock data files for User entity",
572
+ "value": 0
573
+ },
574
+ {
575
+ "owner": "mockdata",
576
+ "description": "Number of mock data files for UserFilters entity",
577
+ "value": 0
578
+ },
579
+ {
580
+ "owner": "mockdata",
581
+ "description": "Number of mock data files for AccessControl entity",
582
+ "value": 0
583
+ },
584
+ {
585
+ "owner": "mockdata",
586
+ "description": "Number of mock data files for Resource entity",
587
+ "value": 0
588
+ },
589
+ {
590
+ "owner": "mockdata",
591
+ "description": "Number of mock data files for Comment entity",
592
+ "value": 0
593
+ },
594
+ {
595
+ "owner": "mockdata",
596
+ "description": "Number of mock data files for Metrics entity",
597
+ "value": 0
598
+ },
599
+ {
600
+ "owner": "mockdata",
601
+ "description": "Number of mock data files for Timeline entity",
602
+ "value": 0
603
+ },
604
+ {
605
+ "owner": "mockdata",
606
+ "description": "Number of mock data files for Platform entity",
607
+ "value": 0
608
+ },
609
+ {
610
+ "owner": "mockdata",
611
+ "description": "Total number of mock data files",
612
+ "value": 3
613
+ },
614
+ {
615
+ "owner": "actionJson",
616
+ "description": "Number of actions for .system entity",
617
+ "value": 2
618
+ },
619
+ {
620
+ "owner": "schemaJson",
621
+ "description": "Number of schemas for .system entity",
622
+ "value": 3
623
+ },
624
+ {
625
+ "owner": "mockdata",
626
+ "description": "Number of mock data files for .system entity",
627
+ "value": 2
628
+ },
629
+ {
630
+ "owner": "System",
631
+ "description": "System entity files",
632
+ "value": 6
633
+ },
634
+ {
635
+ "owner": "usecases",
636
+ "description": "Number of workflows",
637
+ "value": 0
638
+ },
639
+ {
640
+ "owner": "staticFile",
641
+ "description": "Number of lines of code in adapterBase.js",
642
+ "value": 1788
643
+ },
644
+ {
645
+ "owner": "staticFile",
646
+ "description": "Number of static files added",
647
+ "value": 38
648
+ },
649
+ {
650
+ "owner": "Overall",
651
+ "description": "Total lines of Code",
652
+ "value": 25099
653
+ },
654
+ {
655
+ "owner": "Overall",
656
+ "description": "Total Tests",
657
+ "value": 507
658
+ },
659
+ {
660
+ "owner": "Overall",
661
+ "description": "Total Files",
662
+ "value": 119
663
+ }
664
+ ],
665
+ "warnings": [],
666
+ "apiParsingReport": {
667
+ "no_mockdata": [
668
+ {
669
+ "fnName": "listallacknowledgements",
670
+ "method": "get",
671
+ "path": "/monitoring/acknowledgements"
672
+ },
673
+ {
674
+ "fnName": "massivelydisacknowledgeresources",
675
+ "method": "delete",
676
+ "path": "/monitoring/resources/acknowledgements"
677
+ },
678
+ {
679
+ "fnName": "displayoneacknowledgement",
680
+ "method": "get",
681
+ "path": "/monitoring/acknowledgements/{acknowledgement_id}"
682
+ },
683
+ {
684
+ "fnName": "listallhostsacknowledgements",
685
+ "method": "get",
686
+ "path": "/monitoring/hosts/acknowledgements"
687
+ },
688
+ {
689
+ "fnName": "addanacknowledgementonmultiplehosts",
690
+ "method": "post",
691
+ "path": "/monitoring/hosts/acknowledgements"
692
+ },
693
+ {
694
+ "fnName": "listallservicesacknowledgements",
695
+ "method": "get",
696
+ "path": "/monitoring/services/acknowledgements"
697
+ },
698
+ {
699
+ "fnName": "addanacknowledgementonmultipleservices",
700
+ "method": "post",
701
+ "path": "/monitoring/services/acknowledgements"
702
+ },
703
+ {
704
+ "fnName": "listallacknowledgementsofahost",
705
+ "method": "get",
706
+ "path": "/monitoring/hosts/{host_id}/acknowledgements"
707
+ },
708
+ {
709
+ "fnName": "addanacknowledgementonchosenhost",
710
+ "method": "post",
711
+ "path": "/monitoring/hosts/{host_id}/acknowledgements"
712
+ },
713
+ {
714
+ "fnName": "cancelanacknowledgementonahost",
715
+ "method": "delete",
716
+ "path": "/monitoring/hosts/{host_id}/acknowledgements"
717
+ },
718
+ {
719
+ "fnName": "listallacknowledgementsofaservice",
720
+ "method": "get",
721
+ "path": "/monitoring/hosts/{host_id}/services/{service_id}/acknowledgements"
722
+ },
723
+ {
724
+ "fnName": "addanacknowledgementonchosenservice",
725
+ "method": "post",
726
+ "path": "/monitoring/hosts/{host_id}/services/{service_id}/acknowledgements"
727
+ },
728
+ {
729
+ "fnName": "cancelanacknowledgementonaservice",
730
+ "method": "delete",
731
+ "path": "/monitoring/hosts/{host_id}/services/{service_id}/acknowledgements"
732
+ },
733
+ {
734
+ "fnName": "listallacknowledgementsofametaservice",
735
+ "method": "get",
736
+ "path": "/monitoring/metaservices/{meta_id}/acknowledgements"
737
+ },
738
+ {
739
+ "fnName": "addanacknowledgementonchosenmetaservice",
740
+ "method": "post",
741
+ "path": "/monitoring/metaservices/{meta_id}/acknowledgements"
742
+ },
743
+ {
744
+ "fnName": "cancelanacknowledgementonametaservice",
745
+ "method": "delete",
746
+ "path": "/monitoring/metaservices/{meta_id}/acknowledgements"
747
+ },
748
+ {
749
+ "fnName": "acknowledgemultipleresources",
750
+ "method": "post",
751
+ "path": "/monitoring/resources/acknowledge"
752
+ },
753
+ {
754
+ "fnName": "listalldowntimesofametaservice",
755
+ "method": "get",
756
+ "path": "/monitoring/metaservices/{meta_id}/downtimes"
757
+ },
758
+ {
759
+ "fnName": "addadowntimeonametaservice",
760
+ "method": "post",
761
+ "path": "/monitoring/metaservices/{meta_id}/downtimes"
762
+ },
763
+ {
764
+ "fnName": "listallmetaservicesconfigurations",
765
+ "method": "get",
766
+ "path": "/configuration/metaservices"
767
+ },
768
+ {
769
+ "fnName": "getametaservice",
770
+ "method": "get",
771
+ "path": "/configuration/metaservices/{meta_id}"
772
+ },
773
+ {
774
+ "fnName": "listallmetaservicemetrics",
775
+ "method": "get",
776
+ "path": "/monitoring/metaservices/{meta_id}/metrics"
777
+ },
778
+ {
779
+ "fnName": "checkmetaservice",
780
+ "method": "post",
781
+ "path": "/monitoring/metaservices/{meta_id}/check"
782
+ },
783
+ {
784
+ "fnName": "submitaresulttoasinglemetaservice",
785
+ "method": "post",
786
+ "path": "/monitoring/metaservices/{meta_id}/submit"
787
+ },
788
+ {
789
+ "fnName": "getlocalproviderconfigurationwithpasswordsecuritypolicy",
790
+ "method": "get",
791
+ "path": "/administration/authentication/providers/local"
792
+ },
793
+ {
794
+ "fnName": "updatelocalproviderconfiguration",
795
+ "method": "put",
796
+ "path": "/administration/authentication/providers/local"
797
+ },
798
+ {
799
+ "fnName": "getopenidproviderconfiguration",
800
+ "method": "get",
801
+ "path": "/administration/authentication/providers/openid"
802
+ },
803
+ {
804
+ "fnName": "updateopenidproviderconfiguration",
805
+ "method": "put",
806
+ "path": "/administration/authentication/providers/openid"
807
+ },
808
+ {
809
+ "fnName": "getSAMLproviderconfiguration",
810
+ "method": "get",
811
+ "path": "/administration/authentication/providers/saml"
812
+ },
813
+ {
814
+ "fnName": "updateSAMLproviderconfiguration",
815
+ "method": "put",
816
+ "path": "/administration/authentication/providers/saml"
817
+ },
818
+ {
819
+ "fnName": "getwebSsoproviderconfigurationinformation",
820
+ "method": "get",
821
+ "path": "/administration/authentication/providers/web-sso"
822
+ },
823
+ {
824
+ "fnName": "updatewebSsoproviderconfiguration",
825
+ "method": "put",
826
+ "path": "/administration/authentication/providers/web-sso"
827
+ },
828
+ {
829
+ "fnName": "administrationparameters",
830
+ "method": "post",
831
+ "path": "/administration/parameters"
832
+ },
833
+ {
834
+ "fnName": "createvaultconfiguration",
835
+ "method": "post",
836
+ "path": "/administration/vaults/{vault_id}/configurations"
837
+ },
838
+ {
839
+ "fnName": "listvaultconfigurationsbyprovider",
840
+ "method": "get",
841
+ "path": "/administration/vaults/{vault_id}/configurations"
842
+ },
843
+ {
844
+ "fnName": "updatevaultconfiguration",
845
+ "method": "put",
846
+ "path": "/administration/vaults/{vault_id}/configurations/{vault_configuration_id}"
847
+ },
848
+ {
849
+ "fnName": "deletevaultconfiguration",
850
+ "method": "delete",
851
+ "path": "/administration/vaults/{vault_id}/configurations/{vault_configuration_id}"
852
+ },
853
+ {
854
+ "fnName": "login",
855
+ "method": "post",
856
+ "path": "/login"
857
+ },
858
+ {
859
+ "fnName": "logout",
860
+ "method": "get",
861
+ "path": "/logout"
862
+ },
863
+ {
864
+ "fnName": "updateuserpassword",
865
+ "method": "put",
866
+ "path": "/authentication/users/{alias}/password"
867
+ },
868
+ {
869
+ "fnName": "authenticationtoprovider",
870
+ "method": "post",
871
+ "path": "/authentication/providers/configurations/{provider_configuration_name}"
872
+ },
873
+ {
874
+ "fnName": "logoutSession",
875
+ "method": "post",
876
+ "path": "/authentication/logout"
877
+ },
878
+ {
879
+ "fnName": "listalldowntimes",
880
+ "method": "get",
881
+ "path": "/monitoring/downtimes"
882
+ },
883
+ {
884
+ "fnName": "displayonedowntime",
885
+ "method": "get",
886
+ "path": "/monitoring/downtimes/{downtime_id}"
887
+ },
888
+ {
889
+ "fnName": "canceladowntime",
890
+ "method": "delete",
891
+ "path": "/monitoring/downtimes/{downtime_id}"
892
+ },
893
+ {
894
+ "fnName": "listallhostsdowntimes",
895
+ "method": "get",
896
+ "path": "/monitoring/hosts/downtimes"
897
+ },
898
+ {
899
+ "fnName": "addandowntimeonmultiplehosts",
900
+ "method": "post",
901
+ "path": "/monitoring/hosts/downtimes"
902
+ },
903
+ {
904
+ "fnName": "listallservicesdowntimes",
905
+ "method": "get",
906
+ "path": "/monitoring/services/downtimes"
907
+ },
908
+ {
909
+ "fnName": "addandowntimeonmultipleservices",
910
+ "method": "post",
911
+ "path": "/monitoring/services/downtimes"
912
+ },
913
+ {
914
+ "fnName": "listalldowntimesofahost",
915
+ "method": "get",
916
+ "path": "/monitoring/hosts/{host_id}/downtimes"
917
+ },
918
+ {
919
+ "fnName": "addadowntimeonahost",
920
+ "method": "post",
921
+ "path": "/monitoring/hosts/{host_id}/downtimes"
922
+ },
923
+ {
924
+ "fnName": "listalldowntimesofaservice",
925
+ "method": "get",
926
+ "path": "/monitoring/hosts/{host_id}/services/{service_id}/downtimes"
927
+ },
928
+ {
929
+ "fnName": "addadowntimeonaservice",
930
+ "method": "post",
931
+ "path": "/monitoring/hosts/{host_id}/services/{service_id}/downtimes"
932
+ },
933
+ {
934
+ "fnName": "setdowntimeformultipleresources",
935
+ "method": "post",
936
+ "path": "/monitoring/resources/downtime"
937
+ },
938
+ {
939
+ "fnName": "gorgonecommandonspecificpoller",
940
+ "method": "post",
941
+ "path": "/gorgone/pollers/{poller_id}/commands/{command_name}"
942
+ },
943
+ {
944
+ "fnName": "listallhosts",
945
+ "method": "get",
946
+ "path": "/monitoring/hosts"
947
+ },
948
+ {
949
+ "fnName": "getahost",
950
+ "method": "get",
951
+ "path": "/monitoring/hosts/{host_id}"
952
+ },
953
+ {
954
+ "fnName": "listhostcategories",
955
+ "method": "get",
956
+ "path": "/configuration/hosts/categories"
957
+ },
958
+ {
959
+ "fnName": "createahostcategory",
960
+ "method": "post",
961
+ "path": "/configuration/hosts/categories"
962
+ },
963
+ {
964
+ "fnName": "deleteahostcategory",
965
+ "method": "delete",
966
+ "path": "/configuration/hosts/categories/{host_category_id}"
967
+ },
968
+ {
969
+ "fnName": "deleteaservicecategory",
970
+ "method": "delete",
971
+ "path": "/configuration/services/categories/{service_category_id}"
972
+ },
973
+ {
974
+ "fnName": "listallrealTimehostcategories",
975
+ "method": "get",
976
+ "path": "/monitoring/hosts/categories"
977
+ },
978
+ {
979
+ "fnName": "listallhostgroups",
980
+ "method": "get",
981
+ "path": "/configuration/hosts/groups"
982
+ },
983
+ {
984
+ "fnName": "addahostgroup",
985
+ "method": "post",
986
+ "path": "/configuration/hosts/groups"
987
+ },
988
+ {
989
+ "fnName": "deleteahostgroup",
990
+ "method": "delete",
991
+ "path": "/configuration/hosts/groups/{hostgroup_id}"
992
+ },
993
+ {
994
+ "fnName": "listallhostgroupsbyhostid",
995
+ "method": "get",
996
+ "path": "/monitoring/hosts/{host_id}/hostgroups"
997
+ },
998
+ {
999
+ "fnName": "getListallhostgroups",
1000
+ "method": "get",
1001
+ "path": "/monitoring/hostgroups"
1002
+ },
1003
+ {
1004
+ "fnName": "listallhostseverities",
1005
+ "method": "get",
1006
+ "path": "/configuration/hosts/severities"
1007
+ },
1008
+ {
1009
+ "fnName": "createahostseverity",
1010
+ "method": "post",
1011
+ "path": "/configuration/hosts/severities"
1012
+ },
1013
+ {
1014
+ "fnName": "deleteahostseverity",
1015
+ "method": "delete",
1016
+ "path": "/configuration/hosts/severities/{host_severity_id}"
1017
+ },
1018
+ {
1019
+ "fnName": "listallhosttemplates",
1020
+ "method": "get",
1021
+ "path": "/configuration/hosts/templates"
1022
+ },
1023
+ {
1024
+ "fnName": "listallmonitoringserversconfigurations",
1025
+ "method": "get",
1026
+ "path": "/configuration/monitoring-servers"
1027
+ },
1028
+ {
1029
+ "fnName": "generatetheconfigurationofthemonitoringserver",
1030
+ "method": "get",
1031
+ "path": "/configuration/monitoring-servers/{monitoring_server_id}/generate"
1032
+ },
1033
+ {
1034
+ "fnName": "reloadtheconfigurationofthemonitoringserver",
1035
+ "method": "get",
1036
+ "path": "/configuration/monitoring-servers/{monitoring_server_id}/reload"
1037
+ },
1038
+ {
1039
+ "fnName": "generateandreloadtheconfigurationofthemonitoringserver",
1040
+ "method": "get",
1041
+ "path": "/configuration/monitoring-servers/{monitoring_server_id}/generate-and-reload"
1042
+ },
1043
+ {
1044
+ "fnName": "generatetheconfigurationforallmonitoringservers",
1045
+ "method": "get",
1046
+ "path": "/configuration/monitoring-servers/generate"
1047
+ },
1048
+ {
1049
+ "fnName": "reloadtheconfigurationforallmonitoringservers",
1050
+ "method": "get",
1051
+ "path": "/configuration/monitoring-servers/reload"
1052
+ },
1053
+ {
1054
+ "fnName": "generateandreloadtheconfigurationforallmonitoringservers",
1055
+ "method": "get",
1056
+ "path": "/configuration/monitoring-servers/generate-and-reload"
1057
+ },
1058
+ {
1059
+ "fnName": "listallrealtimemonitoringservers",
1060
+ "method": "get",
1061
+ "path": "/monitoring/servers"
1062
+ },
1063
+ {
1064
+ "fnName": "displaythedefaultconfigurationoftheCentreonproxy",
1065
+ "method": "get",
1066
+ "path": "/configuration/proxy"
1067
+ },
1068
+ {
1069
+ "fnName": "updatethedefaultconfigurationoftheCentreonproxy",
1070
+ "method": "put",
1071
+ "path": "/configuration/proxy"
1072
+ },
1073
+ {
1074
+ "fnName": "listallservices",
1075
+ "method": "get",
1076
+ "path": "/monitoring/services"
1077
+ },
1078
+ {
1079
+ "fnName": "listservicesrelatedtoahost",
1080
+ "method": "get",
1081
+ "path": "/monitoring/hosts/{host_id}/services"
1082
+ },
1083
+ {
1084
+ "fnName": "getaservice",
1085
+ "method": "get",
1086
+ "path": "/monitoring/hosts/{host_id}/services/{service_id}"
1087
+ },
1088
+ {
1089
+ "fnName": "listallservicegroups",
1090
+ "method": "get",
1091
+ "path": "/configuration/services/groups"
1092
+ },
1093
+ {
1094
+ "fnName": "addaservicegroup",
1095
+ "method": "post",
1096
+ "path": "/configuration/services/groups"
1097
+ },
1098
+ {
1099
+ "fnName": "deleteahostgroup1",
1100
+ "method": "delete",
1101
+ "path": "/configuration/services/groups/{servicegroup_id}"
1102
+ },
1103
+ {
1104
+ "fnName": "getservicegroupsbyhostidandserviceid",
1105
+ "method": "get",
1106
+ "path": "/monitoring/hosts/{host_id}/services/{service_id}/servicegroups"
1107
+ },
1108
+ {
1109
+ "fnName": "getListallservicegroups",
1110
+ "method": "get",
1111
+ "path": "/monitoring/servicegroups"
1112
+ },
1113
+ {
1114
+ "fnName": "listservicecategories",
1115
+ "method": "get",
1116
+ "path": "/configuration/services/categories"
1117
+ },
1118
+ {
1119
+ "fnName": "createaservicecategory",
1120
+ "method": "post",
1121
+ "path": "/configuration/services/categories"
1122
+ },
1123
+ {
1124
+ "fnName": "listallrealTimeservicecategories",
1125
+ "method": "get",
1126
+ "path": "/monitoring/services/categories"
1127
+ },
1128
+ {
1129
+ "fnName": "listallserviceseveritiesfromtherealtime",
1130
+ "method": "get",
1131
+ "path": "/monitoring/severities/service"
1132
+ },
1133
+ {
1134
+ "fnName": "listallhostseveritiesfromrealTimedata",
1135
+ "method": "get",
1136
+ "path": "/monitoring/severities/host"
1137
+ },
1138
+ {
1139
+ "fnName": "getalltimeperiods",
1140
+ "method": "get",
1141
+ "path": "/configuration/timeperiods"
1142
+ },
1143
+ {
1144
+ "fnName": "createanewtimeperiod",
1145
+ "method": "post",
1146
+ "path": "/configuration/timeperiods"
1147
+ },
1148
+ {
1149
+ "fnName": "deleteatimeperiod",
1150
+ "method": "delete",
1151
+ "path": "/configuration/timeperiods/{id}"
1152
+ },
1153
+ {
1154
+ "fnName": "getatimeperiod",
1155
+ "method": "get",
1156
+ "path": "/configuration/timeperiods/{id}"
1157
+ },
1158
+ {
1159
+ "fnName": "updateatimeperiod",
1160
+ "method": "put",
1161
+ "path": "/configuration/timeperiods/{id}"
1162
+ },
1163
+ {
1164
+ "fnName": "registertoplatformtopology",
1165
+ "method": "post",
1166
+ "path": "/platform/topology"
1167
+ },
1168
+ {
1169
+ "fnName": "getaplatformtopology",
1170
+ "method": "get",
1171
+ "path": "/platform/topology"
1172
+ },
1173
+ {
1174
+ "fnName": "deleteaPlatform",
1175
+ "method": "delete",
1176
+ "path": "/platform/topology/{poller_id}"
1177
+ },
1178
+ {
1179
+ "fnName": "listallserviceseverities",
1180
+ "method": "get",
1181
+ "path": "/configuration/services/severities"
1182
+ },
1183
+ {
1184
+ "fnName": "createaserviceseverity",
1185
+ "method": "post",
1186
+ "path": "/configuration/services/severities"
1187
+ },
1188
+ {
1189
+ "fnName": "deleteaserviceseverity",
1190
+ "method": "delete",
1191
+ "path": "/configuration/services/severities/{service_severity_id}"
1192
+ },
1193
+ {
1194
+ "fnName": "listallicons",
1195
+ "method": "get",
1196
+ "path": "/configuration/icons"
1197
+ },
1198
+ {
1199
+ "fnName": "getnotificationpolicyofahost",
1200
+ "method": "get",
1201
+ "path": "/configuration/hosts/{host_id}/notification-policy"
1202
+ },
1203
+ {
1204
+ "fnName": "getnotificationpolicyofaservice",
1205
+ "method": "get",
1206
+ "path": "/configuration/hosts/{host_id}/services/{service_id}/notification-policy"
1207
+ },
1208
+ {
1209
+ "fnName": "getnotificationpolicyofametaservice",
1210
+ "method": "get",
1211
+ "path": "/configuration/metaservices/{meta_id}/notification-policy"
1212
+ },
1213
+ {
1214
+ "fnName": "listallowedactions",
1215
+ "method": "get",
1216
+ "path": "/users/acl/actions"
1217
+ },
1218
+ {
1219
+ "fnName": "getconfiguredusers",
1220
+ "method": "get",
1221
+ "path": "/configuration/users"
1222
+ },
1223
+ {
1224
+ "fnName": "listuserparameters",
1225
+ "method": "get",
1226
+ "path": "/configuration/users/current/parameters"
1227
+ },
1228
+ {
1229
+ "fnName": "updateauser",
1230
+ "method": "patch",
1231
+ "path": "/configuration/users/current/parameters"
1232
+ },
1233
+ {
1234
+ "fnName": "listcontacttemplates",
1235
+ "method": "get",
1236
+ "path": "/configuration/contacts/templates"
1237
+ },
1238
+ {
1239
+ "fnName": "listcontactgroups",
1240
+ "method": "get",
1241
+ "path": "/configuration/contacts/groups"
1242
+ },
1243
+ {
1244
+ "fnName": "listuserfiltersbypage",
1245
+ "method": "get",
1246
+ "path": "/users/filters/{page_name}"
1247
+ },
1248
+ {
1249
+ "fnName": "adduserfilter",
1250
+ "method": "post",
1251
+ "path": "/users/filters/{page_name}"
1252
+ },
1253
+ {
1254
+ "fnName": "detaileduserfilter",
1255
+ "method": "get",
1256
+ "path": "/users/filters/{page_name}/{filter_id}"
1257
+ },
1258
+ {
1259
+ "fnName": "updateuserfilter",
1260
+ "method": "put",
1261
+ "path": "/users/filters/{page_name}/{filter_id}"
1262
+ },
1263
+ {
1264
+ "fnName": "patchuserfilter",
1265
+ "method": "patch",
1266
+ "path": "/users/filters/{page_name}/{filter_id}"
1267
+ },
1268
+ {
1269
+ "fnName": "deleteuserfilter",
1270
+ "method": "delete",
1271
+ "path": "/users/filters/{page_name}/{filter_id}"
1272
+ },
1273
+ {
1274
+ "fnName": "listaccessgroups",
1275
+ "method": "get",
1276
+ "path": "/configuration/access-groups"
1277
+ },
1278
+ {
1279
+ "fnName": "listallresourcesincludinghostsandservices",
1280
+ "method": "get",
1281
+ "path": "/monitoring/resources"
1282
+ },
1283
+ {
1284
+ "fnName": "getaHostresourcetypedetail",
1285
+ "method": "get",
1286
+ "path": "/monitoring/resources/hosts/{host_id}"
1287
+ },
1288
+ {
1289
+ "fnName": "getaServiceresourcetypedetail",
1290
+ "method": "get",
1291
+ "path": "/monitoring/resources/hosts/{host_id}/services/{service_id}"
1292
+ },
1293
+ {
1294
+ "fnName": "checkmultiplehosts",
1295
+ "method": "post",
1296
+ "path": "/monitoring/hosts/check"
1297
+ },
1298
+ {
1299
+ "fnName": "checkmultipleservices",
1300
+ "method": "post",
1301
+ "path": "/monitoring/services/check"
1302
+ },
1303
+ {
1304
+ "fnName": "checkhost",
1305
+ "method": "post",
1306
+ "path": "/monitoring/hosts/{host_id}/check"
1307
+ },
1308
+ {
1309
+ "fnName": "checkservice",
1310
+ "method": "post",
1311
+ "path": "/monitoring/hosts/{host_id}/services/{service_id}/check"
1312
+ },
1313
+ {
1314
+ "fnName": "checkresources",
1315
+ "method": "post",
1316
+ "path": "/monitoring/resources/check"
1317
+ },
1318
+ {
1319
+ "fnName": "submitaresulttoasinglehost",
1320
+ "method": "post",
1321
+ "path": "/monitoring/hosts/{host_id}/submit"
1322
+ },
1323
+ {
1324
+ "fnName": "submitaresulttoasingleservice",
1325
+ "method": "post",
1326
+ "path": "/monitoring/hosts/{host_id}/services/{service_id}/submit"
1327
+ },
1328
+ {
1329
+ "fnName": "submitresulttoresources",
1330
+ "method": "post",
1331
+ "path": "/monitoring/resources/submit"
1332
+ },
1333
+ {
1334
+ "fnName": "addcommenttoresources",
1335
+ "method": "post",
1336
+ "path": "/monitoring/resources/comments"
1337
+ },
1338
+ {
1339
+ "fnName": "getservicemetrics",
1340
+ "method": "get",
1341
+ "path": "/monitoring/hosts/{host_id}/services/{service_id}/metrics/start/{start}/end/{end}"
1342
+ },
1343
+ {
1344
+ "fnName": "getservicestatusdata",
1345
+ "method": "get",
1346
+ "path": "/monitoring/hosts/{host_id}/services/{service_id}/status/start/{start}/end/{end}"
1347
+ },
1348
+ {
1349
+ "fnName": "getserviceperformancedata",
1350
+ "method": "get",
1351
+ "path": "/monitoring/hosts/{host_id}/services/{service_id}/metrics/performance"
1352
+ },
1353
+ {
1354
+ "fnName": "downloadperformancedataascsvfile",
1355
+ "method": "get",
1356
+ "path": "/monitoring/hosts/{host_id}/services/{service_id}/metrics/performance/download"
1357
+ },
1358
+ {
1359
+ "fnName": "getservicestatusdata1",
1360
+ "method": "get",
1361
+ "path": "/monitoring/hosts/{host_id}/services/{service_id}/metrics/status"
1362
+ },
1363
+ {
1364
+ "fnName": "gethosttimeline",
1365
+ "method": "get",
1366
+ "path": "/monitoring/hosts/{host_id}/timeline"
1367
+ },
1368
+ {
1369
+ "fnName": "getservicetimeline",
1370
+ "method": "get",
1371
+ "path": "/monitoring/hosts/{host_id}/services/{service_id}/timeline"
1372
+ },
1373
+ {
1374
+ "fnName": "updateaplatforminformation",
1375
+ "method": "patch",
1376
+ "path": "/platform"
1377
+ },
1378
+ {
1379
+ "fnName": "listversionsofwebWidgetsandmodules",
1380
+ "method": "get",
1381
+ "path": "/platform/versions"
1382
+ },
1383
+ {
1384
+ "fnName": "updateCentreonweb",
1385
+ "method": "patch",
1386
+ "path": "/platform/updates"
1387
+ },
1388
+ {
1389
+ "fnName": "getcentreonwebversions",
1390
+ "method": "get",
1391
+ "path": "/platform/installation/status"
1392
+ }
1393
+ ],
1394
+ "errors": [],
1395
+ "warnings": [],
1396
+ "callsTotal": 148,
1397
+ "callsConverted": 148,
1398
+ "no_mockdata_num": 145
1399
+ }
1400
+ }