-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
feature_data.json
1071 lines (1071 loc) · 37.1 KB
/
feature_data.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
[
{
"documentation": "https://docs.layer5.io/cloud/getting-started/getting-started-with-layer5-account/#7-viewing-your-layer5-profile",
"entire_row": {
"Category": "Profile",
"Documented?": "https://docs.layer5.io/cloud/getting-started/getting-started-with-layer5-account/#7-viewing-your-layer5-profile",
"Feature": "View your profile.",
"Function": "View Profile",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Cloud",
"Theme (also: Keychain Name)": "Account Management"
}
},
{
"documentation": "https://docs.layer5.io/cloud/catalog/",
"entire_row": {
"Category": "Catalog",
"Documented?": "https://docs.layer5.io/cloud/catalog/",
"Feature": "Export a copy of a design to your local system.",
"Function": "",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.layer5.io/kanvas/designer/share-resource/",
"entire_row": {
"Category": "Catalog",
"Documented?": "https://docs.layer5.io/kanvas/designer/share-resource/",
"Feature": "Share design with anyone within your organization, and make your design easily accessible to all relevant team members.",
"Function": "Share Design",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.layer5.io/kanvas/tasks/designs/cloning-a-design/",
"entire_row": {
"Category": "Catalog",
"Documented?": "https://docs.layer5.io/kanvas/tasks/designs/cloning-a-design/",
"Feature": "Clone any published design to customise it according to your use cases",
"Function": "Clone Design",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.meshery.io/guides/configuration-management/creating-a-meshery-design",
"entire_row": {
"Category": "Designs",
"Documented?": "https://docs.meshery.io/guides/configuration-management/creating-a-meshery-design",
"Feature": "Create new Meshery design",
"Function": "Create new design",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.meshery.io/extensions/importing-a-design",
"entire_row": {
"Category": "Designs",
"Documented?": "https://docs.meshery.io/extensions/importing-a-design",
"Feature": "Import a design",
"Function": "Import Design",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.meshery.io/guides/configuration-management/importing-designs#import-designs-using-meshery-cli",
"entire_row": {
"Category": "Designs",
"Documented?": "https://docs.meshery.io/guides/configuration-management/importing-designs#import-designs-using-meshery-cli",
"Feature": "Import a design from Kubernetes Manifest",
"Function": "Import Design",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.layer5.io/kanvas/getting-started/starting-helm/#importing-a-design",
"entire_row": {
"Category": "Designs",
"Documented?": "https://docs.layer5.io/kanvas/getting-started/starting-helm/#importing-a-design",
"Feature": "Import a design from Meshery Design (YAML)",
"Function": "Import Design",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.meshery.io/guides/configuration-management/importing-designs#import-designs-using-meshery-cli",
"entire_row": {
"Category": "Designs",
"Documented?": "https://docs.meshery.io/guides/configuration-management/importing-designs#import-designs-using-meshery-cli",
"Feature": "Import a design from Helm Chart",
"Function": "Import Design",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.meshery.io/guides/configuration-management/importing-designs#import-designs-using-meshery-cli",
"entire_row": {
"Category": "Designs",
"Documented?": "https://docs.meshery.io/guides/configuration-management/importing-designs#import-designs-using-meshery-cli",
"Feature": "Import a design from Docker Compose",
"Function": "Import Design",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Designs",
"Documented?": "",
"Feature": "Import a design from Kubernetes Manifest, Meshery Design (YAML), Helm Chart, Docker Compose or Meshery Design (OCI Image)",
"Function": "Standard Import Design",
"Pricing page?": "X",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.layer5.io/cloud/getting-started/github-integration/#connect-github-and-import-designs",
"entire_row": {
"Category": "Designs",
"Documented?": "https://docs.layer5.io/cloud/getting-started/github-integration/#connect-github-and-import-designs",
"Feature": "Import a design from GitHub",
"Function": "Import Design",
"Pricing page?": "",
"Subscription Tier": "Enterprise",
"Tech": "Cloud",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Designs",
"Documented?": "",
"Feature": "Import a design from GitHub, GitLab, BitBucket",
"Function": "Premium Design Import Features",
"Pricing page?": "X",
"Subscription Tier": "Enterprise",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.layer5.io/kanvas/designer/export-designs/#exporting-as-a-design-file",
"entire_row": {
"Category": "Designs",
"Documented?": "https://docs.layer5.io/kanvas/designer/export-designs/#exporting-as-a-design-file",
"Feature": "Export a latest version of design in Meshery Design (YAML format)",
"Function": "Export Design",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.layer5.io/kanvas/designer/export-designs/#exporting-as-an-oci-image",
"entire_row": {
"Category": "Designs",
"Documented?": "https://docs.layer5.io/kanvas/designer/export-designs/#exporting-as-an-oci-image",
"Feature": "Export a latest version of design in Meshery Design (OCI format)",
"Function": "Export Design",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Designs",
"Documented?": "",
"Feature": "Export a latest version of design in Meshery Design (OCI format, YAML format) Export a design in source type format (Kubernetes Manifest, Helm Chart, Docker Compose)",
"Function": "Standard Export Design",
"Pricing page?": "X",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Designs",
"Documented?": "",
"Feature": "Export a design to GitHub, GitLab, BitBucket",
"Function": "Premium Export Design Features",
"Pricing page?": "X",
"Subscription Tier": "Enterprise",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Designs",
"Documented?": "",
"Feature": "Import and export your designs using your local filesystem or remote URL.",
"Function": "Cloud Native Design Patterns",
"Pricing page?": "X",
"Subscription Tier": "Free",
"Tech": "",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.meshery.io/extensions/publishing-a-design",
"entire_row": {
"Category": "Designs",
"Documented?": "https://docs.meshery.io/extensions/publishing-a-design",
"Feature": "Publish a design",
"Function": "Publish Design",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.layer5.io/kanvas/tasks/designs/validating-designs/",
"entire_row": {
"Category": "Designs",
"Documented?": "https://docs.layer5.io/kanvas/tasks/designs/validating-designs/",
"Feature": "Validate a design",
"Function": "Validate Design",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.layer5.io/kanvas/tasks/designs/deploying-designs/",
"entire_row": {
"Category": "Designs",
"Documented?": "https://docs.layer5.io/kanvas/tasks/designs/deploying-designs/",
"Feature": "Deploy a design",
"Function": "Deploy Design",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.layer5.io/kanvas/tasks/designs/undeploying-designs/",
"entire_row": {
"Category": "Designs",
"Documented?": "https://docs.layer5.io/kanvas/tasks/designs/undeploying-designs/",
"Feature": "Retract all resources used in a Meshery design from the cluster",
"Function": "Undeploy Design",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.meshery.io/guides/configuration-management/filter-management",
"entire_row": {
"Category": "Filters",
"Documented?": "https://docs.meshery.io/guides/configuration-management/filter-management",
"Feature": "Import a filter",
"Function": "Import Filter",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.meshery.io/guides/configuration-management/filter-management",
"entire_row": {
"Category": "Filters",
"Documented?": "https://docs.meshery.io/guides/configuration-management/filter-management",
"Feature": "Publish WASM Filter",
"Function": "Publish WASM Filter",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.meshery.io/guides/configuration-management/filter-management",
"entire_row": {
"Category": "Filters",
"Documented?": "https://docs.meshery.io/guides/configuration-management/filter-management",
"Feature": "Unpublish WASM Filter",
"Function": "Unpublish WASM Filter",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.meshery.io/guides/configuration-management/filter-management",
"entire_row": {
"Category": "Filters",
"Documented?": "https://docs.meshery.io/guides/configuration-management/filter-management",
"Feature": "Download a WASM filter",
"Function": "Download a WASM filter",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.meshery.io/guides/configuration-management/filter-management",
"entire_row": {
"Category": "Filters",
"Documented?": "https://docs.meshery.io/guides/configuration-management/filter-management",
"Feature": "Check information or details of a WASM filter",
"Function": "Details of WASM Filter",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.meshery.io/guides/configuration-management/filter-management",
"entire_row": {
"Category": "Filters",
"Documented?": "https://docs.meshery.io/guides/configuration-management/filter-management",
"Feature": "Edit WASM filter",
"Function": "Edit WASM filter",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.meshery.io/guides/configuration-management/filter-management",
"entire_row": {
"Category": "Filters",
"Documented?": "https://docs.meshery.io/guides/configuration-management/filter-management",
"Feature": "Clone WASM filter from catalog, which allows customizing filter and use it in design",
"Function": "Clone WASM Filter",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"documentation": "https://docs.meshery.io/guides/configuration-management/filter-management",
"entire_row": {
"Category": "Filters",
"Documented?": "https://docs.meshery.io/guides/configuration-management/filter-management",
"Feature": "Delete WASM filter permanently from catalog.",
"Function": "Delete WASM Filter",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Filters",
"Documented?": "",
"Feature": "Import, Unpublish, Publish, Download, Edit, Clone, Delete, Details of WASM Filter",
"Function": "WASM Filter and filter",
"Pricing page?": "X",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Team Chat",
"Documented?": "",
"Feature": "Message in real-time, unattached to a specific design. Control who can pariticpate in the discussion.",
"Function": "Message in real-time",
"Pricing page?": "X",
"Subscription Tier": "Enterprise",
"Tech": "Kanvas",
"Theme (also: Keychain Name)": "Collaboration"
}
},
{
"pricing_page": "true",
"documentation": "https://docs.layer5.io/kanvas/designer/comments/",
"entire_row": {
"Category": "Design Reviews",
"Documented?": "https://docs.layer5.io/kanvas/designer/comments/",
"Feature": "Discuss any design by leaving review comments or notes on a specific design. Control who has access, notify discussion participants with updates, and link from anywhere.",
"Function": "Discuss any design by leaving review comments",
"Pricing page?": "X",
"Subscription Tier": "Team",
"Tech": "Kanvas",
"Theme (also: Keychain Name)": "Collaboration"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Organization and Team Management",
"Documented?": "",
"Feature": "Manage access to designs on a team-by-team, or individual user, basis.",
"Function": "Manage access to designs",
"Pricing page?": "X",
"Subscription Tier": "Enterprise",
"Tech": "Kanvas",
"Theme (also: Keychain Name)": "Collaboration"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Built-in Roles",
"Documented?": "",
"Feature": "Static - out of the box",
"Function": "Built-in Roles",
"Pricing page?": "X",
"Subscription Tier": "Enterprise",
"Tech": "Cloud",
"Theme (also: Keychain Name)": "Identity \u0026 Access Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "User-defined Roles",
"Documented?": "",
"Feature": "Customizable roles for specific permission assignments",
"Function": "User-defined Roles",
"Pricing page?": "X",
"Subscription Tier": "Enterprise",
"Tech": "Cloud",
"Theme (also: Keychain Name)": "Identity \u0026 Access Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Authentication: LDAP",
"Documented?": "",
"Feature": "Access Meshery Server using your existing accounts and centrally manage repository access.",
"Function": "Authentication: LDAP",
"Pricing page?": "X",
"Subscription Tier": "Enterprise",
"Tech": "Cloud",
"Theme (also: Keychain Name)": "Identity \u0026 Access Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Authentication: SAML",
"Documented?": "",
"Feature": "Use an identity provider to manage the identities of GitHub users and applications.",
"Function": "Authentication: SAML",
"Pricing page?": "X",
"Subscription Tier": "Enterprise",
"Tech": "Cloud",
"Theme (also: Keychain Name)": "Identity \u0026 Access Management"
}
},
{
"documentation": "https://docs.layer5.io/cloud/identity/users/user-management/#add-user-remove-user",
"entire_row": {
"Category": "Users",
"Documented?": "https://docs.layer5.io/cloud/identity/users/user-management/#add-user-remove-user",
"Feature": "Delete a user account",
"Function": "Delete User",
"Pricing page?": "",
"Subscription Tier": "Team",
"Tech": "",
"Theme (also: Keychain Name)": "Identity \u0026 Access Management"
}
},
{
"documentation": "https://docs.layer5.io/cloud/identity/users/user-management/#create-user",
"entire_row": {
"Category": "Users",
"Documented?": "https://docs.layer5.io/cloud/identity/users/user-management/#create-user",
"Feature": "Create a new user",
"Function": "Create User",
"Pricing page?": "",
"Subscription Tier": "",
"Tech": "",
"Theme (also: Keychain Name)": "Identity \u0026 Access Management"
}
},
{
"documentation": "https://docs.layer5.io/cloud/identity/teams/",
"entire_row": {
"Category": "Teams",
"Documented?": "https://docs.layer5.io/cloud/identity/teams/",
"Feature": "Directly create a new user account within a team.",
"Function": "Add User to Team",
"Pricing page?": "",
"Subscription Tier": "Team",
"Tech": "Cloud",
"Theme (also: Keychain Name)": "Identity \u0026 Access Management"
}
},
{
"documentation": "https://docs.layer5.io/cloud/identity/organizations/",
"entire_row": {
"Category": "Organizations",
"Documented?": "https://docs.layer5.io/cloud/identity/organizations/",
"Feature": "Establish new organization for organizing teams, users, and resource access.",
"Function": "Create Organization",
"Pricing page?": "",
"Subscription Tier": "Enterprise",
"Tech": "Cloud",
"Theme (also: Keychain Name)": "Identity \u0026 Access Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Dry-run",
"Documented?": "",
"Feature": "Test and verify configuration changes in a separate environment.",
"Function": "Dry-run",
"Pricing page?": "X",
"Subscription Tier": "Team",
"Tech": "Server",
"Theme (also: Keychain Name)": "Lifecycle Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Multiple Kubernetes Clusters",
"Documented?": "",
"Feature": "Ongoing synchronization of Kubernetes configuration, workloads and service mesh changes across any number of Kubernetes clusters.",
"Function": "Multiple Kubernetes Clusters",
"Pricing page?": "X",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Lifecycle Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "mesheryctl",
"Documented?": "",
"Feature": "Seamlessly manage your configurations, deployments, and interactions through our intuitive and powerful command-line interface",
"Function": "all mesheryctl commands",
"Pricing page?": "X",
"Subscription Tier": "Free",
"Tech": "Golang",
"Theme (also: Keychain Name)": "Meshery System"
}
},
{
"documentation": "https://docs.layer5.io/cloud/catalog/metrics/",
"entire_row": {
"Category": "Settings",
"Documented?": "https://docs.layer5.io/cloud/catalog/metrics/",
"Feature": "View already configured metrics",
"Function": "View Metrics",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Meshery System"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Service Performance",
"Documented?": "",
"Feature": "Continuous visibility across all of your clusters and workloads.",
"Function": "Service Performance",
"Pricing page?": "X",
"Subscription Tier": "Free",
"Tech": "Kanvas",
"Theme (also: Keychain Name)": "Kanvas"
}
},
{
"documentation": "https://docs.layer5.io/kanvas/concepts/relationships/#2-hierarchical-relationships",
"entire_row": {
"Category": "Design Patterns",
"Documented?": "https://docs.layer5.io/kanvas/concepts/relationships/#2-hierarchical-relationships",
"Feature": "",
"Function": "Use heirarchical relationships",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Kanvas",
"Theme (also: Keychain Name)": "Kanvas"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Design Patterns",
"Documented?": "",
"Feature": "This permission grants the user the ability to undo/redo any action in done in Kanvas",
"Function": "Undo or Redo",
"Pricing page?": "X",
"Subscription Tier": "Team",
"Tech": "Kanvas",
"Theme (also: Keychain Name)": "Kanvas"
}
},
{
"pricing_page": "true",
"documentation": "https://docs.layer5.io/kanvas/designer/whiteboarding/",
"entire_row": {
"Category": "Design Patterns",
"Documented?": "https://docs.layer5.io/kanvas/designer/whiteboarding/",
"Feature": "Ability to freeform draw any shapes, draw edges",
"Function": "Whiteboarding",
"Pricing page?": "X",
"Subscription Tier": "Free",
"Tech": "Kanvas",
"Theme (also: Keychain Name)": "Kanvas"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Visual Design",
"Documented?": "",
"Feature": "Drag-n-drop cloud native infrastructure designer to configure, model, and deploy your workloads",
"Function": "Visual Design",
"Pricing page?": "X",
"Subscription Tier": "Free",
"Tech": "Kanvas",
"Theme (also: Keychain Name)": "Kanvas"
}
},
{
"documentation": "https://docs.layer5.io/kanvas/visualizer/visualizer-views/",
"entire_row": {
"Category": "Visualizer",
"Documented?": "https://docs.layer5.io/kanvas/visualizer/visualizer-views/",
"Feature": "See all views withing a workspace",
"Function": "View Views",
"Pricing page?": "",
"Subscription Tier": "Team",
"Tech": "Server",
"Theme (also: Keychain Name)": "MeshMap"
}
},
{
"documentation": "https://docs.layer5.io/kanvas/visualizer/visualizer-views/#4-delete-a-view",
"entire_row": {
"Category": "Visualizer",
"Documented?": "https://docs.layer5.io/kanvas/visualizer/visualizer-views/#4-delete-a-view",
"Feature": "Dissolve environment and all connection memberships. Leave associated resources intact.",
"Function": "Delete View",
"Pricing page?": "",
"Subscription Tier": "Team",
"Tech": "Server",
"Theme (also: Keychain Name)": "MeshMap"
}
},
{
"documentation": "https://docs.layer5.io/kanvas/visualizer/visualizer-views/#5-export-a-view",
"entire_row": {
"Category": "Visualizer",
"Documented?": "https://docs.layer5.io/kanvas/visualizer/visualizer-views/#5-export-a-view",
"Feature": "Export views to JSON format",
"Function": "Export views",
"Pricing page?": "",
"Subscription Tier": "Team",
"Tech": "Server",
"Theme (also: Keychain Name)": "MeshMap"
}
},
{
"documentation": "https://docs.layer5.io/kanvas/visualizer/visualizer-views/#3-share-a-view",
"entire_row": {
"Category": "Visualizer",
"Documented?": "https://docs.layer5.io/kanvas/visualizer/visualizer-views/#3-share-a-view",
"Feature": "Share Views",
"Function": "Share Views",
"Pricing page?": "",
"Subscription Tier": "Team",
"Tech": "Kanvas",
"Theme (also: Keychain Name)": "Kanvas"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Load Generation",
"Documented?": "",
"Feature": "Single Load Generator: Support testing multiple endpoints simultaneously.",
"Function": "Load Generation",
"Pricing page?": "X",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Performance Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Load Generation",
"Documented?": "",
"Feature": "Multiple Meshery Servers or Meshery Adapters generating load, collecting and coalescing results into a single report.",
"Function": "Distributed Load Generator",
"Pricing page?": "X",
"Subscription Tier": "Team",
"Tech": "GetNighthawk",
"Theme (also: Keychain Name)": "Performance Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Performance Profiles",
"Documented?": "",
"Feature": "Share performance profiles and test results with individual users or teams.",
"Function": "Performance Profiles",
"Pricing page?": "X",
"Subscription Tier": "Team",
"Tech": "Cloud",
"Theme (also: Keychain Name)": "Performance Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Comparative Testing",
"Documented?": "",
"Feature": "Historical views: Infrastructure-centric",
"Function": "Comparative Testing",
"Pricing page?": "X",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Performance Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Comparative Testing",
"Documented?": "",
"Feature": "Detect real-time anomalies.",
"Function": "Comparative Testing",
"Pricing page?": "X",
"Subscription Tier": "Team",
"Tech": "Cloud",
"Theme (also: Keychain Name)": "Performance Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Continuous Quality of Service Monitoring",
"Documented?": "",
"Feature": "Experience uninterrupted oversight of your service quality with our Continuous Quality of Service Monitoring.",
"Function": "Continuous Quality of Service Monitoring",
"Pricing page?": "X",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Performance Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "MeshMark",
"Documented?": "",
"Feature": "Identify the cost of a specific network function.",
"Function": "MeshMark",
"Pricing page?": "X",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Performance Management"
}
},
{
"documentation": "https://docs.layer5.io/cloud/security/sessions/#what-sessions-are",
"entire_row": {
"Category": "Sessions",
"Documented?": "https://docs.layer5.io/cloud/security/sessions/#what-sessions-are",
"Feature": "",
"Function": "View Sessions",
"Pricing page?": "",
"Subscription Tier": "",
"Tech": "",
"Theme (also: Keychain Name)": "Security Management"
}
},
{
"documentation": "https://docs.layer5.io/cloud/security/tokens/#creating-tokens",
"entire_row": {
"Category": "Tokens",
"Documented?": "https://docs.layer5.io/cloud/security/tokens/#creating-tokens",
"Feature": "",
"Function": "Create Token",
"Pricing page?": "",
"Subscription Tier": "",
"Tech": "",
"Theme (also: Keychain Name)": "Security Management"
}
},
{
"documentation": "https://docs.layer5.io/cloud/security/keys/",
"entire_row": {
"Category": "Keys",
"Documented?": "https://docs.layer5.io/cloud/security/keys/",
"Feature": "",
"Function": "View Keys",
"Pricing page?": "",
"Subscription Tier": "",
"Tech": "",
"Theme (also: Keychain Name)": "Security Management"
}
},
{
"documentation": "https://docs.layer5.io/cloud/spaces/workspaces/",
"entire_row": {
"Category": "Workspace",
"Documented?": "https://docs.layer5.io/cloud/spaces/workspaces/",
"Feature": "See all workspaces within an organisation",
"Function": "View Workspace",
"Pricing page?": "",
"Subscription Tier": "Enterprise",
"Tech": "",
"Theme (also: Keychain Name)": "Workspace Management"
}
},
{
"documentation": "https://docs.layer5.io/cloud/spaces/environments/#deleting-an-environment",
"entire_row": {
"Category": "Environments",
"Documented?": "https://docs.layer5.io/cloud/spaces/environments/#deleting-an-environment",
"Feature": "Dissolve environment and all connection memberships. Leave associated resources intact.",
"Function": "Delete Environment",
"Pricing page?": "",
"Subscription Tier": "Enterprise",
"Tech": "",
"Theme (also: Keychain Name)": "Workspace Management"
}
},
{
"documentation": "https://docs.layer5.io/cloud/getting-started/creating-a-design-from-templete.md/",
"entire_row": {
"Category": "Catalog",
"Documented?": "https://docs.layer5.io/cloud/getting-started/creating-a-design-from-templete.md/",
"Feature": "Clone any item from catalog",
"Function": "Clone Catalog Item",
"Pricing page?": "",
"Subscription Tier": "",
"Tech": "",
"Theme (also: Keychain Name)": "Catalog Management"
}
},
{
"pricing_page": "true",
"documentation": "https://docs.layer5.io/cloud/getting-started/support/#contacting-support",
"entire_row": {
"Category": "Community Support",
"Documented?": "https://docs.layer5.io/cloud/getting-started/support/#contacting-support",
"Feature": "Get help with most of your Meshery questions and issues in our Community Forum.",
"Function": "Community Support",
"Pricing page?": "X",
"Subscription Tier": "Free",
"Tech": "",
"Theme (also: Keychain Name)": "Support and Deployment"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Standard Support",
"Documented?": "",
"Feature": "Layer5 Support can help you troubleshoot issues you run into while using Meshery. Get support via the web.",
"Function": "Standard Support",
"Pricing page?": "X",
"Subscription Tier": "Team",
"Tech": "",
"Theme (also: Keychain Name)": "Support and Deployment"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Premium and Premium Plus Support",
"Documented?": "",
"Feature": "With Premium, get a 30-minute SLA and 24/7 web and phone support. With Premium Plus, get everything in Premium plus your own Support Account Manager and more.",
"Function": "Premium and Premium Plus Support",
"Pricing page?": "X",
"Subscription Tier": "Enterprise",
"Tech": "",
"Theme (also: Keychain Name)": "Support and Deployment"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Self-hosted Deployment",
"Documented?": "",
"Feature": "Self-hosted Meshery Cloud for on-prem appliances or self-managed cloud tenants.",
"Function": "Self-hosted Deployment",
"Pricing page?": "X",
"Subscription Tier": "Enterprise",
"Tech": "",
"Theme (also: Keychain Name)": "Support and Deployment"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Phone Support",
"Documented?": "",
"Feature": "Layer5 Support can help you troubleshoot issues you run into while using Meshery. Get support via phone.",
"Function": "Phone Support",
"Pricing page?": "X",
"Subscription Tier": "Enterprise",
"Tech": "",
"Theme (also: Keychain Name)": "Support and Deployment"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Serverless Pricing",
"Documented?": "",
"Feature": "Subscription plan management. Transformation of workflow pricing model.",
"Function": "Serverless Pricing",
"Pricing page?": "X",
"Subscription Tier": "Enterprise",
"Tech": "WASM",
"Theme (also: Keychain Name)": "Business Performance"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Screenshots",
"Documented?": "",
"Feature": "Capture and share visual snapshots of your work with ease using our Screenshots feature.",
"Function": "Screenshots",
"Pricing page?": "X",
"Subscription Tier": "Free",
"Tech": "WASM",
"Theme (also: Keychain Name)": "Digital Experience Management"
}
},
{
"documentation": "https://docs.layer5.io/cloud/identity/users/notification-preferences/",
"entire_row": {
"Category": "Notification Center",
"Documented?": "https://docs.layer5.io/cloud/identity/users/notification-preferences/",
"Feature": "",
"Function": "Events: Reporting of asynchronous events.",
"Pricing page?": "",
"Subscription Tier": "Free",
"Tech": "Server",
"Theme (also: Keychain Name)": "Incident Management"
}
},
{
"pricing_page": "true",
"entire_row": {
"Category": "Notification Center",
"Documented?": "",
"Feature": "Consolidate all important updates, alerts, and messages in one centralized hub, ensuring you never miss a critical communication or task.",
"Function": "Notification Center",
"Pricing page?": "X",