-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathurls.toml
More file actions
3272 lines (3272 loc) · 336 KB
/
Copy pathurls.toml
File metadata and controls
3272 lines (3272 loc) · 336 KB
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
[Cortex]
[Cortex.Blogs]
[Cortex.Blogs.Releases]
[Cortex.Blogs.Releases.2024_7]
MainDoc = "/blog/2024/08/12/2024.7/"
[Cortex.Blogs.Releases.2024_9]
MainDoc = "/blog/2024/10/07/2024.9/"
ProcessAndActivity = "/blog/2024/10/07/2024.9/#process-and-activity"
SaveOutputPropertiesToMultipleVariables = "/blog/2024/10/07/2024.9/#saving-output-properties-to-multiple-variables"
ExecutionContextVariable = "/blog/2024/10/07/2024.9/#execution-context-variable"
ProxyForTheCortex7FlowApi = "/blog/2024/10/07/2024.9/#proxy-for-the-cortex-7-flow-api"
LoggingAddedToBlocksThatCommunicateWithExternalSystems = "/blog/2024/10/07/2024.9/#logging-added-to-blocks-that-communicate-with-external-systems"
ReductionOfTotalNumberOfNServiceBusEndpointsAndRabbitMQQueues = "/blog/2024/10/07/2024.9/#reduction-of-total-number-of-nservicebus-endpoints-and-rabbitmq-queues"
UpgradeOpenSSL = "/blog/2024/10/07/2024.9/#upgrade-openssl"
MultiDomainCertificatesSupport = "/blog/2024/10/07/2024.9/#multi-domain-certificates-support"
NewCortexManagementUserAddedToManageRabbitMQQueues = "/blog/2024/10/07/2024.9/#new-cortexmanagementuser-added-to-manage-rabbitmq-queues"
ServerSideValidationAddedToCortexGatewayAPI = "/blog/2024/10/07/2024.9/#server-side-validation-added-to-cortex-gateway-api"
RemoveRefreshTokenCookieOnSign = "/blog/2024/10/07/2024.9/#remove-refresh-token-cookie-on-sign-out"
RenameFlowsCharmToDevAndChangeIcon = "/blog/2024/10/07/2024.9/#rename-flows-charm-to-dev-and-change-icon"
RenameSettingsCharmToAdminAndChangeIcon = "/blog/2024/10/07/2024.9/#rename-settings-charm-to-admin-and-change-icon"
UpgradeToNet8 = "/blog/2024/10/07/2024.9/#upgrade-to-net-8"
SupportInstallationWhenFilesAreBlockedByTheOperatingSystem = "/blog/2024/10/07/2024.9/#support-installation-when-files-are-blocked-by-the-operating-system"
SupportUpgradeWhenFilesAreBlockedByTheOperatingSystem = "/blog/2024/10/07/2024.9/#support-upgrade-when-files-are-blocked-by-the-operating-system"
ExecutionServiceIsUpgradedWhenTheEngineVersionIsUnchanged = "/blog/2024/10/07/2024.9/#execution-service-is-upgraded-when-the-engine-version-is-unchanged"
HandlingOfTheExecutionServicesLifecycleEvents = "/blog/2024/10/07/2024.9/#handling-of-the-execution-services-lifecycle-events"
ProcessAndActivityDocumentation = "/blog/2024/10/07/2024.9/#process-and-activity-1"
DecompositionOfOutputProperties = "/blog/2024/10/07/2024.9/#decomposition-of-output-properties"
PreventDeadlocksWhenUsingSemaphores = "/blog/2024/10/07/2024.9/#prevent-deadlocks-when-using-semaphores"
ScreenshotsUpdated = "/blog/2024/10/07/2024.9/#screenshots-updated"
FlowCompatibilityVersionIntroduced = "/blog/2024/10/07/2024.9/#flow-compatibility-version-introduced"
GeneralImprovementsToTheDocumentation = "/blog/2024/10/07/2024.9/#general-improvements-to-the-documentation"
[Cortex.Blogs.Releases.2025_1]
MainDoc = "/blog/2025/02/10/2025.1/"
[Cortex.Blogs.Releases.2025_3]
MainDoc = "/blog/2025/04/07/2025.3/"
CreatingANewProcessFromNaturalLanguage = "/blog/2025/04/07/2025.3/#support-for-creating-a-new-process-from-natural-language"
EnablingAutomatedBackupsForDisasterRecovery = "/blog/2025/04/07/2025.3/#enabled-automated-backups-for-disaster-recovery"
RemovingOldExecutionsOnExecutionServiceStartup = "/blog/2025/04/07/2025.3/#remove-old-executions-on-execution-service-startup"
MigratingRabbitMqQueuesToQuorumQueues = "/blog/2025/04/07/2025.3/#migrated-rabbitmq-queues-to-quorum-queues"
GeneralSecurityEnhancements = "/blog/2025/04/07/2025.3/#general-security-enhancements"
ConfigurableGlobalRunAsUserForFlows = "/blog/2025/04/07/2025.3/#configurable-global-runas-user-for-flows"
ImprovingThePageLoadSpeed = "/blog/2025/04/07/2025.3/#improved-page-load-speed-of-the-product-portal"
HidingUnsupportedVersionsOfTheDocumentation = "/blog/2025/04/07/2025.3/#unsupported-versions-of-the-documentation-are-now-hidden"
RabbitMqAndErlangHaveBeenUpgraded = "/blog/2025/04/07/2025.3/#upgrade-of-rabbitmq-and-erlang"
PackageManagement = "/blog/2025/04/07/2025.3/#added-package-management-documentation"
[Cortex.Blogs.Releases.2025_3.RemovalOf7]
2AndInnovationFromDocumentation = "/blog/2025/04/07/2025.3/#removed-72-and-innovation-from-documentation"
[Cortex.Blogs.Releases.2025_7]
MainDoc = "/blog/2025/08/26/2025.7/"
[Cortex.Blogs.Releases.2025_9]
MainDoc = "/blog/2025/10/27/2025.9/"
AddedMultiFactorAuthenticationViaOpenIdConnectOnGateway = "/blog/2025/10/27/2025.9/#added-multifactor-authentication-mfa-via-openid-connect-on-cortex-gateway"
EnabledDebuggingOfProductionFlows = "/blog/2025/10/27/2025.9/#enabled-debugging-of-production-flows"
AddedQuickAddBlocksToTheFlowEditor = "/blog/2025/10/27/2025.9/#added-quick-add-blocks-to-the-flow-editor"
ExtendedLicenceFingerprintGenerator = "/blog/2025/10/27/2025.9/#extended-licence-fingerprint-generator"
AddedAuthenticationManagementToApiGatewayService = "/blog/2025/10/27/2025.9/#added-authentication-management-to-cortex-api-gateway-service"
EnabledSingleUseRefreshTokensConfigurable = "/blog/2025/10/27/2025.9/#enabled-singleuse-refresh-tokens-configurable"
HardenedConfigurationPortalWithSecurityHeaders = "/blog/2025/10/27/2025.9/#hardened-configuration-portal-with-security-headers"
OptimisedExecutionManagementServiceEventBatching = "/blog/2025/10/27/2025.9/#optimised-execution-management-service-event-batching"
ImprovedExecutionServiceConcurrencyAndFlowTranslation = "/blog/2025/10/27/2025.9/#improved-execution-service-concurrency-and-flow-translation"
EnhancedServiceFabricResilienceToRabbitMqNodeOutages = "/blog/2025/10/27/2025.9/#enhanced-service-fabric-resilience-to-rabbitmq-node-outages"
ExpandedBlockLogging = "/blog/2025/10/27/2025.9/#expanded-block-logging"
MadeBlockLogsQueryableInGrafana = "/blog/2025/10/27/2025.9/#made-block-logs-queryable-in-grafana"
ImprovedOpenSslCertificateGeneration = "/blog/2025/10/27/2025.9/#improved-openssl-certificate-generation"
ChangedLocationOfCertificateSettingsForServiceFabricServices = "/blog/2025/10/27/2025.9/#changed-location-of-certificatesettings-for-service-fabric-services"
AddedConfigurationPortalInstallationGuide = "/blog/2025/10/27/2025.9/#added-configuration-portal-installation-guide"
UpdatedInstallationGuideForNewFingerprintOutput = "/blog/2025/10/27/2025.9/#updated-cortex-installation-guide-for-new-fingerprint-output"
AddedUpgradeObservabilityDocumentationToLatestVersion = "/blog/2025/10/27/2025.9/#added-upgrade-observability-documentation-to-latest-version"
UpdatedTutorials = "/blog/2025/10/27/2025.9/#updated-tutorials"
[Cortex.Blogs.Releases.2026_3]
MainDoc = "/blog/2026/05/11/2026.3/"
AddedServiceDetailsToExecutionContext = "/blog/2026/05/11/2026.3/#added-servicedetails-to-executioncontext"
AddedAbilityToConfigureBlockLoggingOnEachBlock = "/blog/2026/05/11/2026.3/#added-ability-to-configure-block-logging-on-each-block"
AddedNewFlowSettingsDialog = "/blog/2026/05/11/2026.3/#added-new-flow-settings-dialog"
ImprovedHandlingOfBlankOrNullExpression = "/blog/2026/05/11/2026.3/#improved-handling-of-blank-or-null-expression"
AddedLdapGroupFilteringForRoleClaims = "/blog/2026/05/11/2026.3/#added-ldap-group-filtering-for-role-claims"
AddedSupportForFilteringAndOpeningTaskByProcessId = "/blog/2026/05/11/2026.3/#added-support-for-filtering-and-opening-task-by-process-id"
AddedSupportForAssigningTaskToUsersAndOrGroups = "/blog/2026/05/11/2026.3/#added-support-for-assigning-task-to-users-andor-groups"
EnhancedTheHandlingOfUntranslatedSnmpV1Traps = "/blog/2026/05/11/2026.3/#enhanced-the-handling-of-untranslated-snmp-v1-traps"
PartialTranslationForUnrecognisedSnmpVarbinds = "/blog/2026/05/11/2026.3/#partial-translation-for-unrecognised-snmp-varbinds"
AttemptTranslationOfSnmpVarbindsThatDoNotEndWith0 = "/blog/2026/05/11/2026.3/#attempt-translation-of-snmp-varbinds-that-do-not-end-with-0"
AddedEncryptionEndpointToApiGatewayService = "/blog/2026/05/11/2026.3/#added-encryption-endpoint-to-cortex-api-gateway-service"
AddedSupportForMultipleEncryptionKeys = "/blog/2026/05/11/2026.3/#added-support-for-multiple-encryption-keys"
AddedTheAbilityToEncryptValuesInTheConfigurationPortal = "/blog/2026/05/11/2026.3/#added-the-ability-to-encrypt-values-in-the-cortex-configuration-portal"
IntroducedRoleBasedAccessControlForContainersInTheConfigurationPortal = "/blog/2026/05/11/2026.3/#introduced-rolebased-access-control-for-containers-in-the-cortex-configuration-portal"
GeneralSecurityEnhancements = "/blog/2026/05/11/2026.3/#general-security-enhancements"
AddedRobotsTxtExclusionsForWebApplications = "/blog/2026/05/11/2026.3/#added-robotstxt-exclusions-for-cortex-web-applications"
ImprovedExecutionServiceConcurrencyAndFlowTranslation = "/blog/2026/05/11/2026.3/#improved-execution-service-concurrency-and-flow-translation"
LimitTheBatchSizeOfExecutionCompletionDetailsSentToTheMonitoringService = "/blog/2026/05/11/2026.3/#limit-the-batch-size-of-executioncompletiondetails-sent-to-the-monitoring-service"
ImprovingHandlingOfBatchExecutionCompletionDetailsInTheMonitoringService = "/blog/2026/05/11/2026.3/#improved-handling-of-batch-executioncompletiondetails-in-the-monitoring-service"
ImprovingExecutionHandlingPerformanceInTheProvisioningService = "/blog/2026/05/11/2026.3/#improved-execution-handling-performance-in-the-provisioning-service"
SupportForImplicitDataTypeConversionInFlowInputVariables = "/blog/2026/05/11/2026.3/#added-support-for-use-of-implicit-data-type-conversion-in-flow-input-variables"
MakingFirstTimeDebugExecutionStartImmediately = "/blog/2026/05/11/2026.3/#execution-now-starts-on-first-debug"
EnhancingServiceLifecycleHandlingAndRabbitMqOutageRecovery = "/blog/2026/05/11/2026.3/#improved-service-lifecycle-handling-and-rabbitmq-outage-recovery"
SetRetentionPeriodForGrafanaLoki = "/blog/2026/05/11/2026.3/#set-retention-period-for-grafana-loki"
EnablingLogsForFailedLoginAttemptsToGateway = "/blog/2026/05/11/2026.3/#enabled-logs-for-failed-login-attempts-to-cortex-gateway"
AddingEngineAndBlocksVersionDisplayInTheGatewayPackageDefinitionsGrid = "/blog/2026/05/11/2026.3/#added-display-of-engine-and-blocks-version-in-cortex-gateway-package-definitions-grid"
AddingANewFlowExecutionDetailDashboardInGrafana = "/blog/2026/05/11/2026.3/#added-new-flow-execution-detail-dashboard-in-grafana"
UpdatingNuGetPackages = "/blog/2026/05/11/2026.3/#updated-thirdparty-packages"
UpgradingObservabilityStackDependencies = "/blog/2026/05/11/2026.3/#upgraded-observability-thirdparty-components"
UpdatingSnmpLibraryToSupportNewAuthenticationProtocols = "/blog/2026/05/11/2026.3/#updated-snmp-library-to-support-new-authentication-protocols"
ImprovedNodeRecoveryForClusterMachines = "/blog/2026/05/11/2026.3/#improved-node-recovery-for-cluster-machines"
ImprovedBehaviourWhenDisablingClusterNodes = "/blog/2026/05/11/2026.3/#improved-behaviour-when-disabling-cluster-nodes"
Utf8EncodingSupportForNonAnsiCharactersInConfigurationFiles = "/blog/2026/05/11/2026.3/#utf8-encoding-support-for-nonansi-characters-in-configuration-files"
RemovalOfDependencyOnActiveDirectoryCmdlets = "/blog/2026/05/11/2026.3/#removal-of-dependency-on-active-directory-cmdlets"
AddedRequiredTypesToLoggingSettingsDuringUpgrade = "/blog/2026/05/11/2026.3/#added-required-types-to-loggingsettings-during-upgrade"
AddingANewNodeMaintenanceScriptForPrePatchingOperations = "/blog/2026/05/11/2026.3/#added-node-maintenance-script-for-pre-patching-operations"
RemovalOfActiveDirectoryCmdletsDependencyFromGrafanaAlloyInstallation = "/blog/2026/05/11/2026.3/#removal-of-active-directory-cmdlets-dependency-from-grafana-alloy-installation"
BackupAndRestoreSupportForReliableCollectionsDuringSingleServerUpgrades = "/blog/2026/05/11/2026.3/#backup--restore-support-for-reliable-collections-during-singleserver-upgrades"
EnhancedPreUpgradeHealthChecksForServiceFabricAndRabbitMq = "/blog/2026/05/11/2026.3/#enhanced-preupgrade-health-checks-for-service-fabric-and-rabbitmq"
ImprovingServiceManagementDuringReliableCollectionsBackupAndRestore = "/blog/2026/05/11/2026.3/#improved-service-management-during-reliable-collections-backup-and-restore"
ImprovingFlowMigrationFromCortex7 = "/blog/2026/05/11/2026.3/#improved-flow-migration-from-cortex-7"
ExpandedWithBroaderProductPortal = "/blog/2026/05/11/2026.3/#expanded-product-portal-documentation-coverage"
[Cortex.Faqs]
MainDoc = "/docs/faqs/"
[Cortex.Faqs.CheckClusterHealth]
MainDoc = "/docs/faqs/check-cluster-health/"
[Cortex.Faqs.CheckClusterHealth.MultiServer]
ViewClusterHealth = "/docs/faqs/check-cluster-health/multi-server-with-ha/#view-cluster-health"
[Cortex.Faqs.CheckClusterHealth.SingleServer]
ViewClusterHealth = "/docs/faqs/check-cluster-health/single-server-without-ha/#view-cluster-health"
[Cortex.Faqs.ImportClientCertificate]
MainDoc = "/docs/faqs/import-client-certificate/"
MultiServer = "/docs/faqs/import-client-certificate/multi-server-with-ha"
SingleServer = "/docs/faqs/import-client-certificate/single-server-without-ha"
[Cortex.Faqs.ConfigureCodeAnalyser]
[Cortex.Faqs.ConfigureCodeAnalyser.MultipleServerWithHA]
DisableCodeAnalyser = "/docs/faqs/configure-code-analyser/multi-server-with-ha/disable-code-analyser"
[Cortex.Faqs.ConfigureCodeAnalyser.SingleServerWithoutHA]
DisableCodeAnalyser = "/docs/faqs/configure-code-analyser/single-server-without-ha/disable-code-analyser"
[Cortex.Faqs.ConfigureGlobalRunAs]
MainDoc = "/docs/faqs/configure-global-runas/"
[Cortex.Faqs.ConfigureOidcAuthentication]
MainDoc = "/docs/faqs/configure-oidc-authentication/"
[Cortex.Faqs.ConfigureOidcAuthentication.MicrosoftEntra]
Entra = "/docs/faqs/configure-oidc-authentication/microsoft-entra/#configure-microsoft-entra-oidc-provider"
[Cortex.Faqs.ChangeLoggingLevels]
[Cortex.Faqs.ChangeLoggingLevels.FlowLogging]
MainDoc = "/docs/faqs/change-logging-levels/change-flow-logging/"
[Cortex.GettingStarted]
MainDoc = "/docs/getting-started/"
[Cortex.GettingStarted.OnPremise]
MainDoc = "/docs/getting-started/on-premise/"
[Cortex.GettingStarted.OnPremise.InstallInnovationOnly]
[Cortex.GettingStarted.OnPremise.InstallInnovationOnly.Advanced]
AdvancedConfigSingleServer = "/docs/getting-started/on-premise/install-innovation-only/advanced/advanced-config-changes#single-server-without-ha"
AdvancedConfigMultipleServer = "/docs/getting-started/on-premise/install-innovation-only/advanced/advanced-config-changes#multiple-server-with-ha"
CreateSelfSignedCertificates = "/docs/getting-started/on-premise/install-innovation-only/advanced/self-signed-certificates"
EncryptText = "/docs/getting-started/on-premise/install-innovation-only/advanced/encrypt-text"
PortRequirements = "/docs/getting-started/on-premise/install-innovation-only/advanced/port-requirements"
RolloverCertificates = "/docs/getting-started/on-premise/install-innovation-only/advanced/rollover-certificates"
SSLBestPractices = "/docs/getting-started/on-premise/install-innovation-only/advanced/ssl-best-practices"
[Cortex.GettingStarted.OnPremise.InstallInnovationOnly.MultipleServerWithHA]
MainDoc = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/"
AltLoadBalancer = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/prerequisites#alternative-load-balancer-requirements"
AltLoadBalancerNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/requirements#alternative-load-balancer-requirements"
AntivirusExclusions = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/prerequisites#antivirus-exclusions"
AntivirusExclusionsNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/requirements#antivirus-exclusions"
Architecture = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/architecture"
AssignCertificateFriendlyNameNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/install-web-application-server/prerequisites/#assign-certificate-friendly-name"
AssignCertificateFriendlyNameNew2 = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/installation/install-web-application-server/prerequisites/#assign-certificate-friendly-name"
CertificateRequirements = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/prerequisites#certificate-requirements"
CertificateRequirementsNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/requirements#certificate-requirements"
ConfigureCodeAnalyser = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/post-installation/configure-code-analyser"
ConfigureCortexGatewayInstallationScriptNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/install-web-application-server/perform-gateway-installation/#configure-cortex-gateway-installation-script"
ConfigureCortexGatewayInstallationScriptNew2 = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/installation/install-web-application-server/perform-gateway-installation/#configure-cortex-gateway-installation-script"
ConfigureDebuggerInstallationScript = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/installation/install-web-application-server/perform-debugger-installation/#configure-installation-script"
ConfigureGlobalRunAs = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/post-installation/configure-global-runas"
ConfigureInstallationScript = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/install-application-and-loadbalancer-servers#configure-installation-script"
ConfigureInstallationScriptNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/installation/install-application-and-loadbalancer-servers#configure-installation-script"
DebuggerInstallation = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/install-web-application-server/perform-debugger-installation"
DebuggerInstallationNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/installation/install-web-application-server/perform-debugger-installation"
EncryptionRequirements = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/prerequisites#encryption-requirements"
EncryptionRequirementsNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/pre-installation/#generate-encryption-key"
GatewayInstallation = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/install-web-application-server/perform-gateway-installation"
GatewayInstallationNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/installation/install-web-application-server/perform-gateway-installation"
GenerateEncryptionKey = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/pre-installation#generate-encryption-key"
GetGatewayAppPoolUser = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/install-web-application-server/prerequisites/#get-cortex-gateway-application-pool-user"
GetGatewayAppPoolUserNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/installation/install-web-application-server/prerequisites/#get-cortex-gateway-application-pool-user"
ImportCertificateManuallyNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/install-web-application-server/prerequisites/#import-certificate-manually"
ImportCertificateManuallyNew2 = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/installation/install-web-application-server/prerequisites/#import-certificate-manually"
ImportRootCertificate = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/install-web-application-server/prerequisites/#import-root-certificate"
ImportRootCertificateNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/installation/install-web-application-server/prerequisites/#import-root-certificate"
InstallApplicationAndLoadBalancerServers = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/install-application-and-loadbalancer-servers"
InstallApplicationAndLoadBalancerServersNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/installation/install-application-and-loadbalancer-servers"
Installation = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/installation"
InstallWebApplicationServer = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/install-web-application-server"
InstallWebApplicationServerNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/installation/install-web-application-server"
LicensingRequirements = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/prerequisites#licensing-requirements"
MakeInstallationArtefactsAvailable = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/install-application-and-loadbalancer-servers/#make-installation-artefacts-available"
MakeInstallationArtefactsAvailableNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/pre-installation/#make-installation-artefacts-available-on-all-servers"
ObtainLicence = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/pre-installation#obtain-a-cortex-licence-file"
PostInstallation = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/post-installation"
PreInstallation = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/pre-installation"
Prerequisites = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/prerequisites"
Requirements = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/requirements"
SetupGateway = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/setup-gateway"
SetupGatewayNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/installation/setup-gateway"
TryItOut = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/try-it-out"
TryItOutPublishedFlow = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/try-it-out/#test-publishing-production-flows"
TryItOutPublishedFlowNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/post-installation/try-it-out/#test-publishing-production-flows"
WebApplicationServerPrerequisites = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/install-web-application-server/prerequisites"
WebApplicationServerPrerequisitesNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/installation/install-web-application-server/prerequisites"
WebBrowserRequirements = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/prerequisites#web-browser-requirements"
WebBrowserRequirementsNew = "/docs/getting-started/on-premise/install-innovation-only/multiple-server-with-ha/requirements#web-browser-requirements"
[Cortex.GettingStarted.OnPremise.InstallInnovationOnly.SingleServerWithoutHA]
MainDoc = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/"
AntivirusExclusions = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/prerequisites#antivirus-exclusions"
AntivirusExclusionsNew = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/requirements#antivirus-exclusions"
Architecture = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/architecture"
AssignCertificateFriendlyName = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/install-web-application-server/#assign-certificate-friendly-name"
AssignCertificateFriendlyNameNew = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/installation/install-web-application-server/#assign-certificate-friendly-name"
CertificateRequirements = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/prerequisites#certificate-requirements"
CertificateRequirementsNew = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/requirements#certificate-requirements"
ConfigureCodeAnalyser = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/post-installation/configure-code-analyser"
ConfigureCortexGatewayInstallationScript = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/install-web-application-server/#configure-cortex-gateway-installation-script"
ConfigureCortexGatewayInstallationScriptNew = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/installation/install-web-application-server/#configure-cortex-gateway-installation-script"
ConfigureGlobalRunAs = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/post-installation/configure-global-runas"
ConfigureInstallationScript = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/install-application-server#configure-installation-script"
ConfigureInstallationScriptNew = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/installation/install-application-server#configure-installation-script"
EncryptionRequirements = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/prerequisites#encryption-requirements"
EncryptionRequirementsNew = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/pre-installation/#generate-encryption-key"
GenerateEncryptionKey = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/pre-installation#generate-encryption-key"
ImportCertificateManually = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/install-web-application-server/#import-certificate-manually"
ImportCertificateManuallyNew = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/installation/install-web-application-server/#import-certificate-manually"
InstallApplicationServer = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/install-application-server"
InstallApplicationServerNew = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/installation/install-application-server"
Installation = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/installation"
InstallWebApplicationServer = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/install-web-application-server"
InstallWebApplicationServerNew = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/installation/install-web-application-server"
LicensingRequirements = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/prerequisites#licensing-requirements"
ObtainLicence = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/pre-installation#obtain-a-cortex-licence-file"
PerformInstallation = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/install-web-application-server/#perform-installation"
PerformInstallationNew = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/installation/install-web-application-server/#perform-installation"
PostInstallation = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/post-installation"
PreInstallation = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/pre-installation"
Prerequisites = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/prerequisites"
Requirements = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/requirements"
SetupGateway = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/setup-gateway"
SetupGatewayNew = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/installation/setup-gateway"
TryItOut = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/try-it-out"
TryItOutPublishedFlow = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/try-it-out/#test-publishing-production-flows"
TryItOutPublishedFlowNew = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/post-installation/try-it-out/#test-publishing-production-flows"
WebBrowserRequirements = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/prerequisites#web-browser-requirements"
WebBrowserRequirementsNew = "/docs/getting-started/on-premise/install-innovation-only/single-server-without-ha/requirements#web-browser-requirements"
[Cortex.GettingStarted.OnPremise.AddInnovationTo72]
[Cortex.GettingStarted.OnPremise.AddInnovationTo72.MultipleServerWithHA]
MainDoc = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/"
AddInnovationTo72WebApplicationServer = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/install-web-application-server"
AddInnovationTo72WebApplicationServerNew = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/installation/install-web-application-server"
AltLoadBalancer = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/prerequisites#alternative-load-balancer-requirements"
AltLoadBalancerNew = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/requirements#alternative-load-balancer-requirements"
AntivirusExclusions = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/prerequisites#antivirus-exclusions"
AntivirusExclusionsNew = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/requirements#antivirus-exclusions"
Architecture = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/architecture"
AssignCertificateFriendlyNameNew = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/install-web-application-server/prerequisites/#assign-certificate-friendly-name"
AssignCertificateFriendlyNameNew2 = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/installation/install-web-application-server/prerequisites/#assign-certificate-friendly-name"
CertificateRequirements = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/prerequisites#certificate-requirements"
CertificateRequirementsNew = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/requirements#certificate-requirements"
ConfigureCodeAnalyser = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/post-installation/configure-code-analyser"
ConfigureCortexGatewayInstallationScriptNew = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/install-web-application-server/perform-gateway-installation/#configure-cortex-gateway-installation-script"
ConfigureCortexGatewayInstallationScriptNew2 = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/installation/install-web-application-server/perform-gateway-installation/#configure-cortex-gateway-installation-script"
ConfigureDebuggerInstallationScript = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/installation/install-web-application-server/perform-debugger-installation/#configure-installation-script"
ConfigureGlobalRunAs = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/post-installation/configure-global-runas"
ConfigureInstallationScript = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/install-application-and-loadbalancer-servers#configure-installation-script"
ConfigureInstallationScriptNew = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/installation/install-application-and-loadbalancer-servers#configure-installation-script"
DebuggerInstallation = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/install-web-application-server/perform-debugger-installation"
DebuggerInstallationNew = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/installation/install-web-application-server/perform-debugger-installation"
EncryptionRequirements = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/prerequisites#encryption-requirements"
EncryptionRequirementsNew = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/requirements#encryption-requirements"
GatewayInstallation = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/install-web-application-server/perform-gateway-installation"
GatewayInstallationNew = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/installation/install-web-application-server/perform-gateway-installation"
HardwareRequirements = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/prerequisites#hardware-requirements"
HardwareRequirementsNew = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/requirements#hardware-requirements"
InstallApplicationAndLoadBalancerServers = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/install-application-and-loadbalancer-servers"
InstallApplicationAndLoadBalancerServersNew = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/installation/install-application-and-loadbalancer-servers"
Installation = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/installation"
LicensingRequirements = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/prerequisites#licensing-requirements"
ObtainLicence = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/pre-installation#obtain-a-cortex-licence-file"
PostInstallation = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/post-installation"
PreInstallation = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/pre-installation"
Prerequisites = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/prerequisites"
RecommendedArchitecture = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/architecture#recommended-architecture"
Requirements = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/requirements"
TryItOut = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/try-it-out"
WebApplicationServerPrerequisites = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/install-web-application-server/prerequisites"
WebApplicationServerPrerequisitesNew = "/docs/getting-started/on-premise/add-innovation-to-72/multiple-server-with-ha/installation/install-web-application-server/prerequisites"
[Cortex.GettingStarted.OnPremise.AddInnovationTo72.SingleServerWithoutHA]
MainDoc = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/"
AddInnovationTo72WebApplicationServer = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/install-web-application-server"
AddInnovationTo72WebApplicationServerNew = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/installation/install-web-application-server"
AntivirusExclusions = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/prerequisites#antivirus-exclusions"
AntivirusExclusionsNew = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/requirements#antivirus-exclusions"
Architecture = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/architecture"
CertificateRequirements = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/prerequisites#certificate-requirements"
CertificateRequirementsNew = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/requirements#certificate-requirements"
ConfigureCodeAnalyser = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/post-installation/configure-code-analyser"
ConfigureCortexGatewayInstallationScript = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/install-web-application-server/#configure-cortex-gateway-installation-script"
ConfigureCortexGatewayInstallationScriptNew = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/installation/install-web-application-server/#configure-cortex-gateway-installation-script"
ConfigureGlobalRunAs = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/post-installation/configure-global-runas"
ConfigureInstallationScript = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/install-application-server#configure-installation-script"
ConfigureInstallationScriptNew = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/installation/install-application-server#configure-installation-script"
EncryptionRequirements = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/prerequisites#encryption-requirements"
EncryptionRequirementsNew = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/requirements#encryption-requirements"
InstallApplicationServer = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/install-application-server"
InstallApplicationServerNew = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/installation/install-application-server"
Installation = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/installation"
LicensingRequirements = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/prerequisites#licensing-requirements"
ObtainLicence = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/pre-installation#obtain-a-cortex-licence-file"
PostInstallation = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/post-installation"
PreInstallation = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/pre-installation"
Prerequisites = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/prerequisites"
Requirements = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/requirements"
TryItOut = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/try-it-out"
UpgradeGatewayNew = "/docs/getting-started/on-premise/add-innovation-to-72/single-server-without-ha/installation/install-web-application-server"
[Cortex.GettingStarted.OnPremise.AddObservabilityToInnovation]
[Cortex.GettingStarted.OnPremise.AddObservabilityToInnovation.Grafana]
MainDoc = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/"
Architecture = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/architecture"
Prerequisites = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/prerequisites"
InstallOnNewHardware = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/prerequisites/#option-1-install-on-new-hardware"
InstallOnExistingHardware = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/prerequisites/#option-2-install-on-existing-hardware"
SoftwareRequirements = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/prerequisites#software-requirements"
SetupGrafana = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/setup-grafana"
TryItOut = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/try-it-out"
WebAppCertificateRequirements = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/prerequisites#certificate-requirements"
[Cortex.GettingStarted.OnPremise.AddObservabilityToInnovation.Grafana.Advanced]
PortRequirements = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/advanced/port-requirements"
CreateSelfSignedCertificates = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/advanced/self-signed-certificates"
GenerateTheRootCaCertificate = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/advanced/self-signed-certificates/#generate-the-root-ca-certificate"
SSLBestPractices = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/advanced/ssl-best-practices"
[Cortex.GettingStarted.OnPremise.AddObservabilityToInnovation.Grafana.InstallGrafana]
MainDoc = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/install-grafana/"
ConfigureGrafana = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/install-grafana/configure-grafana"
ConfigureHTTPS = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/install-grafana/configure-grafana/#configure-https"
[Cortex.GettingStarted.OnPremise.AddObservabilityToInnovation.Grafana.InstallLoki]
MainDoc = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/install-loki/"
AddANewWebsite = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/install-loki/configure-loki/#add-a-new-website"
CreateLokiUser = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/install-loki/configure-loki/#create-loki-user"
ConfigureAuthentication = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/install-loki/configure-loki/#configure-authentication-for-the-reverse-proxy"
ConfigureLoki = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/install-loki/configure-loki"
InstallIISBasicAuthentication = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/install-loki/configure-loki/#install-iis-basic-authentication"
InstallCertificate = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/install-loki/configure-loki/#install-certificate"
[Cortex.GettingStarted.OnPremise.AddObservabilityToInnovation.Grafana.InstallPromtail]
MainDoc = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/install-promtail/"
ConfigurePromtail = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/install-promtail/configure-promtail"
[Cortex.GettingStarted.OnPremise.AddObservabilityToInnovation.Grafana.InstallAlloy]
MainDoc = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/install-alloy/"
ConfigureAlloy = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/install-alloy/configure-alloy"
[Cortex.GettingStarted.OnPremise.AddObservabilityToInnovation.Grafana.InstallAlloy.InstallAlloy]
MainDoc = "/docs/getting-started/on-premise/add-observability-to-innovation/grafana/install-alloy/install-alloy"
[Cortex.GettingStarted.OnPremise.AddConfigurationPortalToCortex]
MainDoc = "/docs/getting-started/on-premise/add-configuration-portal-to-cortex/"
PreInstallation = "/docs/getting-started/on-premise/add-configuration-portal-to-cortex/pre-installation"
[Cortex.GettingStarted.OnPremise.AddConfigurationPortalToCortex.Installation]
MainDoc = "/docs/getting-started/on-premise/add-configuration-portal-to-cortex/installation"
[Cortex.GettingStarted.OnPremise.AddConfigurationPortalToCortex.PostInstallation]
TryItOut = "/docs/getting-started/on-premise/add-configuration-portal-to-cortex/post-installation/try-it-out"
[Cortex.GettingStarted.Cloud]
[Cortex.GettingStarted.Cloud.AddObservabilityToInnovation]
[Cortex.GettingStarted.Cloud.AddObservabilityToInnovation.Grafana]
MainDoc = "/docs/getting-started/cloud/add-observability-to-innovation/grafana/"
[Cortex.GettingStarted.Cloud.AddObservabilityToInnovation.Grafana.Architecture]
MainDoc = "/docs/getting-started/cloud/add-observability-to-innovation/grafana/architecture"
[Cortex.GettingStarted.Cloud.AddObservabilityToInnovation.Grafana.Prerequisites]
MainDoc = "/docs/getting-started/cloud/add-observability-to-innovation/grafana/prerequisites"
[Cortex.GettingStarted.Cloud.AddObservabilityToInnovation.Grafana.SetupGrafana]
MainDoc = "/docs/getting-started/cloud/add-observability-to-innovation/grafana/setup-grafana"
SignUpForGrafanaCloud = "/docs/getting-started/cloud/add-observability-to-innovation/grafana/setup-grafana/#sign-up-for-grafana-cloud"
[Cortex.GettingStarted.Cloud.AddObservabilityToInnovation.Grafana.SetupLoki]
MainDoc = "/docs/getting-started/cloud/add-observability-to-innovation/grafana/setup-loki/"
SetUpGrafanaLoki = "/docs/getting-started/cloud/add-observability-to-innovation/grafana/setup-loki/#set-up-grafana-loki"
[Cortex.GettingStarted.Cloud.AddObservabilityToInnovation.Grafana.ImportDashboards]
MainDoc = "/docs/getting-started/cloud/add-observability-to-innovation/grafana/import-dashboards"
[Cortex.GettingStarted.Cloud.AddObservabilityToInnovation.Grafana.InstallAlloy]
MainDoc = "/docs/getting-started/cloud/add-observability-to-innovation/grafana/install-alloy/"
[Cortex.GettingStarted.Cloud.AddObservabilityToInnovation.Grafana.InstallAlloy.ConfigureAlloy]
MainDoc = "/docs/getting-started/cloud/add-observability-to-innovation/grafana/install-alloy/configure-alloy"
[Cortex.GettingStarted.Cloud.AddObservabilityToInnovation.Grafana.InstallPromtail]
MainDoc = "/docs/getting-started/cloud/add-observability-to-innovation/grafana/install-promtail/"
[Cortex.GettingStarted.Cloud.AddObservabilityToInnovation.Grafana.InstallPromtail.ConfigurePromtail]
MainDoc = "/docs/getting-started/cloud/add-observability-to-innovation/grafana/install-promtail/configure-promtail"
[Cortex.GettingStarted.Cloud.AddObservabilityToInnovation.Grafana.TryItOut]
MainDoc = "/docs/getting-started/cloud/add-observability-to-innovation/grafana/try-it-out/"
[Cortex.Guides]
MainDoc = "/docs/guides/"
[Cortex.Guides.Studio]
MainDoc = "/docs/guides/cortex-studio/"
[Cortex.Guides.Studio.ExpressionEditor]
MainDoc = "/docs/guides/cortex-studio/expression-editor/"
[Cortex.Guides.Studio.VariableEditor]
MainDoc = "/docs/guides/cortex-studio/variable-editor/"
[Cortex.Guides.Studio.EastPanel]
PropertyEditor = "/docs/guides/cortex-studio/east-panel/#property-editor"
VariablesViewer = "/docs/guides/cortex-studio/east-panel/#variables-viewer"
VariableDetailsViewer = "/docs/guides/cortex-studio/east-panel/#variable-details-viewer"
LoadValueButton = "/docs/guides/cortex-studio/east-panel/#load-value-button"
SettingsEditor = "/docs/guides/cortex-studio/east-panel/#settings-editor"
InputsProperty = "/docs/guides/cortex-studio/east-panel/#inputs-property"
ExceptionsViewer = "/docs/guides/cortex-studio/east-panel/#exceptions-viewer"
[Cortex.Guides.Studio.MainDisplayArea]
Undo = "/docs/guides/cortex-studio/main-display-area/#undo"
SetNextBlockToExecute = "/docs/guides/cortex-studio/main-display-area/#set-next-block-to-execute"
Breakpoints = "/docs/guides/cortex-studio/main-display-area/#breakpoints"
Executions = "/docs/guides/cortex-studio/main-display-area/#executions"
StartAnExecution = "/docs/guides/cortex-studio/main-display-area/#start-an-execution"
EditAndContinueAnExecution = "/docs/guides/cortex-studio/main-display-area/#edit-and-continue-an-execution"
[Cortex.Guides.Studio.SouthPanel]
ExecutionsGrid = "/docs/guides/cortex-studio/south-panel/#executions-grid"
PausingAnExecution = "/docs/guides/cortex-studio/south-panel/#pausing-an-execution"
SteppingAnExecution = "/docs/guides/cortex-studio/south-panel/#stepping-an-execution"
ContinuingAnExecution = "/docs/guides/cortex-studio/south-panel/#continuing-an-execution"
StoppingAnExecution = "/docs/guides/cortex-studio/south-panel/#stopping-an-execution"
MessagesGrid = "/docs/guides/cortex-studio/south-panel/#messages-grid"
VariablesGrid = "/docs/guides/cortex-studio/south-panel/#variables-grid"
CreatingVariables = "/docs/guides/cortex-studio/south-panel/#creating-variables"
ViewingVariables = "/docs/guides/cortex-studio/south-panel/#viewing-variables"
ModifyingVariables = "/docs/guides/cortex-studio/south-panel/#modifying-variables"
ChangingAVariablesScope = "/docs/guides/cortex-studio/south-panel/#changing-a-variables-scope"
DeletingVariables = "/docs/guides/cortex-studio/south-panel/#deleting-variables"
[Cortex.Guides.Studio.Debugging]
MainDoc = "/docs/guides/cortex-studio/debugging/"
[Cortex.Guides.CortexInnovation]
[Cortex.Guides.CortexInnovation.CoreApplication]
MainDoc = "/docs/guides/cortex-innovation/core-application/"
[Cortex.Guides.CortexInnovation.CoreApplication.Services]
MainDoc = "/docs/guides/cortex-innovation/core-application/services/"
[Cortex.Guides.CortexInnovation.CoreApplication.Services.ApiGatewayService]
MainDoc = "/docs/guides/cortex-innovation/core-application/services/api-gateway-service/"
[Cortex.Guides.CortexInnovation.CoreApplication.Services.AuthorisationService]
MainDoc = "/docs/guides/cortex-innovation/core-application/services/authorisation-service/"
[Cortex.Guides.CortexInnovation.CoreApplication.Services.ConcurrencyManagementService]
MainDoc = "/docs/guides/cortex-innovation/core-application/services/concurrency-management-service/"
[Cortex.Guides.CortexInnovation.CoreApplication.Services.ConfigurationManagementService]
MainDoc = "/docs/guides/cortex-innovation/core-application/services/configuration-management-service/"
[Cortex.Guides.CortexInnovation.CoreApplication.Services.DataStorageService]
MainDoc = "/docs/guides/cortex-innovation/core-application/services/data-storage-service/"
[Cortex.Guides.CortexInnovation.CoreApplication.Services.ExecutionManagementService]
MainDoc = "/docs/guides/cortex-innovation/core-application/services/execution-management-service/"
[Cortex.Guides.CortexInnovation.CoreApplication.Services.LicenceManagementService]
MainDoc = "/docs/guides/cortex-innovation/core-application/services/licence-management-service/"
[Cortex.Guides.CortexInnovation.CoreApplication.Services.ListenersService]
MainDoc = "/docs/guides/cortex-innovation/core-application/services/listeners-service/"
[Cortex.Guides.CortexInnovation.CoreApplication.Services.MonitoringService]
MainDoc = "/docs/guides/cortex-innovation/core-application/services/monitoring-service/"
[Cortex.Guides.CortexInnovation.CoreApplication.Services.PackageManagementService]
MainDoc = "/docs/guides/cortex-innovation/core-application/services/package-management-service/"
[Cortex.Guides.CortexInnovation.CoreApplication.Services.ProvisioningService]
MainDoc = "/docs/guides/cortex-innovation/core-application/services/provisioning-service/"
[Cortex.Guides.CortexInnovation.CoreApplication.Services.SchedulingService]
MainDoc = "/docs/guides/cortex-innovation/core-application/services/scheduling-service/"
[Cortex.Guides.CortexInnovation.CoreApplication.Services.TriggersService]
MainDoc = "/docs/guides/cortex-innovation/core-application/services/triggers-service/"
[Cortex.Guides.CortexInnovation.ExecutionApplication]
MainDoc = "/docs/guides/cortex-innovation/execution-application/"
[Cortex.Guides.CortexInnovation.ExecutionApplication.Services]
MainDoc = "/docs/guides/cortex-innovation/execution-application/services/"
[Cortex.Guides.CortexInnovation.ExecutionApplication.Services.ExecutionService]
MainDoc = "/docs/guides/cortex-innovation/execution-application/services/execution-service/"
[Cortex.Guides.Gateway]
MainDoc = "/docs/guides/cortex-gateway/"
[Cortex.Guides.Gateway.Settings]
[Cortex.Guides.Gateway.Settings.StudioAuthorisation]
MainDoc = "/docs/guides/cortex-gateway/settings/studio-authorisation"
[Cortex.Guides.Gateway.Settings.Packages]
MainDoc = "/docs/guides/cortex-gateway/settings/packages"
[Cortex.Guides.UpgradeCortex]
[Cortex.Guides.UpgradeCortex.2024_1to2024_3]
[Cortex.Guides.UpgradeCortex.2024_1to2024_3.MultipleServerWithHA]
TryItOut = "/docs/guides/upgrade-cortex/2024.1-to-2024.3/multiple-server-with-ha/try-it-out"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-cortex/2024.1-to-2024.3/multiple-server-with-ha/upgrade-application-and-loadbalancer-servers"
UpgradeDebugger = "/docs/guides/upgrade-cortex/2024.1-to-2024.3/multiple-server-with-ha/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-cortex/2024.1-to-2024.3/multiple-server-with-ha/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-cortex/2024.1-to-2024.3/multiple-server-with-ha/upgrade-web-application-server"
[Cortex.Guides.UpgradeCortex.2024_1to2024_3.SingleServerWithoutHA]
TryItOut = "/docs/guides/upgrade-cortex/2024.1-to-2024.3/single-server-without-ha/try-it-out"
UpgradeApplicationServer = "/docs/guides/upgrade-cortex/2024.1-to-2024.3/single-server-without-ha/upgrade-application-server"
UpgradeWebApplicationServer = "/docs/guides/upgrade-cortex/2024.1-to-2024.3/single-server-without-ha/upgrade-web-application-server"
[Cortex.Guides.UpgradeCortex.2024_3to2024_5]
[Cortex.Guides.UpgradeCortex.2024_3to2024_5.MultipleServerWithHA]
TryItOut = "/docs/guides/upgrade-cortex/2024.3-to-2024.5/multiple-server-with-ha/try-it-out"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-cortex/2024.3-to-2024.5/multiple-server-with-ha/upgrade-application-and-loadbalancer-servers"
UpgradeDebugger = "/docs/guides/upgrade-cortex/2024.3-to-2024.5/multiple-server-with-ha/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-cortex/2024.3-to-2024.5/multiple-server-with-ha/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-cortex/2024.3-to-2024.5/multiple-server-with-ha/upgrade-web-application-server"
[Cortex.Guides.UpgradeCortex.2024_3to2024_5.SingleServerWithoutHA]
TryItOut = "/docs/guides/upgrade-cortex/2024.3-to-2024.5/single-server-without-ha/try-it-out"
UpgradeApplicationServer = "/docs/guides/upgrade-cortex/2024.3-to-2024.5/single-server-without-ha/upgrade-application-server"
UpgradeWebApplicationServer = "/docs/guides/upgrade-cortex/2024.3-to-2024.5/single-server-without-ha/upgrade-web-application-server"
[Cortex.Guides.UpgradeCortex.2024_5to2024_7]
[Cortex.Guides.UpgradeCortex.2024_5to2024_7.MultipleServerWithHA]
TryItOut = "/docs/guides/upgrade-cortex/2024.5-to-2024.7/multiple-server-with-ha/try-it-out"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-cortex/2024.5-to-2024.7/multiple-server-with-ha/upgrade-application-and-loadbalancer-servers"
UpgradeDebugger = "/docs/guides/upgrade-cortex/2024.5-to-2024.7/multiple-server-with-ha/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-cortex/2024.5-to-2024.7/multiple-server-with-ha/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-cortex/2024.5-to-2024.7/multiple-server-with-ha/upgrade-web-application-server"
[Cortex.Guides.UpgradeCortex.2024_5to2024_7.SingleServerWithoutHA]
TryItOut = "/docs/guides/upgrade-cortex/2024.5-to-2024.7/single-server-without-ha/try-it-out"
UpgradeApplicationServer = "/docs/guides/upgrade-cortex/2024.5-to-2024.7/single-server-without-ha/upgrade-application-server"
UpgradeWebApplicationServer = "/docs/guides/upgrade-cortex/2024.5-to-2024.7/single-server-without-ha/upgrade-web-application-server"
[Cortex.Guides.UpgradeCortex.2024_7to2024_9]
[Cortex.Guides.UpgradeCortex.2024_7to2024_9.MultipleServerWithHA]
TryItOut = "/docs/guides/upgrade-cortex/2024.7-to-2024.9/multiple-server-with-ha/try-it-out"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-cortex/2024.7-to-2024.9/multiple-server-with-ha/upgrade-application-and-loadbalancer-servers"
UpgradeDebugger = "/docs/guides/upgrade-cortex/2024.7-to-2024.9/multiple-server-with-ha/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-cortex/2024.7-to-2024.9/multiple-server-with-ha/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-cortex/2024.7-to-2024.9/multiple-server-with-ha/upgrade-web-application-server"
WebApplicationServerPreqrequisites = "/docs/guides/upgrade-cortex/2024.7-to-2024.9/multiple-server-with-ha/upgrade-web-application-server/prerequisites"
[Cortex.Guides.UpgradeCortex.2024_7to2024_9.SingleServerWithoutHA]
TryItOut = "/docs/guides/upgrade-cortex/2024.7-to-2024.9/single-server-without-ha/try-it-out"
UpgradeApplicationServer = "/docs/guides/upgrade-cortex/2024.7-to-2024.9/single-server-without-ha/upgrade-application-server"
UpgradeWebApplicationServer = "/docs/guides/upgrade-cortex/2024.7-to-2024.9/single-server-without-ha/upgrade-web-application-server"
[Cortex.Guides.UpgradeCortex.Advanced]
SSLBestPractices = "/docs/guides/upgrade-cortex/advanced/ssl-best-practices"
[Cortex.Guides.UpgradeObservability]
[Cortex.Guides.UpgradeObservability.OnPremise]
[Cortex.Guides.UpgradeObservability.OnPremise.Grafana]
BackupOldFiles = "/docs/guides/upgrade-observability/on-premise/grafana/prerequisites/#backup-old-files"
MakeArtefactsAvailable = "/docs/guides/upgrade-observability/on-premise/grafana/prerequisites/#make-artefacts-available"
Prerequisites = "/docs/guides/upgrade-observability/on-premise/grafana/prerequisites"
TryItOut = "/docs/guides/upgrade-observability/on-premise/grafana/try-it-out"
UpgradeGrafana = "/docs/guides/upgrade-observability/on-premise/grafana/upgrade-grafana"
UpgradeLoki = "/docs/guides/upgrade-observability/on-premise/grafana/upgrade-loki"
UpgradePromtail = "/docs/guides/upgrade-observability/on-premise/grafana/upgrade-promtail"
VerifyOldVersion = "/docs/guides/upgrade-observability/on-premise/grafana/prerequisites/#verify-old-version"
[Cortex.Guides.UpgradeObservability.Cloud]
[Cortex.Guides.UpgradeObservability.Cloud.Grafana]
BackupOldFiles = "/docs/guides/upgrade-observability/cloud/grafana/prerequisites/#backup-old-files"
MakeArtefactsAvailable = "/docs/guides/upgrade-observability/cloud/grafana/prerequisites/#make-artefacts-available"
Prerequisites = "/docs/guides/upgrade-observability/cloud/grafana/prerequisites"
TryItOut = "/docs/guides/upgrade-observability/cloud/grafana/try-it-out"
UpgradePromtail = "/docs/guides/upgrade-observability/cloud/grafana/upgrade-promtail"
VerifyOldVersion = "/docs/guides/upgrade-observability/cloud/grafana/prerequisites/#verify-old-version"
[Cortex.Guides.UpgradeObservability.Dashboards]
[Cortex.Guides.UpgradeObservability.Dashboards.Grafana]
Download = "/docs/guides/upgrade-observability/dashboards/grafana/upgrade-dashboards/#download-the-default-dashboards"
TryItOut = "/docs/guides/upgrade-observability/dashboards/grafana/try-it-out"
[Cortex.Guides.DisasterRecoveryGuides]
[Cortex.Guides.DisasterRecoveryGuides.MultipleServerWithHA]
[Cortex.Guides.DisasterRecoveryGuides.MultipleServerWithHA.Backup]
AddBackupOfEncryptionKey = "/docs/guides/disaster-recovery/multiple-server-with-ha/backup/add-backup-of-encryption-key"
AddBackupToApplicationServer = "/docs/guides/disaster-recovery/multiple-server-with-ha/backup/add-backup-to-application"
AddBackupsToWebApplicationServer = "/docs/guides/disaster-recovery/multiple-server-with-ha/backup/web-application-server"
AddBackupToFlowDebugger = "/docs/guides/disaster-recovery/multiple-server-with-ha/backup/web-application-server/add-backup-to-flow-debugger"
AddBackupToGateway = "/docs/guides/disaster-recovery/multiple-server-with-ha/backup/web-application-server/add-backup-to-gateway"
[Cortex.Guides.DisasterRecoveryGuides.MultipleServerWithHA.Recovery]
RecoveryEncryptionKeyFromBackup = "/docs/guides/disaster-recovery/multiple-server-with-ha/recovery/recover-encryption-key-from-backup"
RecoverApplicationServerFromBackup = "/docs/guides/disaster-recovery/multiple-server-with-ha/recovery/recover-application-from-backup"
RecoverWebApplicationServerFromBackups = "/docs/guides/disaster-recovery/multiple-server-with-ha/recovery/web-application-server"
RecoverGatewayFromBackup = "/docs/guides/disaster-recovery/multiple-server-with-ha/recovery/web-application-server/recover-gateway-from-backup"
[Cortex.Guides.DisasterRecoveryGuides.MultipleServerWithHA.Remove]
RemoveBackupsFromWebApplicationServer = "/docs/guides/disaster-recovery/multiple-server-with-ha/remove/web-application-server"
RemoveBackupFromGateway = "/docs/guides/disaster-recovery/multiple-server-with-ha/remove/web-application-server/remove-backup-from-gateway"
[Cortex.Guides.DisasterRecoveryGuides.SingleServerWithoutHA]
[Cortex.Guides.DisasterRecoveryGuides.SingleServerWithoutHA.Backup]
AddBackupOfEncryptionKey = "/docs/guides/disaster-recovery/single-server-without-ha/backup/add-backup-of-encryption-key"
AddBackupToApplicationServer = "/docs/guides/disaster-recovery/single-server-without-ha/backup/add-backup-to-application"
AddBackupToWebApplicationServer = "/docs/guides/disaster-recovery/single-server-without-ha/backup/add-backup-to-web-application"
[Cortex.Guides.DisasterRecoveryGuides.SingleServerWithoutHA.Recovery]
RecoveryEncryptionKeyFromBackup = "/docs/guides/disaster-recovery/single-server-without-ha/recovery/recover-encryption-key-from-backup"
RecoverApplicationServerFromBackup = "/docs/guides/disaster-recovery/single-server-without-ha/recovery/recover-application-from-backup"
RecoverWebApplicationServerFromBackup = "/docs/guides/disaster-recovery/single-server-without-ha/recovery/recover-web-application-from-backup"
[Cortex.Guides.DisasterRecoveryGuides.SingleServerWithoutHA.Remove]
RemoveBackupFromWebApplicationServer = "/docs/guides/disaster-recovery/single-server-without-ha/remove/remove-backup-from-web-application"
[Cortex.Guides.UpgradeGuides]
[Cortex.Guides.UpgradeGuides.UpgradeCortex]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_9_25161to2025_3]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_9_25161to2025_3.MultipleServerWithHA]
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9.25161-to-2025.3/multiple-server-with-ha/pre-upgrade"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9.25161-to-2025.3/multiple-server-with-ha/try-it-out"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9.25161-to-2025.3/multiple-server-with-ha/upgrade"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9.25161-to-2025.3/multiple-server-with-ha/upgrade/upgrade-application-and-loadbalancer-servers"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9.25161-to-2025.3/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9.25161-to-2025.3/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9.25161-to-2025.3/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9.25161-to-2025.3/multiple-server-with-ha/upgrade/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_9_25161to2025_3.SingleServerWithoutHA]
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9.25161-to-2025.3/single-server-without-ha/pre-upgrade"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9.25161-to-2025.3/single-server-without-ha/try-it-out"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9.25161-to-2025.3/single-server-without-ha/upgrade"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9.25161-to-2025.3/single-server-without-ha/upgrade/upgrade-application-server"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9.25161-to-2025.3/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9.25161-to-2025.3/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9.25161-to-2025.3/single-server-without-ha/upgrade/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_1to2024_3]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_1to2024_3.MultipleServerWithHA]
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2024.1-to-2024.3/multiple-server-with-ha/try-it-out"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2024.1-to-2024.3/multiple-server-with-ha/upgrade-application-and-loadbalancer-servers"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2024.1-to-2024.3/multiple-server-with-ha/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2024.1-to-2024.3/multiple-server-with-ha/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.1-to-2024.3/multiple-server-with-ha/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_1to2024_3.SingleServerWithoutHA]
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2024.1-to-2024.3/single-server-without-ha/try-it-out"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.1-to-2024.3/single-server-without-ha/upgrade-application-server"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.1-to-2024.3/single-server-without-ha/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_3to2024_5]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_3to2024_5.MultipleServerWithHA]
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2024.3-to-2024.5/multiple-server-with-ha/try-it-out"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2024.3-to-2024.5/multiple-server-with-ha/upgrade-application-and-loadbalancer-servers"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2024.3-to-2024.5/multiple-server-with-ha/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2024.3-to-2024.5/multiple-server-with-ha/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.3-to-2024.5/multiple-server-with-ha/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_3to2024_5.SingleServerWithoutHA]
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2024.3-to-2024.5/single-server-without-ha/try-it-out"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.3-to-2024.5/single-server-without-ha/upgrade-application-server"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.3-to-2024.5/single-server-without-ha/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_5to2024_7]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_5to2024_7.MultipleServerWithHA]
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2024.5-to-2024.7/multiple-server-with-ha/try-it-out"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2024.5-to-2024.7/multiple-server-with-ha/upgrade-application-and-loadbalancer-servers"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2024.5-to-2024.7/multiple-server-with-ha/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2024.5-to-2024.7/multiple-server-with-ha/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.5-to-2024.7/multiple-server-with-ha/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_5to2024_7.SingleServerWithoutHA]
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2024.5-to-2024.7/single-server-without-ha/try-it-out"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.5-to-2024.7/single-server-without-ha/upgrade-application-server"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.5-to-2024.7/single-server-without-ha/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_7to2024_9]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_7to2024_9.MultipleServerWithHA]
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2024.7-to-2024.9/multiple-server-with-ha/try-it-out"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2024.7-to-2024.9/multiple-server-with-ha/upgrade-application-and-loadbalancer-servers"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2024.7-to-2024.9/multiple-server-with-ha/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2024.7-to-2024.9/multiple-server-with-ha/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.7-to-2024.9/multiple-server-with-ha/upgrade-web-application-server"
WebApplicationServerPreqrequisites = "/docs/guides/upgrade-guides/upgrade-cortex/2024.7-to-2024.9/multiple-server-with-ha/upgrade-web-application-server/prerequisites"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_7to2024_9.SingleServerWithoutHA]
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2024.7-to-2024.9/single-server-without-ha/try-it-out"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.7-to-2024.9/single-server-without-ha/upgrade-application-server"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.7-to-2024.9/single-server-without-ha/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_9to2024_11]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_9to2024_11.MultipleServerWithHA]
Prerequisites = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9-to-2024.11/multiple-server-with-ha/prerequisites"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9-to-2024.11/multiple-server-with-ha/try-it-out"
RetrieveAppServerEncryptionKey = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9-to-2024.11/multiple-server-with-ha/prerequisites/#retrieve-existing-encryption-key"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9-to-2024.11/multiple-server-with-ha/upgrade-application-and-loadbalancer-servers"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9-to-2024.11/multiple-server-with-ha/upgrade-web-application-server/upgrade-cip"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9-to-2024.11/multiple-server-with-ha/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9-to-2024.11/multiple-server-with-ha/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9-to-2024.11/multiple-server-with-ha/upgrade-web-application-server"
WebApplicationServerPreqrequisites = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9-to-2024.11/multiple-server-with-ha/upgrade-web-application-server/prerequisites"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_9to2024_11.SingleServerWithoutHA]
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9-to-2024.11/single-server-without-ha/try-it-out"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9-to-2024.11/single-server-without-ha/upgrade-application-server"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.9-to-2024.11/single-server-without-ha/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_11to2025_1]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_11to2025_1.MultipleServerWithHA]
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2024.11-to-2025.1/multiple-server-with-ha/pre-upgrade"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2024.11-to-2025.1/multiple-server-with-ha/try-it-out"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2024.11-to-2025.1/multiple-server-with-ha/upgrade"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2024.11-to-2025.1/multiple-server-with-ha/upgrade/upgrade-application-and-loadbalancer-servers"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2024.11-to-2025.1/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2024.11-to-2025.1/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.11-to-2025.1/multiple-server-with-ha/upgrade/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_11to2025_1.SingleServerWithoutHA]
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2024.11-to-2025.1/single-server-without-ha/pre-upgrade"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2024.11-to-2025.1/single-server-without-ha/try-it-out"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2024.11-to-2025.1/single-server-without-ha/upgrade"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.11-to-2025.1/single-server-without-ha/upgrade/upgrade-application-server"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2024.11-to-2025.1/single-server-without-ha/upgrade/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_3_25411to2025_3_26111]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_3_25411to2025_3_26111.MultipleServerWithHA]
MainDoc = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/multiple-server-with-ha/"
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/multiple-server-with-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/multiple-server-with-ha/pre-upgrade"
RepublishPackages = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/multiple-server-with-ha/post-upgrade/move-flows-to-new-execution-service#republish-packages"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/multiple-server-with-ha/post-upgrade/try-it-out/"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/multiple-server-with-ha/upgrade"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/multiple-server-with-ha/upgrade/upgrade-application-and-loadbalancer-servers"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/multiple-server-with-ha/upgrade/upgrade-web-application-server"
UseNewExecutionService = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/multiple-server-with-ha/post-upgrade/move-flows-to-new-execution-service"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_3_25411to2025_3_26111.SingleServerWithoutHA]
MainDoc = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/single-server-without-ha/"
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/single-server-without-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/single-server-without-ha/pre-upgrade"
RepublishPackages = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/single-server-without-ha/post-upgrade/move-flows-to-new-execution-service#republish-packages"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/single-server-without-ha/post-upgrade/try-it-out/"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/single-server-without-ha/upgrade"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/single-server-without-ha/upgrade/upgrade-application-server"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/single-server-without-ha/upgrade/upgrade-web-application-server"
UseNewExecutionService = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.3.26111/single-server-without-ha/post-upgrade/move-flows-to-new-execution-service"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_3_25411to2025_9]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_3_25411to2025_9.MultipleServerWithHA]
MainDoc = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/multiple-server-with-ha/"
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/multiple-server-with-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/multiple-server-with-ha/pre-upgrade"
RepublishPackages = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/multiple-server-with-ha/post-upgrade/move-flows-to-new-execution-service#republish-packages"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/multiple-server-with-ha/post-upgrade/try-it-out/"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/multiple-server-with-ha/upgrade"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/multiple-server-with-ha/upgrade/upgrade-application-and-loadbalancer-servers"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/multiple-server-with-ha/upgrade/upgrade-web-application-server"
UseNewExecutionService = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/multiple-server-with-ha/post-upgrade/move-flows-to-new-execution-service"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_3_25411to2025_9.SingleServerWithoutHA]
MainDoc = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/single-server-without-ha/"
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/single-server-without-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/single-server-without-ha/pre-upgrade"
RepublishPackages = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/single-server-without-ha/post-upgrade/move-flows-to-new-execution-service#republish-packages"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/single-server-without-ha/post-upgrade/try-it-out/"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/single-server-without-ha/upgrade"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/single-server-without-ha/upgrade/upgrade-application-server"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/single-server-without-ha/upgrade/upgrade-web-application-server"
UseNewExecutionService = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.25411-to-2025.9/single-server-without-ha/post-upgrade/move-flows-to-new-execution-service"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_3_26111to2025_9_26161]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_3_26111to2025_9_26161.MultipleServerWithHA]
MainDoc = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/multiple-server-with-ha/"
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/multiple-server-with-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/multiple-server-with-ha/pre-upgrade"
RepublishPackages = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/multiple-server-with-ha/post-upgrade/move-flows-to-new-execution-service#republish-packages"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/multiple-server-with-ha/post-upgrade/try-it-out/"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/multiple-server-with-ha/upgrade"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/multiple-server-with-ha/upgrade/upgrade-application-and-loadbalancer-servers"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeCCP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-ccp"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/multiple-server-with-ha/upgrade/upgrade-web-application-server"
UseNewExecutionService = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/multiple-server-with-ha/post-upgrade/move-flows-to-new-execution-service"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_3_26111to2025_9_26161.SingleServerWithoutHA]
MainDoc = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/single-server-without-ha/"
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/single-server-without-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/single-server-without-ha/pre-upgrade"
RepublishPackages = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/single-server-without-ha/post-upgrade/move-flows-to-new-execution-service#republish-packages"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/single-server-without-ha/post-upgrade/try-it-out/"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/single-server-without-ha/upgrade"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/single-server-without-ha/upgrade/upgrade-application-server"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeCCP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-ccp"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/single-server-without-ha/upgrade/upgrade-web-application-server"
UseNewExecutionService = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2025.9.26161/single-server-without-ha/post-upgrade/move-flows-to-new-execution-service"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_3_26111to2026_3]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_3_26111to2026_3.MultipleServerWithHA]
MainDoc = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/multiple-server-with-ha/"
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/multiple-server-with-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/multiple-server-with-ha/pre-upgrade"
RepublishPackages = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/multiple-server-with-ha/post-upgrade/move-flows-to-new-execution-service#republish-packages"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/multiple-server-with-ha/post-upgrade/try-it-out/"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/multiple-server-with-ha/upgrade"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/multiple-server-with-ha/upgrade/upgrade-application-and-loadbalancer-servers"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/multiple-server-with-ha/upgrade/upgrade-web-application-server"
UseNewExecutionService = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/multiple-server-with-ha/post-upgrade/move-flows-to-new-execution-service"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_3_26111to2026_3.SingleServerWithoutHA]
MainDoc = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/single-server-without-ha/"
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/single-server-without-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/single-server-without-ha/pre-upgrade"
RepublishPackages = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/single-server-without-ha/post-upgrade/move-flows-to-new-execution-service#republish-packages"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/single-server-without-ha/post-upgrade/try-it-out/"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/single-server-without-ha/upgrade"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/single-server-without-ha/upgrade/upgrade-application-server"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/single-server-without-ha/upgrade/upgrade-web-application-server"
UseNewExecutionService = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3.26111-to-2026.3/single-server-without-ha/post-upgrade/move-flows-to-new-execution-service"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_1to2025_3]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_1to2025_3.MultipleServerWithHA]
MainDoc = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/multiple-server-with-ha/"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/multiple-server-with-ha/pre-upgrade"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/multiple-server-with-ha/try-it-out"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/multiple-server-with-ha/upgrade"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/multiple-server-with-ha/upgrade/upgrade-application-and-loadbalancer-servers"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/multiple-server-with-ha/upgrade/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_1to2025_3.SingleServerWithoutHA]
MainDoc = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/single-server-without-ha/"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/single-server-without-ha/pre-upgrade"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/single-server-without-ha/try-it-out"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/single-server-without-ha/upgrade"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/single-server-without-ha/upgrade/upgrade-application-server"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.1-to-2025.3/single-server-without-ha/upgrade/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_3to2025_5]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_3to2025_5.MultipleServerWithHA]
ConfigureCodeAnalyser = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/multiple-server-with-ha/post-upgrade/configure-code-analyser"
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/multiple-server-with-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/multiple-server-with-ha/pre-upgrade"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/multiple-server-with-ha/upgrade"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/multiple-server-with-ha/upgrade/upgrade-application-and-loadbalancer-servers"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/multiple-server-with-ha/upgrade/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_3to2025_5.SingleServerWithoutHA]
ConfigureCodeAnalyser = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/single-server-without-ha/post-upgrade/configure-code-analyser"
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/single-server-without-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/single-server-without-ha/pre-upgrade"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/single-server-without-ha/upgrade"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/single-server-without-ha/upgrade/upgrade-application-server"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.3-to-2025.5/single-server-without-ha/upgrade/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_5to2025_7]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_5to2025_7.MultipleServerWithHA]
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/multiple-server-with-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/multiple-server-with-ha/pre-upgrade"
RepublishPackages = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-gateway/#republish-packages"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/multiple-server-with-ha/upgrade"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/multiple-server-with-ha/upgrade/upgrade-application-and-loadbalancer-servers"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/multiple-server-with-ha/upgrade/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_5to2025_7.SingleServerWithoutHA]
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/single-server-without-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/single-server-without-ha/pre-upgrade"
RepublishPackages = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-gateway/#republish-packages"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/single-server-without-ha/upgrade"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/single-server-without-ha/upgrade/upgrade-application-server"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.5-to-2025.7/single-server-without-ha/upgrade/upgrade-web-application-server"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_7to2025_9]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_7to2025_9.MultipleServerWithHA]
MainDoc = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/multiple-server-with-ha/"
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/multiple-server-with-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/multiple-server-with-ha/pre-upgrade"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/multiple-server-with-ha/post-upgrade/try-it-out/"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/multiple-server-with-ha/upgrade"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/multiple-server-with-ha/upgrade/upgrade-application-and-loadbalancer-servers"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/multiple-server-with-ha/upgrade/upgrade-web-application-server"
UseNewExecutionService = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/multiple-server-with-ha/post-upgrade/move-flows-to-new-execution-service"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_7to2025_9.SingleServerWithoutHA]
MainDoc = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/single-server-without-ha/"
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/single-server-without-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/single-server-without-ha/pre-upgrade"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/single-server-without-ha/post-upgrade/try-it-out/"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/single-server-without-ha/upgrade"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/single-server-without-ha/upgrade/upgrade-application-server"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/single-server-without-ha/upgrade/upgrade-web-application-server"
UseNewExecutionService = "/docs/guides/upgrade-guides/upgrade-cortex/2025.7-to-2025.9/single-server-without-ha/post-upgrade/move-flows-to-new-execution-service"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_9to2025_9_26161]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_9to2025_9_26161.MultipleServerWithHA]
MainDoc = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/multiple-server-with-ha/"
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/multiple-server-with-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/multiple-server-with-ha/pre-upgrade"
RepublishPackages = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/multiple-server-with-ha/post-upgrade/move-flows-to-new-execution-service#republish-packages"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/multiple-server-with-ha/post-upgrade/try-it-out/"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/multiple-server-with-ha/upgrade"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/multiple-server-with-ha/upgrade/upgrade-application-and-loadbalancer-servers"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeCCP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-ccp"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/multiple-server-with-ha/upgrade/upgrade-web-application-server"
UseNewExecutionService = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/multiple-server-with-ha/post-upgrade/move-flows-to-new-execution-service"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_9to2025_9_26161.SingleServerWithoutHA]
MainDoc = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/single-server-without-ha/"
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/single-server-without-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/single-server-without-ha/pre-upgrade"
RepublishPackages = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/single-server-without-ha/post-upgrade/move-flows-to-new-execution-service#republish-packages"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/single-server-without-ha/post-upgrade/try-it-out/"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/single-server-without-ha/upgrade"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/single-server-without-ha/upgrade/upgrade-application-server"
UpgradeCIP = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-cip"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/single-server-without-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/single-server-without-ha/upgrade/upgrade-web-application-server"
UseNewExecutionService = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9-to-2025.9.26161/single-server-without-ha/post-upgrade/move-flows-to-new-execution-service"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_9_26161to2026_3]
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_9_26161to2026_3.MultipleServerWithHA]
MainDoc = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/multiple-server-with-ha/"
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/multiple-server-with-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/multiple-server-with-ha/pre-upgrade"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/multiple-server-with-ha/post-upgrade/try-it-out/"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/multiple-server-with-ha/upgrade"
UpgradeApplicationAndLoadBalancerServers = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/multiple-server-with-ha/upgrade/upgrade-application-and-loadbalancer-servers"
UpgradeDebugger = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-debugger"
UpgradeGateway = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/multiple-server-with-ha/upgrade/upgrade-web-application-server/upgrade-gateway"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/multiple-server-with-ha/upgrade/upgrade-web-application-server"
UseNewExecutionService = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/multiple-server-with-ha/post-upgrade/move-flows-to-new-execution-service"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.2025_9_26161to2026_3.SingleServerWithoutHA]
MainDoc = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/single-server-without-ha/"
PostUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/single-server-without-ha/post-upgrade"
PreUpgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/single-server-without-ha/pre-upgrade"
TryItOut = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/single-server-without-ha/post-upgrade/try-it-out/"
Upgrade = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/single-server-without-ha/upgrade"
UpgradeApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/single-server-without-ha/upgrade/upgrade-application-server"
UpgradeWebApplicationServer = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/single-server-without-ha/upgrade/upgrade-web-application-server"
UseNewExecutionService = "/docs/guides/upgrade-guides/upgrade-cortex/2025.9.26161-to-2026.3/single-server-without-ha/post-upgrade/move-flows-to-new-execution-service"
[Cortex.Guides.UpgradeGuides.UpgradeCortex.Advanced]
SSLBestPractices = "/docs/guides/upgrade-guides/upgrade-cortex/advanced/ssl-best-practices"
[Cortex.Guides.UpgradeGuides.UpgradeObservability]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.2_2_0to3_0_0]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.2_2_0to3_0_0.OnPremise]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.2_2_0to3_0_0.OnPremise.Grafana]
BackupOldFiles = "/docs/guides/upgrade-guides/upgrade-observability/2.2.0-to-3.0.0/on-premise/grafana/prerequisites/#backup-old-files"
MakeArtefactsAvailable = "/docs/guides/upgrade-guides/upgrade-observability/2.2.0-to-3.0.0/on-premise/grafana/prerequisites/#make-artefacts-available"
Prerequisites = "/docs/guides/upgrade-guides/upgrade-observability/2.2.0-to-3.0.0/on-premise/grafana/prerequisites"
TryItOut = "/docs/guides/upgrade-guides/upgrade-observability/2.2.0-to-3.0.0/on-premise/grafana/try-it-out"
UpgradeGrafana = "/docs/guides/upgrade-guides/upgrade-observability/2.2.0-to-3.0.0/on-premise/grafana/upgrade-grafana"
UpgradeLoki = "/docs/guides/upgrade-guides/upgrade-observability/2.2.0-to-3.0.0/on-premise/grafana/upgrade-loki"
UpgradePromtail = "/docs/guides/upgrade-guides/upgrade-observability/2.2.0-to-3.0.0/on-premise/grafana/upgrade-promtail"
VerifyOldVersion = "/docs/guides/upgrade-guides/upgrade-observability/2.2.0-to-3.0.0/on-premise/grafana/prerequisites/#verify-old-version"
[Cortex.Guides.UpgradeGuides.UpgradeObservability.2_2_0to3_0_0.Cloud]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.2_2_0to3_0_0.Cloud.Grafana]
BackupOldFiles = "/docs/guides/upgrade-guides/upgrade-observability/2.2.0-to-3.0.0/cloud/grafana/prerequisites/#backup-old-files"
MakeArtefactsAvailable = "/docs/guides/upgrade-guides/upgrade-observability/2.2.0-to-3.0.0/cloud/grafana/prerequisites/#make-artefacts-available"
Prerequisites = "/docs/guides/upgrade-guides/upgrade-observability/2.2.0-to-3.0.0/cloud/grafana/prerequisites"
TryItOut = "/docs/guides/upgrade-guides/upgrade-observability/2.2.0-to-3.0.0/cloud/grafana/try-it-out"
UpgradePromtail = "/docs/guides/upgrade-guides/upgrade-observability/2.2.0-to-3.0.0/cloud/grafana/upgrade-promtail"
VerifyOldVersion = "/docs/guides/upgrade-guides/upgrade-observability/2.2.0-to-3.0.0/cloud/grafana/prerequisites/#verify-old-version"
[Cortex.Guides.UpgradeGuides.UpgradeObservability.2_2_0to3_0_0.Dashboards]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.2_2_0to3_0_0.Dashboards.Grafana]
Download = "/docs/guides/upgrade-guides/upgrade-observability/2.2.0-to-3.0.0/dashboards/grafana/upgrade-dashboards/#download-the-default-dashboards"
TryItOut = "/docs/guides/upgrade-guides/upgrade-observability/2.2.0-to-3.0.0/dashboards/grafana/try-it-out"
[Cortex.Guides.UpgradeGuides.UpgradeObservability.3_0_0to4_0_0]
MainDoc = "/docs/guides/upgrade-guides/upgrade-observability/3.0.0-to-4.0.0/"
[Cortex.Guides.UpgradeGuides.UpgradeObservability.3_0_0to4_0_0.OnPremise]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.3_0_0to4_0_0.OnPremise.Grafana]
MainDoc = "/docs/guides/upgrade-guides/upgrade-observability/3.0.0-to-4.0.0/on-premise/grafana"
BackupOldFiles = "/docs/guides/upgrade-guides/upgrade-observability/3.0.0-to-4.0.0/on-premise/grafana/prerequisites/#backup-old-files"
SetupAuthentication = "/docs/guides/upgrade-guides/upgrade-observability/3.0.0-to-4.0.0/on-premise/grafana/upgrade-loki/#set-up-authentication"
MakeArtefactsAvailable = "/docs/guides/upgrade-guides/upgrade-observability/3.0.0-to-4.0.0/on-premise/grafana/prerequisites/#make-artefacts-available"
Prerequisites = "/docs/guides/upgrade-guides/upgrade-observability/3.0.0-to-4.0.0/on-premise/grafana/prerequisites"
TryItOut = "/docs/guides/upgrade-guides/upgrade-observability/3.0.0-to-4.0.0/on-premise/grafana/try-it-out"
UpgradeGrafana = "/docs/guides/upgrade-guides/upgrade-observability/3.0.0-to-4.0.0/on-premise/grafana/upgrade-grafana"
UpgradeLoki = "/docs/guides/upgrade-guides/upgrade-observability/3.0.0-to-4.0.0/on-premise/grafana/upgrade-loki"
MigrateToAlloy = "/docs/guides/upgrade-guides/upgrade-observability/3.0.0-to-4.0.0/on-premise/grafana/migrate-to-alloy"
VerifyOldVersion = "/docs/guides/upgrade-guides/upgrade-observability/3.0.0-to-4.0.0/on-premise/grafana/prerequisites/#verify-old-version"
[Cortex.Guides.UpgradeGuides.UpgradeObservability.3_0_0to4_0_0.Cloud]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.3_0_0to4_0_0.Cloud.Grafana]
MainDoc = "/docs/guides/upgrade-guides/upgrade-observability/3.0.0-to-4.0.0/cloud/grafana"
MakeArtefactsAvailable = "/docs/guides/upgrade-guides/upgrade-observability/3.0.0-to-4.0.0/cloud/grafana/prerequisites/#make-artefacts-available"
MigrateToAlloy = "/docs/guides/upgrade-guides/upgrade-observability/3.0.0-to-4.0.0/cloud/grafana/migrate-to-alloy"
TryItOut = "/docs/guides/upgrade-guides/upgrade-observability/3.0.0-to-4.0.0/cloud/grafana/try-it-out"
[Cortex.Guides.UpgradeGuides.UpgradeObservability.4_0_0to4_1_0]
MainDoc = "/docs/guides/upgrade-guides/upgrade-observability/4.0.0-to-4.1.0/"
[Cortex.Guides.UpgradeGuides.UpgradeObservability.4_0_0to4_1_0.OnPremise]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.4_0_0to4_1_0.OnPremise.Grafana]
BackupOldFiles = "/docs/guides/upgrade-guides/upgrade-observability/4.0.0-to-4.1.0/on-premise/grafana/prerequisites/#backup-old-files"
Prerequisites = "/docs/guides/upgrade-guides/upgrade-observability/4.0.0-to-4.1.0/on-premise/grafana/prerequisites"
TryItOut = "/docs/guides/upgrade-guides/upgrade-observability/4.0.0-to-4.1.0/on-premise/grafana/try-it-out"
UpgradeAlloy = "/docs/guides/upgrade-guides/upgrade-observability/4.0.0-to-4.1.0/on-premise/grafana/upgrade-alloy"
[Cortex.Guides.UpgradeGuides.UpgradeObservability.4_0_0to4_1_0.Cloud]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.4_0_0to4_1_0.Cloud.Grafana]
Prerequisites = "/docs/guides/upgrade-guides/upgrade-observability/4.0.0-to-4.1.0/cloud/grafana/prerequisites"
TryItOut = "/docs/guides/upgrade-guides/upgrade-observability/4.0.0-to-4.1.0/cloud/grafana/try-it-out"
UpgradeAlloy = "/docs/guides/upgrade-guides/upgrade-observability/4.0.0-to-4.1.0/cloud/grafana/upgrade-alloy"
[Cortex.Guides.UpgradeGuides.UpgradeObservability.4_1_0to4_2_1]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.4_1_0to4_2_1.OnPremise]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.4_1_0to4_2_1.OnPremise.Grafana]
Prerequisites = "/docs/guides/upgrade-guides/upgrade-observability/4.1.0-to-4.2.1/on-premise/grafana/prerequisites"
TryItOut = "/docs/guides/upgrade-guides/upgrade-observability/4.1.0-to-4.2.1/on-premise/grafana/try-it-out"
UpgradeLoki = "/docs/guides/upgrade-guides/upgrade-observability/4.1.0-to-4.2.1/on-premise/grafana/upgrade-loki"
[Cortex.Guides.UpgradeGuides.UpgradeObservability.4_2_1to5_0_0]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.4_2_1to5_0_0.OnPremise]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.4_2_1to5_0_0.OnPremise.Grafana]
MakeArtefactsAvailable = "/docs/guides/upgrade-guides/upgrade-observability/4.2.1-to-5.0.0/on-premise/grafana/prerequisites/#make-artefacts-available"
Prerequisites = "/docs/guides/upgrade-guides/upgrade-observability/4.2.1-to-5.0.0/on-premise/grafana/prerequisites"
TryItOut = "/docs/guides/upgrade-guides/upgrade-observability/4.2.1-to-5.0.0/on-premise/grafana/try-it-out"
UpgradeGrafana = "/docs/guides/upgrade-guides/upgrade-observability/4.2.1-to-5.0.0/on-premise/grafana/upgrade-grafana"
UpgradeLoki = "/docs/guides/upgrade-guides/upgrade-observability/4.2.1-to-5.0.0/on-premise/grafana/upgrade-loki"
UpgradeAlloy = "/docs/guides/upgrade-guides/upgrade-observability/4.2.1-to-5.0.0/on-premise/grafana/upgrade-alloy"
UpgradeDashboards = "/docs/guides/upgrade-guides/upgrade-observability/4.2.1-to-5.0.0/on-premise/grafana/upgrade-dashboards"
VerifyOldVersion = "/docs/guides/upgrade-guides/upgrade-observability/4.2.1-to-5.0.0/on-premise/grafana/prerequisites/#verify-old-version"
[Cortex.Guides.UpgradeGuides.UpgradeObservability.4_2_1to5_0_0.Cloud]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.4_2_1to5_0_0.Cloud.Grafana]
MakeArtefactsAvailable = "/docs/guides/upgrade-guides/upgrade-observability/4.2.1-to-5.0.0/cloud/grafana/prerequisites/#make-artefacts-available"
UpgradeAlloy = "/docs/guides/upgrade-guides/upgrade-observability/4.2.1-to-5.0.0/cloud/grafana/upgrade-alloy"
UpgradeDashboards = "/docs/guides/upgrade-guides/upgrade-observability/4.2.1-to-5.0.0/cloud/grafana/upgrade-dashboards"
TryItOut = "/docs/guides/upgrade-guides/upgrade-observability/4.2.1-to-5.0.0/cloud/grafana/try-it-out"
[Cortex.Guides.UpgradeGuides.UpgradeObservability.OnPremise]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.OnPremise.Grafana]
BackupOldFiles = "/docs/guides/upgrade-guides/upgrade-observability/on-premise/grafana/prerequisites/#backup-old-files"
MakeArtefactsAvailable = "/docs/guides/upgrade-guides/upgrade-observability/on-premise/grafana/prerequisites/#make-artefacts-available"
Prerequisites = "/docs/guides/upgrade-guides/upgrade-observability/on-premise/grafana/prerequisites"
TryItOut = "/docs/guides/upgrade-guides/upgrade-observability/on-premise/grafana/try-it-out"
UpgradeGrafana = "/docs/guides/upgrade-guides/upgrade-observability/on-premise/grafana/upgrade-grafana"
UpgradeLoki = "/docs/guides/upgrade-guides/upgrade-observability/on-premise/grafana/upgrade-loki"
UpgradePromtail = "/docs/guides/upgrade-guides/upgrade-observability/on-premise/grafana/upgrade-promtail"
VerifyOldVersion = "/docs/guides/upgrade-guides/upgrade-observability/on-premise/grafana/prerequisites/#verify-old-version"
[Cortex.Guides.UpgradeGuides.UpgradeObservability.Cloud]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.Cloud.Grafana]
BackupOldFiles = "/docs/guides/upgrade-guides/upgrade-observability/cloud/grafana/prerequisites/#backup-old-files"
MakeArtefactsAvailable = "/docs/guides/upgrade-guides/upgrade-observability/cloud/grafana/prerequisites/#make-artefacts-available"
Prerequisites = "/docs/guides/upgrade-guides/upgrade-observability/cloud/grafana/prerequisites"
TryItOut = "/docs/guides/upgrade-guides/upgrade-observability/cloud/grafana/try-it-out"
UpgradePromtail = "/docs/guides/upgrade-guides/upgrade-observability/cloud/grafana/upgrade-promtail"
VerifyOldVersion = "/docs/guides/upgrade-guides/upgrade-observability/cloud/grafana/prerequisites/#verify-old-version"
[Cortex.Guides.UpgradeGuides.UpgradeObservability.Dashboards]
[Cortex.Guides.UpgradeGuides.UpgradeObservability.Dashboards.Grafana]
Download = "/docs/guides/upgrade-guides/upgrade-observability/dashboards/grafana/upgrade-dashboards/#download-the-default-dashboards"
TryItOut = "/docs/guides/upgrade-guides/upgrade-observability/dashboards/grafana/try-it-out"
[Cortex.Guides.UserGuides]
[Cortex.Guides.UserGuides.UserInterfaces]