-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathAnalyticsProfile.json
1412 lines (1412 loc) · 87.4 KB
/
AnalyticsProfile.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"swagger": "2.0",
"info": {
"version": "31.1.1",
"title": "Avi AnalyticsProfile Object API",
"contact": {
"name": "Avi Networks Inc.",
"url": "https://avinetworks.com/contact-us",
"email": "[email protected]"
},
"description": "CLI\n```\n- configure analyticsprofile <key>\n- show analyticsprofile <key>\n```\n"
},
"securityDefinitions": {
"basicAuth": {
"type": "basic",
"description": "basic authentication"
}
},
"basePath": "/api",
"paths": {
"/analyticsprofile": {
"get": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"name": "name",
"in": "query",
"description": "object name",
"required": false,
"type": "string"
},
{
"name": "refers_to",
"in": "query",
"description": "Filter to request all objects that refers to another Avi resource. Its syntax is refers_to=<obj_type>:<obj_uuid>. Eg. get all virtual services referring to pool p1 will be refers_to=pool:pool_p1_uuid",
"type": "string"
},
{
"name": "referred_by",
"in": "query",
"description": "Filter to request all objects that are referred by another Avi resource. Its syntax is referred_by=<obj_type>:<obj_uuid>. Eg. get all pools referred_by virtual service vs1 - referred_by=virtualservice:vs_vs1_uuid",
"type": "string"
},
{
"name": "fields",
"in": "query",
"description": "List of fields to be returned for the resource. Some fields like name, URL, uuid etc. are always returned.",
"type": "string"
},
{
"name": "include_name",
"in": "query",
"description": "All the Avi REST reference URIs have a name suffix as URI#name. It is useful to get the referenced resource name without performing get on that object.",
"required": false,
"type": "boolean"
},
{
"name": "skip_default",
"in": "query",
"description": "Default values are not set.",
"required": false,
"type": "boolean"
},
{
"name": "join_subresources",
"in": "query",
"description": "It automatically returns additional dependent resources like runtime. Eg. join_subresources=runtime.",
"type": "string"
},
{
"name": "X-Avi-Tenant",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Tenant Header"
},
{
"name": "X-Avi-Tenant-UUID",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Tenant Header UUID"
},
{
"name": "X-Avi-Version",
"in": "header",
"type": "string",
"required": true,
"description": "The caller is required to set Avi Version Header to the expected version of configuration. The response from the controller will provide and accept data according to the specified version. The controller will reject POST and PUT requests where the data is not compatible with the specified version."
},
{
"name": "X-CSRFToken",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Controller may send back CSRF token in the response cookies. The caller should update the request headers with this token else controller will reject requests."
}
],
"security": [
{
"basicAuth": []
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/AnalyticsProfileApiResponse"
}
},
"401": {
"description": "log in failed"
}
}
},
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"name": "X-Avi-Tenant",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Tenant Header"
},
{
"name": "X-Avi-Tenant-UUID",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Tenant Header UUID"
},
{
"name": "X-Avi-Version",
"in": "header",
"type": "string",
"required": true,
"description": "The caller is required to set Avi Version Header to the expected version of configuration. The response from the controller will provide and accept data according to the specified version. The controller will reject POST and PUT requests where the data is not compatible with the specified version."
},
{
"name": "X-CSRFToken",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Controller may send back CSRF token in the response cookies. The caller should update the request headers with this token else controller will reject requests."
},
{
"in": "body",
"name": "body",
"description": "AnalyticsProfile object creation",
"required": true,
"schema": {
"$ref": "#/definitions/AnalyticsProfile"
}
}
],
"security": [
{
"basicAuth": []
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/AnalyticsProfile"
}
},
"401": {
"description": "log in failed"
}
}
}
},
"/analyticsprofile/{uuid}": {
"get": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"name": "name",
"in": "query",
"description": "object name",
"required": false,
"type": "string"
},
{
"name": "X-Avi-Tenant",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Tenant Header"
},
{
"name": "X-Avi-Tenant-UUID",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Tenant Header UUID"
},
{
"name": "X-Avi-Version",
"in": "header",
"type": "string",
"required": true,
"description": "The caller is required to set Avi Version Header to the expected version of configuration. The response from the controller will provide and accept data according to the specified version. The controller will reject POST and PUT requests where the data is not compatible with the specified version."
},
{
"name": "X-CSRFToken",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Controller may send back CSRF token in the response cookies. The caller should update the request headers with this token else controller will reject requests."
},
{
"name": "uuid",
"in": "path",
"description": "UUID of the object to fetch",
"required": true,
"type": "string"
},
{
"name": "fields",
"in": "query",
"description": "List of fields to be returned for the resource. Some fields like name, URL, uuid etc. are always returned.",
"type": "string"
},
{
"name": "include_name",
"in": "query",
"description": "All the Avi REST reference URIs have a name suffix as URI#name. It is useful to get the referenced resource name without performing get on that object.",
"required": false,
"type": "boolean"
},
{
"name": "skip_default",
"in": "query",
"description": "Default values are not set.",
"required": false,
"type": "boolean"
},
{
"name": "join_subresources",
"in": "query",
"description": "It automatically returns additional dependent resources like runtime. Eg. join_subresources=runtime.",
"type": "string"
}
],
"security": [
{
"basicAuth": []
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/AnalyticsProfile"
}
},
"401": {
"description": "log in failed"
}
}
},
"put": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "query",
"name": "name",
"description": "object name",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Avi-Tenant",
"type": "string",
"required": false,
"description": "Avi Tenant Header"
},
{
"name": "X-Avi-Tenant-UUID",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Tenant Header UUID"
},
{
"name": "X-Avi-Version",
"in": "header",
"type": "string",
"required": true,
"description": "The caller is required to set Avi Version Header to the expected version of configuration. The response from the controller will provide and accept data according to the specified version. The controller will reject POST and PUT requests where the data is not compatible with the specified version."
},
{
"name": "X-CSRFToken",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Controller may send back CSRF token in the response cookies. The caller should update the request headers with this token else controller will reject requests."
},
{
"in": "body",
"name": "body",
"description": "AnalyticsProfile object creation",
"required": true,
"schema": {
"$ref": "#/definitions/AnalyticsProfile"
}
},
{
"in": "path",
"name": "uuid",
"description": "UUID of the object to fetch",
"required": true,
"type": "string"
}
],
"security": [
{
"basicAuth": []
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/AnalyticsProfile"
}
},
"401": {
"description": "log in failed"
}
}
},
"patch": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "query",
"name": "name",
"description": "object name",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Avi-Tenant",
"type": "string",
"required": false,
"description": "Avi Tenant Header"
},
{
"name": "X-Avi-Tenant-UUID",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Tenant Header UUID"
},
{
"name": "X-Avi-Version",
"in": "header",
"type": "string",
"required": true,
"description": "The caller is required to set Avi Version Header to the expected version of configuration. The response from the controller will provide and accept data according to the specified version. The controller will reject POST and PUT requests where the data is not compatible with the specified version."
},
{
"name": "X-CSRFToken",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Controller may send back CSRF token in the response cookies. The caller should update the request headers with this token else controller will reject requests."
},
{
"in": "body",
"name": "body",
"description": "AnalyticsProfile object creation",
"required": true,
"schema": {
"$ref": "#/definitions/AnalyticsProfile"
}
},
{
"in": "path",
"name": "uuid",
"description": "UUID of the object to fetch",
"required": true,
"type": "string"
}
],
"security": [
{
"basicAuth": []
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/AnalyticsProfile"
}
},
"401": {
"description": "log in failed"
}
}
},
"delete": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "query",
"name": "name",
"description": "object name",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Avi-Tenant",
"type": "string",
"required": false,
"description": "Avi Tenant Header"
},
{
"name": "X-Avi-Tenant-UUID",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Tenant Header UUID"
},
{
"name": "X-Avi-Version",
"in": "header",
"type": "string",
"required": true,
"description": "The caller is required to set Avi Version Header to the expected version of configuration. The response from the controller will provide and accept data according to the specified version. The controller will reject POST and PUT requests where the data is not compatible with the specified version."
},
{
"name": "X-CSRFToken",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Controller may send back CSRF token in the response cookies. The caller should update the request headers with this token else controller will reject requests."
},
{
"in": "path",
"name": "uuid",
"description": "UUID of the object to fetch",
"required": true,
"type": "string"
}
],
"security": [
{
"basicAuth": []
}
],
"responses": {
"204": {
"description": "object deleted",
"schema": {
"type": "string"
}
},
"404": {
"description": "not found"
}
}
}
},
"/analyticsprofile/{uuid}/runtime/internal/": {
"get": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "header",
"name": "X-Avi-Tenant",
"type": "string",
"required": false,
"description": "Avi Tenant Header"
},
{
"name": "X-Avi-Tenant-UUID",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Tenant Header UUID"
},
{
"name": "X-CSRFToken",
"in": "header",
"type": "string",
"required": false,
"description": "Avi Controller may send back CSRF token in the response cookies. The caller should update the request headers with this token else controller will reject requests."
},
{
"name": "X-Avi-Version",
"in": "header",
"type": "string",
"required": true,
"description": "The caller is required to set Avi Version Header to the expected version of configuration. The response from the controller will provide and accept data according to the specified version. The controller will reject POST and PUT requests where the data is not compatible with the specified version."
},
{
"in": "path",
"name": "uuid",
"description": "UUID of the object to fetch",
"required": true,
"type": "string"
}
],
"security": [
{
"basicAuth": []
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string"
}
},
"401": {
"description": "log in failed"
}
}
}
}
},
"definitions": {
"AnalyticsProfile": {
"type": "object",
"required": [
"name"
],
"properties": {
"_last_modified": {
"description": "UNIX time since epoch in microseconds. Units(MICROSECONDS).",
"readOnly": true,
"type": "string"
},
"apdex_response_threshold": {
"description": "If a client receives an HTTP response in less than the Satisfactory Latency Threshold, the request is considered Satisfied. It is considered Tolerated if it is not Satisfied and less than Tolerated Latency Factor multiplied by the Satisfactory Latency Threshold. Greater than this number and the client's request is considered Frustrated. Allowed values are 1-30000. Unit is MILLISECONDS. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 500), Basic edition(Allowed values- 500), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 500,
"format": "uint32"
},
"apdex_response_tolerated_factor": {
"description": "Client tolerated response latency factor. Client must receive a response within this factor times the satisfactory threshold (apdex_response_threshold) to be considered tolerated. Allowed values are 1-1000. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 4), Basic edition(Allowed values- 4), Enterprise with Cloud Services edition.",
"type": "number",
"default": 4.0,
"format": "double"
},
"apdex_rtt_threshold": {
"description": "Satisfactory client to Avi Round Trip Time(RTT). Allowed values are 1-2000. Unit is MILLISECONDS. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 250), Basic edition(Allowed values- 250), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 250,
"format": "uint32"
},
"apdex_rtt_tolerated_factor": {
"description": "Tolerated client to Avi Round Trip Time(RTT) factor. It is a multiple of apdex_rtt_tolerated_factor. Allowed values are 1-1000. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 4), Basic edition(Allowed values- 4), Enterprise with Cloud Services edition.",
"type": "number",
"default": 4.0,
"format": "double"
},
"apdex_rum_threshold": {
"description": "If a client is able to load a page in less than the Satisfactory Latency Threshold, the PageLoad is considered Satisfied. It is considered tolerated if it is greater than Satisfied but less than the Tolerated Latency multiplied by Satisifed Latency. Greater than this number and the client's request is considered Frustrated. A PageLoad includes the time for DNS lookup, download of all HTTP objects, and page render time. Allowed values are 1-30000. Unit is MILLISECONDS. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 5000), Basic edition(Allowed values- 5000), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 5000,
"format": "uint32"
},
"apdex_rum_tolerated_factor": {
"description": "Virtual service threshold factor for tolerated Page Load Time (PLT) as multiple of apdex_rum_threshold. Allowed values are 1-1000. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 4), Basic edition(Allowed values- 4), Enterprise with Cloud Services edition.",
"type": "number",
"default": 4.0,
"format": "double"
},
"apdex_server_response_threshold": {
"description": "A server HTTP response is considered Satisfied if latency is less than the Satisfactory Latency Threshold. The response is considered tolerated when it is greater than Satisfied but less than the Tolerated Latency Factor * S_Latency. Greater than this number and the server response is considered Frustrated. Allowed values are 1-30000. Unit is MILLISECONDS. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 400), Basic edition(Allowed values- 400), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 400,
"format": "uint32"
},
"apdex_server_response_tolerated_factor": {
"description": "Server tolerated response latency factor. Servermust response within this factor times the satisfactory threshold (apdex_server_response_threshold) to be considered tolerated. Allowed values are 1-1000. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 4), Basic edition(Allowed values- 4), Enterprise with Cloud Services edition.",
"type": "number",
"default": 4.0,
"format": "double"
},
"apdex_server_rtt_threshold": {
"description": "Satisfactory client to Avi Round Trip Time(RTT). Allowed values are 1-2000. Unit is MILLISECONDS. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 125), Basic edition(Allowed values- 125), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 125,
"format": "uint32"
},
"apdex_server_rtt_tolerated_factor": {
"description": "Tolerated client to Avi Round Trip Time(RTT) factor. It is a multiple of apdex_rtt_tolerated_factor. Allowed values are 1-1000. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 4), Basic edition(Allowed values- 4), Enterprise with Cloud Services edition.",
"type": "number",
"default": 4.0,
"format": "double"
},
"client_log_config": {
"description": "Configure which logs are sent to the Avi Controller from SEs and how they are processed. Allowed in Enterprise edition with any value, Essentials, Basic, Enterprise with Cloud Services edition.",
"$ref": "#/definitions/ClientLogConfiguration"
},
"client_log_streaming_config": {
"description": "Configure to stream logs to an external server. Field introduced in 17.1.1. Allowed in Enterprise edition with any value, Enterprise with Cloud Services edition.",
"$ref": "#/definitions/ClientLogStreamingConfig"
},
"configpb_attributes": {
"description": "Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed in Enterprise edition with any value, Essentials edition with any value, Basic edition with any value, Enterprise with Cloud Services edition.",
"$ref": "#/definitions/ConfigPbAttributes"
},
"conn_lossy_ooo_threshold": {
"description": "A connection between client and Avi is considered lossy when more than this percentage of out of order packets are received. Allowed values are 1-100. Unit is PERCENT. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 50), Basic edition(Allowed values- 50), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 50,
"format": "uint32"
},
"conn_lossy_timeo_rexmt_threshold": {
"description": "A connection between client and Avi is considered lossy when more than this percentage of packets are retransmitted due to timeout. Allowed values are 1-100. Unit is PERCENT. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 20), Basic edition(Allowed values- 20), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 20,
"format": "uint32"
},
"conn_lossy_total_rexmt_threshold": {
"description": "A connection between client and Avi is considered lossy when more than this percentage of packets are retransmitted. Allowed values are 1-100. Unit is PERCENT. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 50), Basic edition(Allowed values- 50), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 50,
"format": "uint32"
},
"conn_lossy_zero_win_size_event_threshold": {
"description": "A client connection is considered lossy when percentage of times a packet could not be trasmitted due to TCP zero window is above this threshold. Allowed values are 0-100. Unit is PERCENT. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 2), Basic edition(Allowed values- 2), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 2,
"format": "uint32"
},
"conn_server_lossy_ooo_threshold": {
"description": "A connection between Avi and server is considered lossy when more than this percentage of out of order packets are received. Allowed values are 1-100. Unit is PERCENT. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 50), Basic edition(Allowed values- 50), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 50,
"format": "uint32"
},
"conn_server_lossy_timeo_rexmt_threshold": {
"description": "A connection between Avi and server is considered lossy when more than this percentage of packets are retransmitted due to timeout. Allowed values are 1-100. Unit is PERCENT. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 20), Basic edition(Allowed values- 20), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 20,
"format": "uint32"
},
"conn_server_lossy_total_rexmt_threshold": {
"description": "A connection between Avi and server is considered lossy when more than this percentage of packets are retransmitted. Allowed values are 1-100. Unit is PERCENT. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 50), Basic edition(Allowed values- 50), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 50,
"format": "uint32"
},
"conn_server_lossy_zero_win_size_event_threshold": {
"description": "A server connection is considered lossy when percentage of times a packet could not be trasmitted due to TCP zero window is above this threshold. Allowed values are 0-100. Unit is PERCENT. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 2), Basic edition(Allowed values- 2), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 2,
"format": "uint32"
},
"description": {
"description": " Allowed in Enterprise edition with any value, Essentials, Basic, Enterprise with Cloud Services edition.",
"type": "string"
},
"enable_adaptive_config": {
"description": "Enable adaptive configuration for optimizing resource usage. Field introduced in 20.1.1. Allowed in Enterprise edition with any value, Essentials, Basic, Enterprise with Cloud Services edition.",
"type": "boolean",
"default": true
},
"enable_advanced_analytics": {
"description": "Enables Advanced Analytics features like Anomaly detection. If set to false, anomaly computation (and associated rules/events) for VS, Pool and Server metrics will be deactivated. However, setting it to false reduces cpu and memory requirements for Analytics subsystem. Field introduced in 17.2.13, 18.1.5, 18.2.1. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- false), Basic edition(Allowed values- false), Enterprise with Cloud Services edition. Special default for Essentials edition is false, Basic edition is false, Enterprise is True.",
"type": "boolean",
"default": true
},
"enable_ondemand_metrics": {
"description": "Virtual Service (VS) metrics are processed only when there is live data traffic on the VS. In case, VS is idle for a period of time as specified by ondemand_metrics_idle_timeout then metrics processing is suspended for that VS. Field introduced in 20.1.3. Allowed in Enterprise edition with any value, Enterprise with Cloud Services edition.",
"type": "boolean",
"default": true
},
"enable_se_analytics": {
"description": "Enable node (service engine) level analytics forvs metrics. Field introduced in 20.1.3. Allowed in Enterprise edition with any value, Enterprise with Cloud Services edition.",
"type": "boolean",
"default": true
},
"enable_server_analytics": {
"description": "Enables analytics on backend servers. This may be desired in container environment when there are large number of ephemeral servers. Additionally, no healthscore of servers is computed when server analytics is enabled. Field introduced in 20.1.3. Allowed in Enterprise edition with any value, Enterprise with Cloud Services edition.",
"type": "boolean",
"default": true
},
"enable_vs_analytics": {
"description": "Enable VirtualService (frontend) Analytics. This flag enables metrics and healthscore for Virtualservice. Field introduced in 20.1.3. Allowed in Enterprise edition with any value, Enterprise with Cloud Services edition.",
"type": "boolean",
"default": true
},
"exclude_client_close_before_request_as_error": {
"description": "Exclude client closed connection before an HTTP request could be completed from being classified as an error. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- false), Basic edition(Allowed values- false), Enterprise with Cloud Services edition.",
"type": "boolean"
},
"exclude_dns_policy_drop_as_significant": {
"description": "Exclude dns policy drops from the list of errors. Field introduced in 17.2.2. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- false), Basic edition(Allowed values- false), Enterprise with Cloud Services edition.",
"type": "boolean"
},
"exclude_gs_down_as_error": {
"description": "Exclude queries to GSLB services that are operationally down from the list of errors. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- false), Basic edition(Allowed values- false), Enterprise with Cloud Services edition.",
"type": "boolean"
},
"exclude_http_error_codes": {
"description": "List of HTTP status codes to be excluded from being classified as an error. Error connections or responses impacts health score, are included as significant logs, and may be classified as part of a DoS attack. Allowed in Enterprise edition with any value, Enterprise with Cloud Services edition.",
"type": "array",
"items": {
"type": "integer"
},
"format": "int32"
},
"exclude_invalid_dns_domain_as_error": {
"description": "Exclude dns queries to domains outside the domains configured in the DNS application profile from the list of errors. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- false), Basic edition(Allowed values- false), Enterprise with Cloud Services edition.",
"type": "boolean"
},
"exclude_invalid_dns_query_as_error": {
"description": "Exclude invalid dns queries from the list of errors. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- false), Basic edition(Allowed values- false), Enterprise with Cloud Services edition.",
"type": "boolean"
},
"exclude_issuer_revoked_ocsp_responses_as_error": {
"description": "Exclude the Issuer-Revoked OCSP Responses from the list of errors. Field introduced in 20.1.1. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- true), Basic edition(Allowed values- true), Enterprise with Cloud Services edition.",
"type": "boolean",
"default": true
},
"exclude_no_dns_record_as_error": {
"description": "Exclude queries to domains that did not have configured services/records from the list of errors. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- false), Basic edition(Allowed values- false), Enterprise with Cloud Services edition.",
"type": "boolean"
},
"exclude_no_valid_gs_member_as_error": {
"description": "Exclude queries to GSLB services that have no available members from the list of errors. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- false), Basic edition(Allowed values- false), Enterprise with Cloud Services edition.",
"type": "boolean"
},
"exclude_persistence_change_as_error": {
"description": "Exclude persistence server changed while load balancing' from the list of errors. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- false), Basic edition(Allowed values- false), Enterprise with Cloud Services edition.",
"type": "boolean"
},
"exclude_revoked_ocsp_responses_as_error": {
"description": "Exclude the Revoked OCSP certificate status responses from the list of errors. Field introduced in 20.1.1. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- true), Basic edition(Allowed values- true), Enterprise with Cloud Services edition.",
"type": "boolean",
"default": true
},
"exclude_server_dns_error_as_error": {
"description": "Exclude server dns error response from the list of errors. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- false), Basic edition(Allowed values- false), Enterprise with Cloud Services edition.",
"type": "boolean"
},
"exclude_server_tcp_reset_as_error": {
"description": "Exclude server TCP reset from errors. It is common for applications like MS Exchange. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- false), Basic edition(Allowed values- false), Enterprise with Cloud Services edition.",
"type": "boolean"
},
"exclude_sip_error_codes": {
"description": "List of SIP status codes to be excluded from being classified as an error. Field introduced in 17.2.13, 18.1.5, 18.2.1. Allowed in Enterprise edition with any value, Enterprise with Cloud Services edition.",
"type": "array",
"items": {
"type": "integer"
},
"format": "uint32"
},
"exclude_stale_ocsp_responses_as_error": {
"description": "Exclude the Stale OCSP certificate status responses from the list of errors. Field introduced in 20.1.1. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- true), Basic edition(Allowed values- true), Enterprise with Cloud Services edition.",
"type": "boolean",
"default": true
},
"exclude_syn_retransmit_as_error": {
"description": "Exclude 'server unanswered syns' from the list of errors. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- false), Basic edition(Allowed values- false), Enterprise with Cloud Services edition.",
"type": "boolean"
},
"exclude_tcp_reset_as_error": {
"description": "Exclude TCP resets by client from the list of potential errors. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- false), Basic edition(Allowed values- false), Enterprise with Cloud Services edition.",
"type": "boolean"
},
"exclude_unavailable_ocsp_responses_as_error": {
"description": "Exclude the unavailable OCSP Responses from the list of errors. Field introduced in 20.1.1. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- true), Basic edition(Allowed values- true), Enterprise with Cloud Services edition.",
"type": "boolean",
"default": true
},
"exclude_unsupported_dns_query_as_error": {
"description": "Exclude unsupported dns queries from the list of errors. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- false), Basic edition(Allowed values- false), Enterprise with Cloud Services edition.",
"type": "boolean"
},
"healthscore_max_server_limit": {
"description": "Skips health score computation of pool servers when number of servers in a pool is more than this setting. Allowed values are 0-5000. Special values are 0- server health score is deactivated. Field introduced in 17.2.13, 18.1.4. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 0), Basic edition(Allowed values- 0), Enterprise with Cloud Services edition. Special default for Essentials edition is 0, Basic edition is 0, Enterprise is 20.",
"type": "integer",
"default": 20,
"format": "uint32"
},
"hs_event_throttle_window": {
"description": "Time window (in secs) within which only unique health change events should occur. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 1209600), Basic edition(Allowed values- 1209600), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 1209600,
"format": "uint32"
},
"hs_max_anomaly_penalty": {
"description": "Maximum penalty that may be deducted from health score for anomalies. Allowed values are 0-100. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 10), Basic edition(Allowed values- 10), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 10,
"format": "uint32"
},
"hs_max_resources_penalty": {
"description": "Maximum penalty that may be deducted from health score for high resource utilization. Allowed values are 0-100. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 25), Basic edition(Allowed values- 25), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 25,
"format": "uint32"
},
"hs_max_security_penalty": {
"description": "Maximum penalty that may be deducted from health score based on security assessment. Allowed values are 0-100. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 100), Basic edition(Allowed values- 100), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 100,
"format": "uint32"
},
"hs_min_dos_rate": {
"description": "DoS connection rate below which the DoS security assessment will not kick in. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 1000), Basic edition(Allowed values- 1000), Enterprise with Cloud Services edition.",
"type": "integer",
"default": 1000,
"format": "uint32"
},
"hs_performance_boost": {
"description": "Adds free performance score credits to health score. It can be used for compensating health score for known slow applications. Allowed values are 0-100. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 0), Basic edition(Allowed values- 0), Enterprise with Cloud Services edition.",
"type": "integer",
"format": "uint32"
},
"hs_pscore_traffic_threshold_l4_client": {
"description": "Threshold number of connections in 5min, below which apdexr, apdexc, rum_apdex, and other network quality metrics are not computed. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 10), Basic edition(Allowed values- 10), Enterprise with Cloud Services edition.",
"type": "number",
"default": 10.0,
"format": "double"
},
"hs_pscore_traffic_threshold_l4_server": {
"description": "Threshold number of connections in 5min, below which apdexr, apdexc, rum_apdex, and other network quality metrics are not computed. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 10), Basic edition(Allowed values- 10), Enterprise with Cloud Services edition.",
"type": "number",
"default": 10.0,
"format": "double"
},
"hs_security_certscore_expired": {
"description": "Score assigned when the certificate has expired. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 0.0), Basic edition(Allowed values- 0.0), Enterprise with Cloud Services edition.",
"type": "number",
"format": "double"
},
"hs_security_certscore_gt30d": {
"description": "Score assigned when the certificate expires in more than 30 days. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 5.0), Basic edition(Allowed values- 5.0), Enterprise with Cloud Services edition.",
"type": "number",
"default": 5.0,
"format": "double"
},
"hs_security_certscore_le07d": {
"description": "Score assigned when the certificate expires in less than or equal to 7 days. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 2.0), Basic edition(Allowed values- 2.0), Enterprise with Cloud Services edition.",
"type": "number",
"default": 2.0,
"format": "double"
},
"hs_security_certscore_le30d": {
"description": "Score assigned when the certificate expires in less than or equal to 30 days. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 4.0), Basic edition(Allowed values- 4.0), Enterprise with Cloud Services edition.",
"type": "number",
"default": 4.0,
"format": "double"
},
"hs_security_chain_invalidity_penalty": {
"description": "Penalty for allowing certificates with invalid chain. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 1.0), Basic edition(Allowed values- 1.0), Enterprise with Cloud Services edition.",
"type": "number",
"default": 1.0,
"format": "double"
},
"hs_security_cipherscore_eq000b": {
"description": "Score assigned when the minimum cipher strength is 0 bits. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 0.0), Basic edition(Allowed values- 0.0), Enterprise with Cloud Services edition.",
"type": "number",
"format": "double"
},
"hs_security_cipherscore_ge128b": {
"description": "Score assigned when the minimum cipher strength is greater than equal to 128 bits. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 5.0), Basic edition(Allowed values- 5.0), Enterprise with Cloud Services edition.",
"type": "number",
"default": 5.0,
"format": "double"
},
"hs_security_cipherscore_lt128b": {
"description": "Score assigned when the minimum cipher strength is less than 128 bits. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 3.5), Basic edition(Allowed values- 3.5), Enterprise with Cloud Services edition.",
"type": "number",
"default": 3.5,
"format": "double"
},
"hs_security_encalgo_score_none": {
"description": "Score assigned when no algorithm is used for encryption. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 0.0), Basic edition(Allowed values- 0.0), Enterprise with Cloud Services edition.",
"type": "number",
"format": "double"
},
"hs_security_encalgo_score_rc4": {
"description": "Score assigned when RC4 algorithm is used for encryption. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 2.5), Basic edition(Allowed values- 2.5), Enterprise with Cloud Services edition.",
"type": "number",
"default": 2.5,
"format": "double"
},
"hs_security_hsts_penalty": {
"description": "Penalty for not enabling HSTS. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 1.0), Basic edition(Allowed values- 1.0), Enterprise with Cloud Services edition.",
"type": "number",
"default": 1.0,
"format": "double"
},
"hs_security_nonpfs_penalty": {
"description": "Penalty for allowing non-PFS handshakes. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 1.0), Basic edition(Allowed values- 1.0), Enterprise with Cloud Services edition.",
"type": "number",
"default": 1.0,
"format": "double"
},
"hs_security_ocsp_revoked_score": {
"description": "Score assigned when OCSP Certificate Status is set to Revoked or Issuer Revoked. Allowed values are 0.0-5.0. Field introduced in 20.1.1. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 0.0), Basic edition(Allowed values- 0.0), Enterprise with Cloud Services edition.",
"type": "number",
"format": "double"
},
"hs_security_selfsignedcert_penalty": {
"description": "Deprecated. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 1.0), Basic edition(Allowed values- 1.0), Enterprise with Cloud Services edition.",
"type": "number",
"default": 1.0,
"format": "double"
},
"hs_security_ssl30_score": {
"description": "Score assigned when supporting SSL3.0 encryption protocol. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 3.5), Basic edition(Allowed values- 3.5), Enterprise with Cloud Services edition.",
"type": "number",
"default": 3.5,
"format": "double"
},
"hs_security_tls10_score": {
"description": "Score assigned when supporting TLS1.0 encryption protocol. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 5.0), Basic edition(Allowed values- 5.0), Enterprise with Cloud Services edition.",
"type": "number",
"default": 5.0,
"format": "double"
},
"hs_security_tls11_score": {
"description": "Score assigned when supporting TLS1.1 encryption protocol. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 5.0), Basic edition(Allowed values- 5.0), Enterprise with Cloud Services edition.",
"type": "number",
"default": 5.0,
"format": "double"
},
"hs_security_tls12_score": {
"description": "Score assigned when supporting TLS1.2 encryption protocol. Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 5.0), Basic edition(Allowed values- 5.0), Enterprise with Cloud Services edition.",
"type": "number",
"default": 5.0,
"format": "double"
},
"hs_security_tls13_score": {
"description": "Score assigned when supporting TLS1.3 encryption protocol. Allowed values are 0-5. Field introduced in 18.2.6. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 5.0), Basic edition(Allowed values- 5.0), Enterprise with Cloud Services edition.",
"type": "number",
"default": 5.0,
"format": "double"
},
"hs_security_weak_signature_algo_penalty": {
"description": "Penalty for allowing weak signature algorithm(s). Allowed values are 0-5. Allowed in Enterprise edition with any value, Essentials edition(Allowed values- 1.0), Basic edition(Allowed values- 1.0), Enterprise with Cloud Services edition.",
"type": "number",
"default": 1.0,
"format": "double"
},
"latency_audit_props": {
"description": "Deprecated in 22.1.1. Field introduced in 21.1.1. Allowed in Enterprise edition with any value, Enterprise with Cloud Services edition.",
"$ref": "#/definitions/LatencyAuditProperties"
},
"markers": {
"description": "List of labels to be used for granular RBAC. Field introduced in 20.1.5. Allowed in Enterprise edition with any value, Essentials edition with any value, Basic edition with any value, Enterprise with Cloud Services edition.",
"type": "array",
"items": {
"$ref": "#/definitions/RoleFilterMatchLabel"
}
},