├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── codeql │ └── codeql-config.yml └── workflows │ ├── build.yml │ └── codeql-analysis.yml ├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── SECURITY.md ├── ThirdPartyNotices.txt ├── sfx.code-workspace └── src ├── Sfx-Proxy ├── .gitignore ├── appsettings.json ├── package-lock.json ├── package.json └── proxy.js └── SfxWeb ├── .browserslistrc ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .vscode └── launch.json ├── README.md ├── angular.json ├── combined.js ├── cypress.config.ts ├── cypress ├── coverage.webpack.js ├── e2e │ ├── app.cy.js │ ├── appType.cy.js │ ├── apps.cy.js │ ├── cluster.cy.js │ ├── deployedApplication.cy.js │ ├── deployedCodePackages.cy.js │ ├── deployedReplica.cy.js │ ├── deployedService.cy.js │ ├── header.cy.js │ ├── network.cy.js │ ├── node.cy.js │ ├── nodes.cy.js │ ├── partition.cy.js │ ├── replica.cy.js │ ├── service.cy.js │ ├── sharedComponent.cy.js │ ├── tree.cy.js │ └── util.cy.js ├── fixtures │ ├── aad.json │ ├── app-page │ │ ├── app-arm-managed.json │ │ ├── app-events.json │ │ ├── app-health.json │ │ ├── app-manifest.json │ │ ├── app-type-excluded-params.json │ │ ├── app-type-upgrading.json │ │ ├── app-type.json │ │ ├── events.json │ │ ├── manifest.json │ │ ├── service-types.json │ │ ├── services-arm-managed.json │ │ ├── services-with-disabled.json │ │ ├── services.json │ │ ├── upgrade-in-progress.json │ │ └── upgrade-progress.json │ ├── appType.json │ ├── applications.json │ ├── apps-page │ │ ├── upgrading-app.json │ │ └── upgrading-apps.json │ ├── backup-restore │ │ └── backup-policy.json │ ├── cluster-page │ │ ├── clustermap │ │ │ └── nodes.json │ │ ├── eventstore │ │ │ └── cluster-events.json │ │ ├── imagestore │ │ │ ├── base-directory.json │ │ │ ├── load-size.json │ │ │ └── nested-directory.json │ │ ├── infra │ │ │ └── systemServicesWithInfra.json │ │ ├── naming │ │ │ ├── naming-partition-1000.json │ │ │ └── naming-partitions.json │ │ ├── node-health.json │ │ ├── nodes-1-warning.json │ │ ├── orchestration-view │ │ │ └── partition-operation-events.json │ │ ├── repair-jobs │ │ │ ├── in-progress.json │ │ │ ├── long-running-approval.json │ │ │ ├── simple.json │ │ │ └── stuck-in-health-check.json │ │ └── upgrade │ │ │ ├── failed-upgrade.json │ │ │ ├── get-application-info.json │ │ │ ├── get-load-information.json │ │ │ ├── get-partition-info.json │ │ │ ├── get-service-name.json │ │ │ ├── health-checks │ │ │ ├── retry-duration.json │ │ │ ├── stable-duration.json │ │ │ └── wait-duration.json │ │ │ ├── in-progress.json │ │ │ ├── manual-mode-upgrade.json │ │ │ ├── upgrade-in-progress-many-safety-checks.json │ │ │ └── upgrade-in-progress-node-by-node.json │ ├── clusterHealth.json │ ├── clusterHealthChunk.json │ ├── clusterManifest.json │ ├── deployed-app-page │ │ ├── deployed-app-info.json │ │ ├── deployed-apps.json │ │ ├── health.json │ │ └── service-packages.json │ ├── deployed-code-package │ │ ├── code-packages-container.json │ │ ├── code-packages.json │ │ ├── container-logs.json │ │ ├── deployed-apps.json │ │ ├── partition.json │ │ ├── replicas.json │ │ └── service-packages.json │ ├── deployed-replica │ │ ├── code-packages.json │ │ ├── deployed-apps.json │ │ ├── partition-reconfiguration.json │ │ ├── partition.json │ │ ├── replica-details.json │ │ ├── replicas.json │ │ ├── service-packages.json │ │ ├── view-replica-reconfiguration.json │ │ └── view-replica.json │ ├── deployed-service │ │ ├── deployed-apps.json │ │ ├── health.json │ │ ├── manifest.json │ │ ├── service-info.json │ │ └── services.json │ ├── empty-list.json │ ├── emptyRepairJobs.json │ ├── failed-events.json │ ├── manifestRepairManagerDisabled.json │ ├── node-load │ │ └── get-node-load-information.json │ ├── node-page │ │ ├── Error-node-info.json │ │ ├── Error-nodes-list.json │ │ ├── Ok-nodes-list.json │ │ ├── apps.json │ │ ├── deactivated-node-list.json │ │ ├── deactivated-node-seed-node-quorom.json │ │ ├── deactivated-node.json │ │ ├── health.json │ │ ├── node-info.json │ │ ├── node-list-seed-node-quorom.json │ │ └── repair-jobs.json │ ├── nodes.json │ ├── partition-page │ │ ├── health.json │ │ ├── load.json │ │ ├── partitions.json │ │ ├── replica-detail.json │ │ ├── replicas.json │ │ ├── stateful-partition-info.json │ │ └── stateless-partition-info.json │ ├── replica-page │ │ ├── health.json │ │ ├── services.json │ │ ├── stateful-idle-secondary-replica-info.json │ │ ├── stateful-partition-info.json │ │ ├── stateful-partition-reconfiguration-info.json │ │ ├── stateful-replica-detail.json │ │ ├── stateful-replica-info.json │ │ ├── stateful-replica-reconfiguration.json │ │ ├── stateful-replicas-list.json │ │ ├── stateful-service-partitions.json │ │ ├── stateless-partition-info.json │ │ ├── stateless-replica-detail.json │ │ ├── stateless-replica-info.json │ │ ├── stateless-replicas-list.json │ │ └── stateless-service-partitions.json │ ├── service-page │ │ ├── service-arm-managed.json │ │ ├── service-description-with-aux.json │ │ ├── service-description.json │ │ ├── service-health.json │ │ ├── service-info.json │ │ ├── service-manifest.json │ │ ├── service-partitions.json │ │ ├── service-stateless-arm-managed.json │ │ ├── service-stateless-description.json │ │ ├── service-stateless-health.json │ │ ├── service-stateless-info.json │ │ └── service-stateless-partitions.json │ ├── system-service │ │ ├── coordinated-infra-guid.json │ │ ├── coordinated-non-guid.json │ │ ├── cross-az-infra.json │ │ ├── cross-az-nodes-4.json │ │ ├── cross-az-nodes.json │ │ ├── infra-service-details.json │ │ ├── infra-service-health.json │ │ ├── infra-service-info.json │ │ ├── infra-service-partitions.json │ │ ├── infrastructure-data.json │ │ └── system-services.json │ ├── systemApplicationHealth.json │ ├── systemApps.json │ ├── upgrade-in-progress.json │ ├── upgradeProgress.json │ ├── visualObjectsApplicationType.json │ └── xss │ │ ├── aad.json │ │ ├── app-page │ │ ├── app-events.json │ │ ├── app-health.json │ │ ├── app-manifest.json │ │ ├── app-type.json │ │ ├── service-types.json │ │ ├── services.json │ │ └── upgrade-progress.json │ │ ├── appType.json │ │ ├── applications.json │ │ ├── cluster-page │ │ └── imagestore │ │ │ └── base-directory.json │ │ ├── clusterHealth.json │ │ ├── clusterHealthChunk.json │ │ ├── clusterManifest.json │ │ ├── deployed-app-page │ │ ├── deployed-app-info.json │ │ ├── deployed-apps.json │ │ ├── health.json │ │ └── service-packages.json │ │ ├── deployed-code-package │ │ ├── code-packages.json │ │ ├── deployed-apps.json │ │ ├── replicas.json │ │ └── service-packages.json │ │ ├── deployed-replica │ │ ├── code-packages.json │ │ ├── deployed-apps.json │ │ ├── partition.json │ │ ├── replica-details.json │ │ ├── replicas.json │ │ ├── service-packages.json │ │ └── view-replica.json │ │ ├── deployed-service │ │ ├── deployed-apps.json │ │ ├── health.json │ │ ├── manifest.json │ │ ├── service-info.json │ │ └── services.json │ │ ├── empty-list.json │ │ ├── emptyRepairJobs.json │ │ ├── failed-events.json │ │ ├── manifestRepairManagerDisabled.json │ │ ├── node-load │ │ └── get-node-load-information.json │ │ ├── node-page │ │ ├── Ok-nodes-list.json │ │ ├── apps.json │ │ ├── health.json │ │ └── node-info.json │ │ ├── nodes.json │ │ ├── replica-page │ │ ├── health.json │ │ ├── stateful-partition-info.json │ │ ├── stateful-replica-detail.json │ │ ├── stateful-replica-info.json │ │ ├── stateful-replicas-list.json │ │ └── stateful-service-partitions.json │ │ ├── service-page │ │ ├── app-info.json │ │ ├── service-description.json │ │ ├── service-health.json │ │ ├── service-info.json │ │ ├── service-manifest.json │ │ ├── service-partitions.json │ │ └── services.json │ │ ├── systemApplicationHealth.json │ │ ├── systemApps.json │ │ ├── upgrade-in-progress.json │ │ ├── upgradeProgress.json │ │ └── visualObjectsApplicationType.json ├── plugins │ ├── cy-ts-preprocessor.js │ └── index.js └── support │ ├── commands.js │ └── e2e.js ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── patches └── moment+2.30.1.patch ├── proxy.conf.json ├── replaceEnvVars.js ├── sfx.nuspec ├── src ├── Styles │ ├── Themes │ │ ├── dark.scss │ │ └── light.scss │ ├── _app.scss │ ├── _calender.scss │ ├── _detail_table.scss │ ├── _global_tooltip.scss │ ├── _modal.scss │ ├── _navbar.scss │ ├── _noui_tooltip.scss │ ├── _tiles.scss │ ├── _vars.scss │ └── _vis.scss ├── app │ ├── Common │ │ ├── Constants.ts │ │ └── ResponseMessageHandlers.ts │ ├── Models │ │ ├── Action.ts │ │ ├── ActionCollection.ts │ │ ├── DataModels │ │ │ ├── Aad.ts │ │ │ ├── Application.ts │ │ │ ├── ApplicationType.ts │ │ │ ├── Base.ts │ │ │ ├── Cluster.ts │ │ │ ├── DeployedApplication.ts │ │ │ ├── DeployedCodePackage.ts │ │ │ ├── DeployedReplica.ts │ │ │ ├── DeployedServicePackage.ts │ │ │ ├── HealthEvent.ts │ │ │ ├── ImageStore.ts │ │ │ ├── Node.ts │ │ │ ├── Partition.ts │ │ │ ├── PartitionBackupInfo.ts │ │ │ ├── Replica.ts │ │ │ ├── Service.ts │ │ │ ├── Shared.ts │ │ │ ├── cluster.spec.ts │ │ │ ├── collections │ │ │ │ ├── CollectionBase.ts │ │ │ │ ├── Collections.ts │ │ │ │ ├── DeployedApplicationCollection.ts │ │ │ │ ├── NodeCollection.ts │ │ │ │ ├── RepairTaskCollection.ts │ │ │ │ ├── ServiceCollection.ts │ │ │ │ └── infrastructureCollection.ts │ │ │ ├── completedInfrastructureJob.ts │ │ │ ├── infrastructureJob.ts │ │ │ ├── networkDebugger.ts │ │ │ ├── repairTask.spec.ts │ │ │ └── repairTask.ts │ │ ├── HealthChunkRawDataTypes.ts │ │ ├── ListSettings.ts │ │ ├── PowershellCommand.ts │ │ ├── RawDataTypes.ts │ │ └── eventstore │ │ │ ├── Events.ts │ │ │ ├── RelatedEventsConfigs.ts │ │ │ ├── periodicEventParser.ts │ │ │ ├── rcaEngine.ts │ │ │ ├── rcaEngineConfigurations.ts │ │ │ ├── timelineGenerator.spec.ts │ │ │ └── timelineGenerators.ts │ ├── Utils │ │ ├── CollectionUtils.ts │ │ ├── HtmlUtils.ts │ │ ├── IdGenerator.ts │ │ ├── IdUtils.ts │ │ ├── StringUtils.ts │ │ ├── TimeUtils.ts │ │ ├── Transforms.ts │ │ ├── Utils.ts │ │ ├── ValueResolver.ts │ │ ├── deactivationUtils.ts │ │ ├── healthUtils.spec.ts │ │ └── healthUtils.ts │ ├── ViewModels │ │ ├── BaseController.ts │ │ ├── DashboardViewModels.ts │ │ ├── MetricsViewModel.ts │ │ ├── Modal.ts │ │ ├── TreeNodeGroupViewModel.spec.ts │ │ ├── TreeNodeGroupViewModel.ts │ │ ├── TreeTypes.ts │ │ ├── TreeViewModel.ts │ │ └── detail-table-base.component.ts │ ├── app-initializers.ts │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── error-handling.ts │ ├── http-interceptor.spec.ts │ ├── http-interceptor.ts │ ├── modules │ │ ├── action-dialog │ │ │ ├── DialogBodyComponent.ts │ │ │ ├── action-dialog.module.ts │ │ │ ├── action-dialog │ │ │ │ ├── action-dialog.component.html │ │ │ │ ├── action-dialog.component.scss │ │ │ │ ├── action-dialog.component.spec.ts │ │ │ │ └── action-dialog.component.ts │ │ │ ├── dialog-body.directive.ts │ │ │ ├── message-with-confirmation │ │ │ │ ├── message-with-confirmation.component.html │ │ │ │ ├── message-with-confirmation.component.scss │ │ │ │ ├── message-with-confirmation.component.spec.ts │ │ │ │ └── message-with-confirmation.component.ts │ │ │ ├── message-with-wait-confirmation │ │ │ │ ├── message-with-wait-confirmation.component.html │ │ │ │ ├── message-with-wait-confirmation.component.scss │ │ │ │ └── message-with-wait-confirmation.component.ts │ │ │ ├── message-wth-warning │ │ │ │ ├── message-with-warning.component.html │ │ │ │ ├── message-with-warning.component.scss │ │ │ │ ├── message-with-warning.component.spec.ts │ │ │ │ └── message-with-warning.component.ts │ │ │ └── utils.ts │ │ ├── apptypes-viewer │ │ │ ├── apptype-viewer │ │ │ │ ├── apptype-viewer.component.html │ │ │ │ ├── apptype-viewer.component.scss │ │ │ │ └── apptype-viewer.component.ts │ │ │ └── apptypes-viewer.module.ts │ │ ├── backup-restore │ │ │ ├── backup-restore.module.ts │ │ │ ├── get-backup-enabled-entities │ │ │ │ ├── get-backup-enabled-entities.component.html │ │ │ │ ├── get-backup-enabled-entities.component.scss │ │ │ │ ├── get-backup-enabled-entities.component.spec.ts │ │ │ │ └── get-backup-enabled-entities.component.ts │ │ │ ├── partition-disable-back-up │ │ │ │ ├── partition-disable-back-up.component.html │ │ │ │ ├── partition-disable-back-up.component.scss │ │ │ │ ├── partition-disable-back-up.component.spec.ts │ │ │ │ └── partition-disable-back-up.component.ts │ │ │ ├── partition-enable-back-up │ │ │ │ ├── partition-enable-back-up.component.html │ │ │ │ ├── partition-enable-back-up.component.scss │ │ │ │ ├── partition-enable-back-up.component.spec.ts │ │ │ │ └── partition-enable-back-up.component.ts │ │ │ ├── storage-form │ │ │ │ ├── storage-form.component.html │ │ │ │ ├── storage-form.component.scss │ │ │ │ ├── storage-form.component.spec.ts │ │ │ │ └── storage-form.component.ts │ │ │ └── view-backup │ │ │ │ ├── partition-view-backup.component.spec.ts │ │ │ │ ├── view-backup.component.html │ │ │ │ ├── view-backup.component.scss │ │ │ │ └── view-backup.component.ts │ │ ├── charts │ │ │ ├── bar-chart │ │ │ │ ├── bar-chart.component.html │ │ │ │ ├── bar-chart.component.scss │ │ │ │ ├── bar-chart.component.spec.ts │ │ │ │ └── bar-chart.component.ts │ │ │ ├── chart.scss │ │ │ ├── charts.module.ts │ │ │ ├── dashboard-text-scale-tile │ │ │ │ ├── dashboard-text-scale-tile.component.html │ │ │ │ ├── dashboard-text-scale-tile.component.scss │ │ │ │ ├── dashboard-text-scale-tile.component.spec.ts │ │ │ │ └── dashboard-text-scale-tile.component.ts │ │ │ ├── dashboard-text-tile │ │ │ │ ├── dashboard-text-tile.component.html │ │ │ │ ├── dashboard-text-tile.component.scss │ │ │ │ ├── dashboard-text-tile.component.spec.ts │ │ │ │ └── dashboard-text-tile.component.ts │ │ │ ├── dashboard-tile │ │ │ │ ├── dashboard-tile.component.html │ │ │ │ ├── dashboard-tile.component.scss │ │ │ │ ├── dashboard-tile.component.spec.ts │ │ │ │ └── dashboard-tile.component.ts │ │ │ ├── essential-health-tile │ │ │ │ ├── essential-health-tile.component.html │ │ │ │ ├── essential-health-tile.component.scss │ │ │ │ └── essential-health-tile.component.ts │ │ │ ├── health-chart │ │ │ │ ├── health-chart.component.html │ │ │ │ ├── health-chart.component.scss │ │ │ │ └── health-chart.component.ts │ │ │ ├── resources-tile │ │ │ │ ├── resources-tile.component.html │ │ │ │ ├── resources-tile.component.scss │ │ │ │ ├── resources-tile.component.spec.ts │ │ │ │ └── resources-tile.component.ts │ │ │ └── tile-wrapper │ │ │ │ ├── tile-wrapper.component.html │ │ │ │ ├── tile-wrapper.component.scss │ │ │ │ └── tile-wrapper.component.ts │ │ ├── clustermap │ │ │ ├── clustermap.module.ts │ │ │ ├── map │ │ │ │ ├── map.component.html │ │ │ │ ├── map.component.scss │ │ │ │ └── map.component.ts │ │ │ ├── node-list │ │ │ │ ├── node-list.component.html │ │ │ │ ├── node-list.component.scss │ │ │ │ └── node-list.component.ts │ │ │ ├── section-overview │ │ │ │ ├── section-overview.component.html │ │ │ │ ├── section-overview.component.scss │ │ │ │ └── section-overview.component.ts │ │ │ └── status-tile │ │ │ │ ├── status-tile.component.html │ │ │ │ ├── status-tile.component.scss │ │ │ │ └── status-tile.component.ts │ │ ├── concurrent-events-visualization │ │ │ ├── concurrent-events-visualization.module.ts │ │ │ ├── naming-viewer │ │ │ │ ├── naming-viewer.component.html │ │ │ │ ├── naming-viewer.component.scss │ │ │ │ └── naming-viewer.component.ts │ │ │ ├── rca-overview │ │ │ │ ├── rca-overview.component.html │ │ │ │ ├── rca-overview.component.scss │ │ │ │ └── rca-overview.component.ts │ │ │ ├── rca-summary │ │ │ │ ├── rca-summary.component.html │ │ │ │ ├── rca-summary.component.scss │ │ │ │ └── rca-summary.component.ts │ │ │ ├── relation-viewer │ │ │ │ ├── relation-viewer.component.html │ │ │ │ ├── relation-viewer.component.scss │ │ │ │ └── relation-viewer.component.ts │ │ │ ├── timeseries-item │ │ │ │ ├── timeseries-item.component.html │ │ │ │ ├── timeseries-item.component.scss │ │ │ │ └── timeseries-item.component.ts │ │ │ ├── timeseries │ │ │ │ ├── timeseries.component.html │ │ │ │ ├── timeseries.component.scss │ │ │ │ └── timeseries.component.ts │ │ │ ├── visualization-logo │ │ │ │ ├── visualization-logo.component.html │ │ │ │ ├── visualization-logo.component.scss │ │ │ │ └── visualization-logo.component.ts │ │ │ └── visualization-tool │ │ │ │ ├── visualization-tool.component.html │ │ │ │ ├── visualization-tool.component.scss │ │ │ │ └── visualization-tool.component.ts │ │ ├── detail-list-templates │ │ │ ├── arm-managed │ │ │ │ ├── arm-managed.component.html │ │ │ │ ├── arm-managed.component.scss │ │ │ │ ├── arm-managed.component.spec.ts │ │ │ │ └── arm-managed.component.ts │ │ │ ├── copy-text │ │ │ │ ├── copy-text.component.html │ │ │ │ ├── copy-text.component.scss │ │ │ │ ├── copy-text.component.spec.ts │ │ │ │ └── copy-text.component.ts │ │ │ ├── custom-track-by.pipe.ts │ │ │ ├── detail-list-templates.module.ts │ │ │ ├── detail-list │ │ │ │ ├── detail-list.component.html │ │ │ │ ├── detail-list.component.scss │ │ │ │ ├── detail-list.component.spec.ts │ │ │ │ └── detail-list.component.ts │ │ │ ├── detail-table-resolver │ │ │ │ ├── detail-table-resolver.component.html │ │ │ │ ├── detail-table-resolver.component.scss │ │ │ │ ├── detail-table-resolver.component.spec.ts │ │ │ │ └── detail-table-resolver.component.ts │ │ │ ├── export-modal │ │ │ │ ├── export-modal.component.html │ │ │ │ ├── export-modal.component.scss │ │ │ │ ├── export-modal.component.spec.ts │ │ │ │ ├── export-modal.component.ts │ │ │ │ └── utils.ts │ │ │ ├── full-description │ │ │ │ ├── full-description.component.html │ │ │ │ ├── full-description.component.scss │ │ │ │ ├── full-description.component.spec.ts │ │ │ │ └── full-description.component.ts │ │ │ ├── healthbadge │ │ │ │ ├── healthbadge.component.html │ │ │ │ ├── healthbadge.component.scss │ │ │ │ └── healthbadge.component.ts │ │ │ ├── hyper-link │ │ │ │ ├── hyper-link.component.html │ │ │ │ ├── hyper-link.component.scss │ │ │ │ ├── hyper-link.component.spec.ts │ │ │ │ └── hyper-link.component.ts │ │ │ ├── pager │ │ │ │ ├── pager.component.html │ │ │ │ ├── pager.component.scss │ │ │ │ ├── pager.component.spec.ts │ │ │ │ └── pager.component.ts │ │ │ ├── question-tool-tip │ │ │ │ ├── question-tool-tip.component.html │ │ │ │ ├── question-tool-tip.component.scss │ │ │ │ ├── question-tool-tip.component.spec.ts │ │ │ │ └── question-tool-tip.component.ts │ │ │ ├── resolver.directive.ts │ │ │ ├── shorten │ │ │ │ ├── shorten.component.html │ │ │ │ ├── shorten.component.scss │ │ │ │ └── shorten.component.ts │ │ │ └── utc-timestamp │ │ │ │ ├── utc-timestamp.component.html │ │ │ │ ├── utc-timestamp.component.scss │ │ │ │ └── utc-timestamp.component.ts │ │ ├── event-store │ │ │ ├── event-store.module.ts │ │ │ ├── event-store │ │ │ │ ├── event-store.component.html │ │ │ │ ├── event-store.component.scss │ │ │ │ ├── event-store.component.spec.ts │ │ │ │ └── event-store.component.ts │ │ │ ├── option-picker │ │ │ │ ├── option-picker.component.html │ │ │ │ ├── option-picker.component.scss │ │ │ │ ├── option-picker.component.spec.ts │ │ │ │ └── option-picker.component.ts │ │ │ ├── rca-visualization │ │ │ │ ├── rca-visualization.component.html │ │ │ │ ├── rca-visualization.component.scss │ │ │ │ ├── rca-visualization.component.spec.ts │ │ │ │ └── rca-visualization.component.ts │ │ │ ├── row-display │ │ │ │ ├── row-display.component.html │ │ │ │ ├── row-display.component.scss │ │ │ │ ├── row-display.component.spec.ts │ │ │ │ └── row-display.component.ts │ │ │ ├── timeline │ │ │ │ ├── timeline.component.html │ │ │ │ ├── timeline.component.scss │ │ │ │ ├── timeline.component.spec.ts │ │ │ │ └── timeline.component.ts │ │ │ ├── visualization.directive.ts │ │ │ └── visualizationComponents.ts │ │ ├── health-state │ │ │ ├── health-state.module.ts │ │ │ └── health-viewer │ │ │ │ ├── health-viewer.component.html │ │ │ │ ├── health-viewer.component.scss │ │ │ │ ├── health-viewer.component.spec.ts │ │ │ │ └── health-viewer.component.ts │ │ ├── imagestore │ │ │ ├── display-name-column │ │ │ │ ├── display-name-column.component.html │ │ │ │ ├── display-name-column.component.scss │ │ │ │ ├── display-name-column.component.spec.ts │ │ │ │ └── display-name-column.component.ts │ │ │ ├── display-size-column │ │ │ │ ├── display-size-column.component.html │ │ │ │ ├── display-size-column.component.scss │ │ │ │ ├── display-size-column.component.spec.ts │ │ │ │ └── display-size-column.component.ts │ │ │ ├── folder-actions │ │ │ │ ├── folder-actions.component.html │ │ │ │ ├── folder-actions.component.scss │ │ │ │ ├── folder-actions.component.spec.ts │ │ │ │ └── folder-actions.component.ts │ │ │ ├── imagestore-viewer │ │ │ │ ├── imagestore-viewer.component.html │ │ │ │ ├── imagestore-viewer.component.scss │ │ │ │ ├── imagestore-viewer.component.spec.ts │ │ │ │ └── imagestore-viewer.component.ts │ │ │ └── imagestore.module.ts │ │ ├── infrastructure-job │ │ │ ├── infrastructure-job-tile │ │ │ │ ├── infrastructure-job-tile.component.html │ │ │ │ ├── infrastructure-job-tile.component.scss │ │ │ │ └── infrastructure-job-tile.component.ts │ │ │ ├── infrastructure-job.module.ts │ │ │ ├── infrastructure-overview │ │ │ │ ├── infrastructure-overview.component.html │ │ │ │ ├── infrastructure-overview.component.scss │ │ │ │ └── infrastructure-overview.component.ts │ │ │ └── strip-prefix.pipe.ts │ │ ├── node-deactivation │ │ │ ├── node-deactivation-info │ │ │ │ ├── node-deactivation-info.component.html │ │ │ │ ├── node-deactivation-info.component.scss │ │ │ │ ├── node-deactivation-info.component.spec.ts │ │ │ │ └── node-deactivation-info.component.ts │ │ │ └── node-deactivation.module.ts │ │ ├── partition-replication │ │ │ ├── partition-replication.module.ts │ │ │ ├── replica-status-container │ │ │ │ ├── replica-status-container.component.html │ │ │ │ ├── replica-status-container.component.scss │ │ │ │ └── replica-status-container.component.ts │ │ │ ├── replica-status │ │ │ │ ├── replica-status.component.html │ │ │ │ ├── replica-status.component.scss │ │ │ │ └── replica-status.component.ts │ │ │ ├── replica-tile │ │ │ │ ├── replica-tile.component.html │ │ │ │ ├── replica-tile.component.scss │ │ │ │ └── replica-tile.component.ts │ │ │ ├── replication-trend-line │ │ │ │ ├── replication-trend-line.component.html │ │ │ │ ├── replication-trend-line.component.scss │ │ │ │ └── replication-trend-line.component.ts │ │ │ ├── replication-utils.spec.ts │ │ │ └── replication-utils.ts │ │ ├── powershell-commands │ │ │ ├── command-input │ │ │ │ ├── command-input.component.html │ │ │ │ ├── command-input.component.scss │ │ │ │ ├── command-input.component.spec.ts │ │ │ │ └── command-input.component.ts │ │ │ ├── command │ │ │ │ ├── command.component.html │ │ │ │ ├── command.component.scss │ │ │ │ ├── command.component.spec.ts │ │ │ │ └── command.component.ts │ │ │ ├── powershell-commands.module.ts │ │ │ └── powershell-commands │ │ │ │ ├── powershell-commands.component.html │ │ │ │ ├── powershell-commands.component.scss │ │ │ │ ├── powershell-commands.component.spec.ts │ │ │ │ └── powershell-commands.component.ts │ │ ├── repair-tasks │ │ │ ├── repair-job-chart │ │ │ │ ├── repair-job-chart.component.html │ │ │ │ ├── repair-job-chart.component.scss │ │ │ │ ├── repair-job-chart.component.spec.ts │ │ │ │ └── repair-job-chart.component.ts │ │ │ ├── repair-task-view │ │ │ │ ├── repair-task-view.component.html │ │ │ │ ├── repair-task-view.component.scss │ │ │ │ ├── repair-task-view.component.spec.ts │ │ │ │ └── repair-task-view.component.ts │ │ │ └── repair-tasks.module.ts │ │ ├── time-picker │ │ │ ├── double-slider │ │ │ │ ├── double-slider.component.html │ │ │ │ ├── double-slider.component.scss │ │ │ │ ├── double-slider.component.spec.ts │ │ │ │ └── double-slider.component.ts │ │ │ ├── full-time-picker │ │ │ │ ├── full-time-picker.component.html │ │ │ │ ├── full-time-picker.component.scss │ │ │ │ ├── full-time-picker.component.spec.ts │ │ │ │ └── full-time-picker.component.ts │ │ │ ├── time-picker.module.ts │ │ │ └── time-picker │ │ │ │ ├── time-picker.component.html │ │ │ │ ├── time-picker.component.scss │ │ │ │ ├── time-picker.component.spec.ts │ │ │ │ └── time-picker.component.ts │ │ ├── tree │ │ │ ├── selected-node.directive.ts │ │ │ ├── tree-node │ │ │ │ ├── tree-node.component.html │ │ │ │ ├── tree-node.component.scss │ │ │ │ ├── tree-node.component.spec.ts │ │ │ │ └── tree-node.component.ts │ │ │ ├── tree-view │ │ │ │ ├── tree-view.component.html │ │ │ │ ├── tree-view.component.scss │ │ │ │ ├── tree-view.component.spec.ts │ │ │ │ └── tree-view.component.ts │ │ │ └── tree.module.ts │ │ └── upgrade-progress │ │ │ ├── health-policy-check │ │ │ ├── health-policy-check.component.html │ │ │ ├── health-policy-check.component.scss │ │ │ └── health-policy-check.component.ts │ │ │ ├── load-cell │ │ │ ├── load-cell.component.html │ │ │ ├── load-cell.component.scss │ │ │ ├── load-cell.component.spec.ts │ │ │ └── load-cell.component.ts │ │ │ ├── node-progress │ │ │ ├── node-progress.component.html │ │ │ ├── node-progress.component.scss │ │ │ ├── node-progress.component.spec.ts │ │ │ └── node-progress.component.ts │ │ │ ├── partition-cache.service.spec.ts │ │ │ ├── partition-cache.service.ts │ │ │ ├── safety-checks │ │ │ ├── safety-checks.component.html │ │ │ ├── safety-checks.component.scss │ │ │ ├── safety-checks.component.spec.ts │ │ │ └── safety-checks.component.ts │ │ │ ├── upgrade-domain-progress │ │ │ ├── upgrade-domain-progress.component.html │ │ │ ├── upgrade-domain-progress.component.scss │ │ │ ├── upgrade-domain-progress.component.spec.ts │ │ │ └── upgrade-domain-progress.component.ts │ │ │ ├── upgrade-info │ │ │ ├── upgrade-info.component.html │ │ │ ├── upgrade-info.component.scss │ │ │ ├── upgrade-info.component.spec.ts │ │ │ └── upgrade-info.component.ts │ │ │ ├── upgrade-progress.module.ts │ │ │ └── upgrade-progress │ │ │ ├── upgrade-progress.component.html │ │ │ ├── upgrade-progress.component.scss │ │ │ ├── upgrade-progress.component.spec.ts │ │ │ └── upgrade-progress.component.ts │ ├── services │ │ ├── adal.service.spec.ts │ │ ├── adal.service.ts │ │ ├── data.service.spec.ts │ │ ├── data.service.ts │ │ ├── focus.service.spec.ts │ │ ├── focus.service.ts │ │ ├── message.service.spec.ts │ │ ├── message.service.ts │ │ ├── refresh.service.spec.ts │ │ ├── refresh.service.ts │ │ ├── rest-client.service.spec.ts │ │ ├── rest-client.service.ts │ │ ├── routes.service.spec.ts │ │ ├── routes.service.testData.ts │ │ ├── routes.service.ts │ │ ├── settings.service.spec.ts │ │ ├── settings.service.ts │ │ ├── standalone-integration.service.ts │ │ ├── status-warning.service.spec.ts │ │ ├── status-warning.service.ts │ │ ├── storage.service.spec.ts │ │ ├── storage.service.ts │ │ ├── telemetry.service.spec.ts │ │ ├── telemetry.service.ts │ │ ├── timeline-generator-factory.service.ts │ │ ├── tree.service.spec.ts │ │ └── tree.service.ts │ ├── shared │ │ ├── component │ │ │ ├── action-collection-drop-down │ │ │ │ ├── action-collection-drop-down.component.html │ │ │ │ ├── action-collection-drop-down.component.scss │ │ │ │ ├── action-collection-drop-down.component.spec.ts │ │ │ │ └── action-collection-drop-down.component.ts │ │ │ ├── advanced-option │ │ │ │ ├── advanced-option.component.html │ │ │ │ ├── advanced-option.component.scss │ │ │ │ ├── advanced-option.component.spec.ts │ │ │ │ └── advanced-option.component.ts │ │ │ ├── arm-warning │ │ │ │ ├── arm-warning.component.html │ │ │ │ ├── arm-warning.component.scss │ │ │ │ ├── arm-warning.component.spec.ts │ │ │ │ └── arm-warning.component.ts │ │ │ ├── candy-bar-compact │ │ │ │ ├── candy-bar-compact.component.html │ │ │ │ ├── candy-bar-compact.component.scss │ │ │ │ ├── candy-bar-compact.component.spec.ts │ │ │ │ └── candy-bar-compact.component.ts │ │ │ ├── check-box │ │ │ │ ├── check-box.component.html │ │ │ │ ├── check-box.component.scss │ │ │ │ ├── check-box.component.spec.ts │ │ │ │ └── check-box.component.ts │ │ │ ├── clip-board │ │ │ │ ├── clip-board.component.html │ │ │ │ ├── clip-board.component.scss │ │ │ │ ├── clip-board.component.spec.ts │ │ │ │ └── clip-board.component.ts │ │ │ ├── cluster-upgrade-banner │ │ │ │ ├── cluster-upgrade-banner.component.html │ │ │ │ ├── cluster-upgrade-banner.component.scss │ │ │ │ ├── cluster-upgrade-banner.component.spec.ts │ │ │ │ └── cluster-upgrade-banner.component.ts │ │ │ ├── collapse-container │ │ │ │ ├── collapse-container.component.html │ │ │ │ ├── collapse-container.component.scss │ │ │ │ ├── collapse-container.component.spec.ts │ │ │ │ └── collapse-container.component.ts │ │ │ ├── detail-view-part │ │ │ │ ├── detail-view-part.component.html │ │ │ │ ├── detail-view-part.component.scss │ │ │ │ ├── detail-view-part.component.spec.ts │ │ │ │ └── detail-view-part.component.ts │ │ │ ├── display-duration │ │ │ │ ├── display-duration.component.html │ │ │ │ ├── display-duration.component.scss │ │ │ │ ├── display-duration.component.spec.ts │ │ │ │ └── display-duration.component.ts │ │ │ ├── display-time │ │ │ │ ├── display-time.component.html │ │ │ │ ├── display-time.component.scss │ │ │ │ └── display-time.component.ts │ │ │ ├── dual-date-picker │ │ │ │ ├── dual-date-picker.component.html │ │ │ │ ├── dual-date-picker.component.scss │ │ │ │ ├── dual-date-picker.component.spec.ts │ │ │ │ └── dual-date-picker.component.ts │ │ │ ├── essential-item │ │ │ │ ├── essential-item.component.html │ │ │ │ ├── essential-item.component.scss │ │ │ │ ├── essential-item.component.spec.ts │ │ │ │ └── essential-item.component.ts │ │ │ ├── event-store-timeline │ │ │ │ ├── event-store-timeline.component.html │ │ │ │ ├── event-store-timeline.component.scss │ │ │ │ ├── event-store-timeline.component.spec.ts │ │ │ │ └── event-store-timeline.component.ts │ │ │ ├── health-badge │ │ │ │ ├── health-badge.component.html │ │ │ │ ├── health-badge.component.scss │ │ │ │ ├── health-badge.component.spec.ts │ │ │ │ └── health-badge.component.ts │ │ │ ├── input │ │ │ │ ├── input.component.html │ │ │ │ ├── input.component.scss │ │ │ │ ├── input.component.spec.ts │ │ │ │ └── input.component.ts │ │ │ ├── local-time │ │ │ │ ├── local-time.component.html │ │ │ │ ├── local-time.component.scss │ │ │ │ └── local-time.component.ts │ │ │ ├── manifest │ │ │ │ ├── manifest.component.html │ │ │ │ ├── manifest.component.scss │ │ │ │ ├── manifest.component.spec.ts │ │ │ │ └── manifest.component.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.html │ │ │ │ ├── navbar.component.scss │ │ │ │ ├── navbar.component.spec.ts │ │ │ │ └── navbar.component.ts │ │ │ ├── node-filter │ │ │ │ ├── node-filter.component.html │ │ │ │ ├── node-filter.component.scss │ │ │ │ └── node-filter.component.ts │ │ │ ├── phase-diagram │ │ │ │ ├── phase-diagram.component.html │ │ │ │ ├── phase-diagram.component.scss │ │ │ │ └── phase-diagram.component.ts │ │ │ ├── refresh-rate │ │ │ │ ├── refresh-rate.component.html │ │ │ │ ├── refresh-rate.component.scss │ │ │ │ ├── refresh-rate.component.spec.ts │ │ │ │ └── refresh-rate.component.ts │ │ │ ├── replica-address │ │ │ │ ├── replica-address.component.html │ │ │ │ ├── replica-address.component.scss │ │ │ │ ├── replica-address.component.spec.ts │ │ │ │ └── replica-address.component.ts │ │ │ ├── resource-item │ │ │ │ ├── resource-item.component.html │ │ │ │ ├── resource-item.component.scss │ │ │ │ ├── resource-item.component.spec.ts │ │ │ │ └── resource-item.component.ts │ │ │ ├── state-info │ │ │ │ ├── state-info.component.html │ │ │ │ ├── state-info.component.scss │ │ │ │ └── state-info.component.ts │ │ │ ├── status-resolver │ │ │ │ ├── status-resolver.component.html │ │ │ │ ├── status-resolver.component.scss │ │ │ │ └── status-resolver.component.ts │ │ │ ├── toast-container │ │ │ │ ├── toast-container.component.html │ │ │ │ ├── toast-container.component.scss │ │ │ │ ├── toast-container.component.spec.ts │ │ │ │ └── toast-container.component.ts │ │ │ ├── toggle │ │ │ │ ├── toggle.component.html │ │ │ │ ├── toggle.component.scss │ │ │ │ ├── toggle.component.spec.ts │ │ │ │ └── toggle.component.ts │ │ │ └── warning │ │ │ │ ├── warning.component.html │ │ │ │ ├── warning.component.scss │ │ │ │ └── warning.component.ts │ │ ├── directive │ │ │ ├── drag.directive.spec.ts │ │ │ ├── drag.directive.ts │ │ │ └── focusable.directive.ts │ │ ├── pipes │ │ │ ├── format-date.pipe.spec.ts │ │ │ └── format-date.pipe.ts │ │ └── shared.module.ts │ ├── telemetry-snack-bar │ │ ├── telemetry-snack-bar.component.html │ │ ├── telemetry-snack-bar.component.scss │ │ ├── telemetry-snack-bar.component.spec.ts │ │ └── telemetry-snack-bar.component.ts │ └── views │ │ ├── BaseView.ts │ │ ├── application-type │ │ ├── ApplicationTypeBase.ts │ │ ├── action-row │ │ │ ├── action-row.component.html │ │ │ ├── action-row.component.scss │ │ │ ├── action-row.component.spec.ts │ │ │ └── action-row.component.ts │ │ ├── application-type-routing.module.ts │ │ ├── application-type.module.ts │ │ ├── base │ │ │ ├── base.component.html │ │ │ ├── base.component.scss │ │ │ ├── base.component.spec.ts │ │ │ └── base.component.ts │ │ ├── commands │ │ │ ├── commands.component.html │ │ │ ├── commands.component.scss │ │ │ └── commands.component.ts │ │ ├── create-application │ │ │ ├── create-application.component.html │ │ │ ├── create-application.component.scss │ │ │ ├── create-application.component.spec.ts │ │ │ └── create-application.component.ts │ │ ├── details │ │ │ ├── details.component.html │ │ │ ├── details.component.scss │ │ │ ├── details.component.spec.ts │ │ │ └── details.component.ts │ │ └── essentials │ │ │ ├── essentials.component.html │ │ │ ├── essentials.component.scss │ │ │ ├── essentials.component.spec.ts │ │ │ └── essentials.component.ts │ │ ├── application │ │ ├── action-row │ │ │ ├── action-row.component.html │ │ │ ├── action-row.component.scss │ │ │ ├── action-row.component.spec.ts │ │ │ └── action-row.component.ts │ │ ├── application-routing.module.ts │ │ ├── application.module.ts │ │ ├── applicationBase.ts │ │ ├── backup │ │ │ ├── backup.component.html │ │ │ ├── backup.component.scss │ │ │ ├── backup.component.spec.ts │ │ │ └── backup.component.ts │ │ ├── base │ │ │ ├── base.component.html │ │ │ ├── base.component.scss │ │ │ ├── base.component.spec.ts │ │ │ └── base.component.ts │ │ ├── commands │ │ │ ├── commands.component.html │ │ │ ├── commands.component.scss │ │ │ └── commands.component.ts │ │ ├── create-service │ │ │ ├── create-service.component.html │ │ │ ├── create-service.component.scss │ │ │ ├── create-service.component.spec.ts │ │ │ └── create-service.component.ts │ │ ├── deployments │ │ │ ├── deployments.component.html │ │ │ ├── deployments.component.scss │ │ │ ├── deployments.component.spec.ts │ │ │ └── deployments.component.ts │ │ ├── details │ │ │ ├── details.component.html │ │ │ ├── details.component.scss │ │ │ ├── details.component.spec.ts │ │ │ └── details.component.ts │ │ ├── essentials │ │ │ ├── essentials.component.html │ │ │ ├── essentials.component.scss │ │ │ ├── essentials.component.spec.ts │ │ │ └── essentials.component.ts │ │ ├── events │ │ │ ├── events.component.html │ │ │ ├── events.component.scss │ │ │ ├── events.component.spec.ts │ │ │ └── events.component.ts │ │ └── manifest │ │ │ ├── manifest.component.html │ │ │ ├── manifest.component.scss │ │ │ ├── manifest.component.spec.ts │ │ │ └── manifest.component.ts │ │ ├── applications │ │ ├── all │ │ │ ├── all.component.html │ │ │ ├── all.component.scss │ │ │ ├── all.component.spec.ts │ │ │ └── all.component.ts │ │ ├── applications-routing.module.ts │ │ ├── applications.module.ts │ │ ├── applicationsBase.ts │ │ ├── apptypes │ │ │ ├── apptypes.component.html │ │ │ ├── apptypes.component.scss │ │ │ └── apptypes.component.ts │ │ ├── base │ │ │ ├── base.component.html │ │ │ ├── base.component.scss │ │ │ ├── base.component.spec.ts │ │ │ └── base.component.ts │ │ ├── commands │ │ │ ├── commands.component.html │ │ │ ├── commands.component.scss │ │ │ └── commands.component.ts │ │ ├── events │ │ │ ├── events.component.html │ │ │ ├── events.component.scss │ │ │ ├── events.component.spec.ts │ │ │ └── events.component.ts │ │ ├── upgrading │ │ │ ├── upgrading.component.html │ │ │ ├── upgrading.component.scss │ │ │ ├── upgrading.component.spec.ts │ │ │ └── upgrading.component.ts │ │ └── view-upgrades-list-item │ │ │ ├── view-upgrades-list-item.component.html │ │ │ ├── view-upgrades-list-item.component.scss │ │ │ └── view-upgrades-list-item.component.ts │ │ ├── cluster │ │ ├── action-create-backup-policy │ │ │ ├── action-create-backup-policy.component.html │ │ │ ├── action-create-backup-policy.component.scss │ │ │ ├── action-create-backup-policy.component.spec.ts │ │ │ └── action-create-backup-policy.component.ts │ │ ├── backups │ │ │ ├── backups.component.html │ │ │ ├── backups.component.scss │ │ │ ├── backups.component.spec.ts │ │ │ └── backups.component.ts │ │ ├── base │ │ │ ├── base.component.html │ │ │ ├── base.component.scss │ │ │ ├── base.component.spec.ts │ │ │ └── base.component.ts │ │ ├── cluster-routing.module.ts │ │ ├── cluster.module.ts │ │ ├── clustermap │ │ │ ├── clustermap.component.html │ │ │ ├── clustermap.component.scss │ │ │ ├── clustermap.component.spec.ts │ │ │ └── clustermap.component.ts │ │ ├── commands │ │ │ ├── commands.component.html │ │ │ ├── commands.component.scss │ │ │ └── commands.component.ts │ │ ├── details │ │ │ ├── details.component.html │ │ │ ├── details.component.scss │ │ │ ├── details.component.spec.ts │ │ │ └── details.component.ts │ │ ├── essentials │ │ │ ├── essentials.component.html │ │ │ ├── essentials.component.scss │ │ │ ├── essentials.component.spec.ts │ │ │ └── essentials.component.ts │ │ ├── events │ │ │ ├── events.component.html │ │ │ ├── events.component.scss │ │ │ ├── events.component.spec.ts │ │ │ └── events.component.ts │ │ ├── imagestore │ │ │ ├── imagestore.component.html │ │ │ ├── imagestore.component.scss │ │ │ ├── imagestore.component.spec.ts │ │ │ └── imagestore.component.ts │ │ ├── infrastructure-view │ │ │ ├── infrastructure-view.component.html │ │ │ ├── infrastructure-view.component.scss │ │ │ └── infrastructure-view.component.ts │ │ ├── manifest │ │ │ ├── manifest.component.html │ │ │ ├── manifest.component.scss │ │ │ ├── manifest.component.spec.ts │ │ │ └── manifest.component.ts │ │ ├── metric-tile │ │ │ ├── metric-tile.component.html │ │ │ ├── metric-tile.component.scss │ │ │ └── metric-tile.component.ts │ │ ├── metrics │ │ │ ├── metrics.component.html │ │ │ ├── metrics.component.scss │ │ │ └── metrics.component.ts │ │ ├── naming-viewer-page │ │ │ ├── naming-viewer-page.component.html │ │ │ ├── naming-viewer-page.component.scss │ │ │ └── naming-viewer-page.component.ts │ │ ├── orchestration-view │ │ │ ├── orchestration-view.component.html │ │ │ ├── orchestration-view.component.scss │ │ │ └── orchestration-view.component.ts │ │ ├── repair-tasks │ │ │ ├── repair-tasks.component.html │ │ │ ├── repair-tasks.component.scss │ │ │ ├── repair-tasks.component.spec.ts │ │ │ └── repair-tasks.component.ts │ │ └── status-warnings │ │ │ ├── status-warnings.component.html │ │ │ ├── status-warnings.component.scss │ │ │ ├── status-warnings.component.spec.ts │ │ │ └── status-warnings.component.ts │ │ ├── debugging │ │ ├── debugging-routing.module.ts │ │ ├── debugging.module.ts │ │ ├── nested-table │ │ │ ├── nested-table.component.html │ │ │ ├── nested-table.component.scss │ │ │ ├── nested-table.component.spec.ts │ │ │ └── nested-table.component.ts │ │ └── request-logging │ │ │ ├── request-logging.component.html │ │ │ ├── request-logging.component.scss │ │ │ ├── request-logging.component.spec.ts │ │ │ └── request-logging.component.ts │ │ ├── deployed-application │ │ ├── DeployedApplicationBase.ts │ │ ├── base │ │ │ ├── base.component.html │ │ │ ├── base.component.scss │ │ │ ├── base.component.spec.ts │ │ │ └── base.component.ts │ │ ├── commands │ │ │ ├── commands.component.html │ │ │ ├── commands.component.scss │ │ │ └── commands.component.ts │ │ ├── deployed-application-routing.module.ts │ │ ├── deployed-application.module.ts │ │ ├── details │ │ │ ├── details.component.html │ │ │ ├── details.component.scss │ │ │ ├── details.component.spec.ts │ │ │ └── details.component.ts │ │ └── essentials │ │ │ ├── essentials.component.html │ │ │ ├── essentials.component.scss │ │ │ ├── essentials.component.spec.ts │ │ │ └── essentials.component.ts │ │ ├── deployed-code-package │ │ ├── DeployedCodePackageBase.ts │ │ ├── base │ │ │ ├── base.component.html │ │ │ ├── base.component.scss │ │ │ ├── base.component.spec.ts │ │ │ └── base.component.ts │ │ ├── container-logs │ │ │ ├── container-logs.component.html │ │ │ ├── container-logs.component.scss │ │ │ ├── container-logs.component.spec.ts │ │ │ └── container-logs.component.ts │ │ ├── deployed-code-package-routing.module.ts │ │ ├── deployed-code-package.module.ts │ │ ├── details │ │ │ ├── details.component.html │ │ │ ├── details.component.scss │ │ │ ├── details.component.spec.ts │ │ │ └── details.component.ts │ │ └── essentials │ │ │ ├── essentials.component.html │ │ │ ├── essentials.component.scss │ │ │ ├── essentials.component.spec.ts │ │ │ └── essentials.component.ts │ │ ├── deployed-code-packages │ │ ├── base │ │ │ ├── base.component.html │ │ │ ├── base.component.scss │ │ │ ├── base.component.spec.ts │ │ │ └── base.component.ts │ │ ├── deployed-code-packages-routing.module.ts │ │ └── deployed-code-packages.module.ts │ │ ├── deployed-replica │ │ ├── DeployedReplicaBase.ts │ │ ├── base │ │ │ ├── base.component.html │ │ │ ├── base.component.scss │ │ │ ├── base.component.spec.ts │ │ │ └── base.component.ts │ │ ├── commands │ │ │ ├── commands.component.html │ │ │ ├── commands.component.scss │ │ │ └── commands.component.ts │ │ ├── deployed-replica-routing.module.ts │ │ ├── deployed-replica.module.ts │ │ ├── details │ │ │ ├── details.component.html │ │ │ ├── details.component.scss │ │ │ ├── details.component.spec.ts │ │ │ └── details.component.ts │ │ └── essentials │ │ │ ├── essentials.component.html │ │ │ ├── essentials.component.scss │ │ │ ├── essentials.component.spec.ts │ │ │ └── essentials.component.ts │ │ ├── deployed-replicas │ │ ├── base │ │ │ ├── base.component.html │ │ │ ├── base.component.scss │ │ │ ├── base.component.spec.ts │ │ │ └── base.component.ts │ │ ├── deployed-replicas-routing.module.ts │ │ └── deployed-replicas.module.ts │ │ ├── deployed-service-package │ │ ├── DeployedServicePackage.ts │ │ ├── base │ │ │ ├── base.component.html │ │ │ ├── base.component.scss │ │ │ ├── base.component.spec.ts │ │ │ └── base.component.ts │ │ ├── commands │ │ │ ├── commands.component.html │ │ │ ├── commands.component.scss │ │ │ └── commands.component.ts │ │ ├── deployed-service-package-routing.module.ts │ │ ├── deployed-service-package.module.ts │ │ ├── details │ │ │ ├── details.component.html │ │ │ ├── details.component.scss │ │ │ ├── details.component.spec.ts │ │ │ └── details.component.ts │ │ ├── essentials │ │ │ ├── essentials.component.html │ │ │ ├── essentials.component.scss │ │ │ ├── essentials.component.spec.ts │ │ │ └── essentials.component.ts │ │ └── manifest │ │ │ ├── manifest.component.html │ │ │ ├── manifest.component.scss │ │ │ ├── manifest.component.spec.ts │ │ │ └── manifest.component.ts │ │ ├── node │ │ ├── NodeBase.ts │ │ ├── base │ │ │ ├── base.component.html │ │ │ ├── base.component.scss │ │ │ ├── base.component.spec.ts │ │ │ └── base.component.ts │ │ ├── commands │ │ │ ├── commands.component.html │ │ │ ├── commands.component.scss │ │ │ └── commands.component.ts │ │ ├── details │ │ │ ├── details.component.html │ │ │ ├── details.component.scss │ │ │ ├── details.component.spec.ts │ │ │ └── details.component.ts │ │ ├── essentials │ │ │ ├── essentials.component.html │ │ │ ├── essentials.component.scss │ │ │ ├── essentials.component.spec.ts │ │ │ └── essentials.component.ts │ │ ├── events │ │ │ ├── events.component.html │ │ │ ├── events.component.scss │ │ │ ├── events.component.spec.ts │ │ │ └── events.component.ts │ │ ├── node-routing.module.ts │ │ └── node.module.ts │ │ ├── nodes │ │ ├── all-nodes │ │ │ ├── all-nodes.component.html │ │ │ ├── all-nodes.component.scss │ │ │ ├── all-nodes.component.spec.ts │ │ │ └── all-nodes.component.ts │ │ ├── base │ │ │ ├── base.component.html │ │ │ ├── base.component.scss │ │ │ ├── base.component.spec.ts │ │ │ └── base.component.ts │ │ ├── commands │ │ │ ├── commands.component.html │ │ │ ├── commands.component.scss │ │ │ └── commands.component.ts │ │ ├── events │ │ │ ├── events.component.html │ │ │ ├── events.component.scss │ │ │ ├── events.component.spec.ts │ │ │ └── events.component.ts │ │ ├── nodes-routing.module.ts │ │ └── nodes.module.ts │ │ ├── partition │ │ ├── PartitionBase.ts │ │ ├── backupinfo │ │ │ ├── backupinfo.component.html │ │ │ ├── backupinfo.component.scss │ │ │ ├── backupinfo.component.spec.ts │ │ │ └── backupinfo.component.ts │ │ ├── backups │ │ │ ├── backups.component.html │ │ │ ├── backups.component.scss │ │ │ ├── backups.component.spec.ts │ │ │ └── backups.component.ts │ │ ├── base │ │ │ ├── base.component.html │ │ │ ├── base.component.scss │ │ │ ├── base.component.spec.ts │ │ │ └── base.component.ts │ │ ├── commands │ │ │ ├── commands.component.html │ │ │ ├── commands.component.scss │ │ │ └── commands.component.ts │ │ ├── details │ │ │ ├── details.component.html │ │ │ ├── details.component.scss │ │ │ ├── details.component.spec.ts │ │ │ └── details.component.ts │ │ ├── essentials │ │ │ ├── essentials.component.html │ │ │ ├── essentials.component.scss │ │ │ ├── essentials.component.spec.ts │ │ │ └── essentials.component.ts │ │ ├── events │ │ │ ├── events.component.html │ │ │ ├── events.component.scss │ │ │ ├── events.component.spec.ts │ │ │ └── events.component.ts │ │ ├── partition-restore-back-up │ │ │ ├── partition-restore-back-up.component.html │ │ │ ├── partition-restore-back-up.component.scss │ │ │ ├── partition-restore-back-up.component.spec.ts │ │ │ └── partition-restore-back-up.component.ts │ │ ├── partition-routing.module.ts │ │ ├── partition-trigger-back-up │ │ │ ├── partition-trigger-back-up.component.html │ │ │ ├── partition-trigger-back-up.component.scss │ │ │ ├── partition-trigger-back-up.component.spec.ts │ │ │ └── partition-trigger-back-up.component.ts │ │ └── partition.module.ts │ │ ├── replica │ │ ├── ReplicaBase.ts │ │ ├── base │ │ │ ├── base.component.html │ │ │ ├── base.component.scss │ │ │ ├── base.component.spec.ts │ │ │ └── base.component.ts │ │ ├── commands │ │ │ ├── commands.component.html │ │ │ ├── commands.component.scss │ │ │ └── commands.component.ts │ │ ├── details │ │ │ ├── details.component.html │ │ │ ├── details.component.scss │ │ │ ├── details.component.spec.ts │ │ │ └── details.component.ts │ │ ├── essentials │ │ │ ├── essentials.component.html │ │ │ ├── essentials.component.scss │ │ │ ├── essentials.component.spec.ts │ │ │ └── essentials.component.ts │ │ ├── events │ │ │ ├── events.component.html │ │ │ ├── events.component.scss │ │ │ ├── events.component.spec.ts │ │ │ └── events.component.ts │ │ ├── replica-routing.module.ts │ │ └── replica.module.ts │ │ ├── service │ │ ├── ServiceBase.ts │ │ ├── backup │ │ │ ├── backup.component.html │ │ │ ├── backup.component.scss │ │ │ ├── backup.component.spec.ts │ │ │ └── backup.component.ts │ │ ├── base │ │ │ ├── base.component.html │ │ │ ├── base.component.scss │ │ │ ├── base.component.spec.ts │ │ │ └── base.component.ts │ │ ├── commands │ │ │ ├── commands.component.html │ │ │ ├── commands.component.scss │ │ │ └── commands.component.ts │ │ ├── details │ │ │ ├── details.component.html │ │ │ ├── details.component.scss │ │ │ ├── details.component.spec.ts │ │ │ └── details.component.ts │ │ ├── essentials │ │ │ ├── essentials.component.html │ │ │ ├── essentials.component.scss │ │ │ ├── essentials.component.spec.ts │ │ │ └── essentials.component.ts │ │ ├── events │ │ │ ├── events.component.html │ │ │ ├── events.component.scss │ │ │ ├── events.component.spec.ts │ │ │ └── events.component.ts │ │ ├── manifest │ │ │ ├── manifest.component.html │ │ │ ├── manifest.component.scss │ │ │ ├── manifest.component.spec.ts │ │ │ └── manifest.component.ts │ │ ├── resources │ │ │ ├── resources.component.html │ │ │ ├── resources.component.scss │ │ │ ├── resources.component.spec.ts │ │ │ └── resources.component.ts │ │ ├── scale-service │ │ │ ├── scale-service.component.html │ │ │ ├── scale-service.component.scss │ │ │ ├── scale-service.component.spec.ts │ │ │ └── scale-service.component.ts │ │ ├── service-routing.module.ts │ │ └── service.module.ts │ │ └── system-applications │ │ ├── SystemApplicationBase.ts │ │ ├── base │ │ ├── base.component.html │ │ ├── base.component.scss │ │ ├── base.component.spec.ts │ │ └── base.component.ts │ │ ├── essentials │ │ ├── essentials.component.html │ │ ├── essentials.component.scss │ │ ├── essentials.component.spec.ts │ │ └── essentials.component.ts │ │ ├── system-applications-routing.module.ts │ │ └── system-applications.module.ts ├── assets │ ├── .gitkeep │ ├── FileGray.svg │ ├── badge-error.svg │ ├── badge-ok.svg │ ├── badge-unknown.svg │ ├── badge-warning.svg │ ├── favicon.svg │ ├── logout.svg │ └── seed.svg ├── environments │ ├── environment.accesstesting.ts │ ├── environment.prod.ts │ └── environment.ts ├── favicon.png ├── index.html ├── main.ts ├── mif │ ├── icons.min.css │ └── mif.ttf ├── polyfills.ts ├── styles.scss └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/.github/codeql/codeql-config.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /sfx.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/sfx.code-workspace -------------------------------------------------------------------------------- /src/Sfx-Proxy/.gitignore: -------------------------------------------------------------------------------- 1 | localsettings.json -------------------------------------------------------------------------------- /src/Sfx-Proxy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/Sfx-Proxy/appsettings.json -------------------------------------------------------------------------------- /src/Sfx-Proxy/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/Sfx-Proxy/package-lock.json -------------------------------------------------------------------------------- /src/Sfx-Proxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/Sfx-Proxy/package.json -------------------------------------------------------------------------------- /src/Sfx-Proxy/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/Sfx-Proxy/proxy.js -------------------------------------------------------------------------------- /src/SfxWeb/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/.browserslistrc -------------------------------------------------------------------------------- /src/SfxWeb/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/.editorconfig -------------------------------------------------------------------------------- /src/SfxWeb/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/.eslintrc.json -------------------------------------------------------------------------------- /src/SfxWeb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/.gitignore -------------------------------------------------------------------------------- /src/SfxWeb/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/.vscode/launch.json -------------------------------------------------------------------------------- /src/SfxWeb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/README.md -------------------------------------------------------------------------------- /src/SfxWeb/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/angular.json -------------------------------------------------------------------------------- /src/SfxWeb/combined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/combined.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress.config.ts -------------------------------------------------------------------------------- /src/SfxWeb/cypress/coverage.webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/coverage.webpack.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/app.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/app.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/appType.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/appType.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/apps.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/apps.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/cluster.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/cluster.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/deployedApplication.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/deployedApplication.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/deployedCodePackages.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/deployedCodePackages.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/deployedReplica.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/deployedReplica.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/deployedService.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/deployedService.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/header.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/header.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/network.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/network.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/node.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/node.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/nodes.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/nodes.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/partition.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/partition.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/replica.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/replica.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/service.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/service.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/sharedComponent.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/sharedComponent.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/tree.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/tree.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/e2e/util.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/e2e/util.cy.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/aad.json: -------------------------------------------------------------------------------- 1 | {"type":"","metadata":{}} -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/app-page/app-arm-managed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/app-page/app-arm-managed.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/app-page/app-events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/app-page/app-events.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/app-page/app-health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/app-page/app-health.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/app-page/app-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/app-page/app-manifest.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/app-page/app-type-excluded-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/app-page/app-type-excluded-params.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/app-page/app-type-upgrading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/app-page/app-type-upgrading.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/app-page/app-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/app-page/app-type.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/app-page/events.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/app-page/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/app-page/manifest.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/app-page/service-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/app-page/service-types.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/app-page/services-arm-managed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/app-page/services-arm-managed.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/app-page/services-with-disabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/app-page/services-with-disabled.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/app-page/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/app-page/services.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/app-page/upgrade-in-progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/app-page/upgrade-in-progress.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/app-page/upgrade-progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/app-page/upgrade-progress.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/appType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/appType.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/applications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/applications.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/apps-page/upgrading-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/apps-page/upgrading-app.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/apps-page/upgrading-apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/apps-page/upgrading-apps.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/backup-restore/backup-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/backup-restore/backup-policy.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/cluster-page/clustermap/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/cluster-page/clustermap/nodes.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/cluster-page/eventstore/cluster-events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/cluster-page/eventstore/cluster-events.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/cluster-page/imagestore/base-directory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/cluster-page/imagestore/base-directory.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/cluster-page/imagestore/load-size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/cluster-page/imagestore/load-size.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/cluster-page/naming/naming-partitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/cluster-page/naming/naming-partitions.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/cluster-page/node-health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/cluster-page/node-health.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/cluster-page/nodes-1-warning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/cluster-page/nodes-1-warning.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/cluster-page/repair-jobs/in-progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/cluster-page/repair-jobs/in-progress.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/cluster-page/repair-jobs/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/cluster-page/repair-jobs/simple.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/cluster-page/upgrade/failed-upgrade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/cluster-page/upgrade/failed-upgrade.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/cluster-page/upgrade/get-partition-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/cluster-page/upgrade/get-partition-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/cluster-page/upgrade/get-service-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/cluster-page/upgrade/get-service-name.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/cluster-page/upgrade/in-progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/cluster-page/upgrade/in-progress.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/clusterHealth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/clusterHealth.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/clusterHealthChunk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/clusterHealthChunk.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/clusterManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/clusterManifest.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-app-page/deployed-app-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-app-page/deployed-app-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-app-page/deployed-apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-app-page/deployed-apps.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-app-page/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-app-page/health.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-app-page/service-packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-app-page/service-packages.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-code-package/code-packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-code-package/code-packages.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-code-package/container-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-code-package/container-logs.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-code-package/deployed-apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-code-package/deployed-apps.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-code-package/partition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-code-package/partition.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-code-package/replicas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-code-package/replicas.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-code-package/service-packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-code-package/service-packages.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-replica/code-packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-replica/code-packages.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-replica/deployed-apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-replica/deployed-apps.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-replica/partition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-replica/partition.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-replica/replica-details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-replica/replica-details.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-replica/replicas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-replica/replicas.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-replica/service-packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-replica/service-packages.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-replica/view-replica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-replica/view-replica.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-service/deployed-apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-service/deployed-apps.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-service/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-service/health.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-service/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-service/manifest.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-service/service-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-service/service-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/deployed-service/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/deployed-service/services.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/empty-list.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/emptyRepairJobs.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/failed-events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/failed-events.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/manifestRepairManagerDisabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/manifestRepairManagerDisabled.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/node-load/get-node-load-information.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/node-load/get-node-load-information.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/node-page/Error-node-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/node-page/Error-node-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/node-page/Error-nodes-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/node-page/Error-nodes-list.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/node-page/Ok-nodes-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/node-page/Ok-nodes-list.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/node-page/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/node-page/apps.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/node-page/deactivated-node-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/node-page/deactivated-node-list.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/node-page/deactivated-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/node-page/deactivated-node.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/node-page/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/node-page/health.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/node-page/node-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/node-page/node-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/node-page/node-list-seed-node-quorom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/node-page/node-list-seed-node-quorom.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/node-page/repair-jobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/node-page/repair-jobs.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/nodes.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/partition-page/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/partition-page/health.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/partition-page/load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/partition-page/load.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/partition-page/partitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/partition-page/partitions.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/partition-page/replica-detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/partition-page/replica-detail.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/partition-page/replicas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/partition-page/replicas.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/partition-page/stateful-partition-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/partition-page/stateful-partition-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/partition-page/stateless-partition-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/partition-page/stateless-partition-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/replica-page/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/replica-page/health.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/replica-page/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/replica-page/services.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/replica-page/stateful-partition-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/replica-page/stateful-partition-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/replica-page/stateful-replica-detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/replica-page/stateful-replica-detail.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/replica-page/stateful-replica-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/replica-page/stateful-replica-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/replica-page/stateful-replicas-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/replica-page/stateful-replicas-list.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/replica-page/stateless-partition-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/replica-page/stateless-partition-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/replica-page/stateless-replica-detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/replica-page/stateless-replica-detail.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/replica-page/stateless-replica-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/replica-page/stateless-replica-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/replica-page/stateless-replicas-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/replica-page/stateless-replicas-list.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/service-page/service-arm-managed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/service-page/service-arm-managed.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/service-page/service-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/service-page/service-description.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/service-page/service-health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/service-page/service-health.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/service-page/service-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/service-page/service-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/service-page/service-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/service-page/service-manifest.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/service-page/service-partitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/service-page/service-partitions.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/service-page/service-stateless-health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/service-page/service-stateless-health.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/service-page/service-stateless-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/service-page/service-stateless-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/system-service/coordinated-infra-guid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/system-service/coordinated-infra-guid.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/system-service/coordinated-non-guid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/system-service/coordinated-non-guid.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/system-service/cross-az-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/system-service/cross-az-infra.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/system-service/cross-az-nodes-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/system-service/cross-az-nodes-4.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/system-service/cross-az-nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/system-service/cross-az-nodes.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/system-service/infra-service-details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/system-service/infra-service-details.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/system-service/infra-service-health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/system-service/infra-service-health.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/system-service/infra-service-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/system-service/infra-service-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/system-service/infra-service-partitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/system-service/infra-service-partitions.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/system-service/infrastructure-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/system-service/infrastructure-data.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/system-service/system-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/system-service/system-services.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/systemApplicationHealth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/systemApplicationHealth.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/systemApps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/systemApps.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/upgrade-in-progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/upgrade-in-progress.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/upgradeProgress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/upgradeProgress.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/visualObjectsApplicationType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/visualObjectsApplicationType.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/aad.json: -------------------------------------------------------------------------------- 1 | {"type":"","metadata":{}} -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/app-page/app-events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/app-page/app-events.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/app-page/app-health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/app-page/app-health.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/app-page/app-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/app-page/app-manifest.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/app-page/app-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/app-page/app-type.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/app-page/service-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/app-page/service-types.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/app-page/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/app-page/services.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/app-page/upgrade-progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/app-page/upgrade-progress.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/appType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/appType.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/applications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/applications.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/clusterHealth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/clusterHealth.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/clusterHealthChunk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/clusterHealthChunk.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/clusterManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/clusterManifest.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-app-page/deployed-app-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-app-page/deployed-app-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-app-page/deployed-apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-app-page/deployed-apps.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-app-page/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-app-page/health.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-app-page/service-packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-app-page/service-packages.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-code-package/code-packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-code-package/code-packages.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-code-package/deployed-apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-code-package/deployed-apps.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-code-package/replicas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-code-package/replicas.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-replica/code-packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-replica/code-packages.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-replica/deployed-apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-replica/deployed-apps.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-replica/partition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-replica/partition.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-replica/replica-details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-replica/replica-details.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-replica/replicas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-replica/replicas.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-replica/service-packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-replica/service-packages.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-replica/view-replica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-replica/view-replica.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-service/deployed-apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-service/deployed-apps.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-service/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-service/health.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-service/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-service/manifest.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-service/service-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-service/service-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/deployed-service/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/deployed-service/services.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/empty-list.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/emptyRepairJobs.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/failed-events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/failed-events.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/manifestRepairManagerDisabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/manifestRepairManagerDisabled.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/node-load/get-node-load-information.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/node-load/get-node-load-information.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/node-page/Ok-nodes-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/node-page/Ok-nodes-list.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/node-page/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/node-page/apps.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/node-page/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/node-page/health.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/node-page/node-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/node-page/node-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/nodes.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/replica-page/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/replica-page/health.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/replica-page/stateful-replica-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/replica-page/stateful-replica-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/replica-page/stateful-replicas-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/replica-page/stateful-replicas-list.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/service-page/app-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/service-page/app-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/service-page/service-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/service-page/service-description.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/service-page/service-health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/service-page/service-health.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/service-page/service-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/service-page/service-info.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/service-page/service-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/service-page/service-manifest.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/service-page/service-partitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/service-page/service-partitions.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/service-page/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/service-page/services.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/systemApplicationHealth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/systemApplicationHealth.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/systemApps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/systemApps.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/upgrade-in-progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/upgrade-in-progress.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/upgradeProgress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/upgradeProgress.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/fixtures/xss/visualObjectsApplicationType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/fixtures/xss/visualObjectsApplicationType.json -------------------------------------------------------------------------------- /src/SfxWeb/cypress/plugins/cy-ts-preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/plugins/cy-ts-preprocessor.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/plugins/index.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/support/commands.js -------------------------------------------------------------------------------- /src/SfxWeb/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/cypress/support/e2e.js -------------------------------------------------------------------------------- /src/SfxWeb/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/e2e/protractor.conf.js -------------------------------------------------------------------------------- /src/SfxWeb/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/e2e/src/app.po.ts -------------------------------------------------------------------------------- /src/SfxWeb/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/e2e/tsconfig.json -------------------------------------------------------------------------------- /src/SfxWeb/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/karma.conf.js -------------------------------------------------------------------------------- /src/SfxWeb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/package-lock.json -------------------------------------------------------------------------------- /src/SfxWeb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/package.json -------------------------------------------------------------------------------- /src/SfxWeb/patches/moment+2.30.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/patches/moment+2.30.1.patch -------------------------------------------------------------------------------- /src/SfxWeb/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/proxy.conf.json -------------------------------------------------------------------------------- /src/SfxWeb/replaceEnvVars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/replaceEnvVars.js -------------------------------------------------------------------------------- /src/SfxWeb/sfx.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/sfx.nuspec -------------------------------------------------------------------------------- /src/SfxWeb/src/Styles/Themes/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/Styles/Themes/dark.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/Styles/Themes/light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/Styles/Themes/light.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/Styles/_app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/Styles/_app.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/Styles/_calender.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/Styles/_calender.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/Styles/_detail_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/Styles/_detail_table.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/Styles/_global_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/Styles/_global_tooltip.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/Styles/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/Styles/_modal.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/Styles/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/Styles/_navbar.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/Styles/_noui_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/Styles/_noui_tooltip.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/Styles/_tiles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/Styles/_tiles.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/Styles/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/Styles/_vars.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/Styles/_vis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/Styles/_vis.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Common/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Common/Constants.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Common/ResponseMessageHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Common/ResponseMessageHandlers.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/Action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/Action.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/ActionCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/ActionCollection.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/Aad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/Aad.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/Application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/Application.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/ApplicationType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/ApplicationType.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/Base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/Base.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/Cluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/Cluster.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/DeployedApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/DeployedApplication.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/DeployedCodePackage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/DeployedCodePackage.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/DeployedReplica.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/DeployedReplica.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/DeployedServicePackage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/DeployedServicePackage.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/HealthEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/HealthEvent.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/ImageStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/ImageStore.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/Node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/Node.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/Partition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/Partition.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/PartitionBackupInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/PartitionBackupInfo.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/Replica.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/Replica.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/Service.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/Shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/Shared.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/cluster.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/cluster.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/collections/CollectionBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/collections/CollectionBase.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/collections/Collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/collections/Collections.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/collections/NodeCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/collections/NodeCollection.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/collections/RepairTaskCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/collections/RepairTaskCollection.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/collections/ServiceCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/collections/ServiceCollection.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/completedInfrastructureJob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/completedInfrastructureJob.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/infrastructureJob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/infrastructureJob.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/networkDebugger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/networkDebugger.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/repairTask.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/repairTask.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/DataModels/repairTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/DataModels/repairTask.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/HealthChunkRawDataTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/HealthChunkRawDataTypes.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/ListSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/ListSettings.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/PowershellCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/PowershellCommand.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/RawDataTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/RawDataTypes.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/eventstore/Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/eventstore/Events.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/eventstore/RelatedEventsConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/eventstore/RelatedEventsConfigs.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/eventstore/periodicEventParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/eventstore/periodicEventParser.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/eventstore/rcaEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/eventstore/rcaEngine.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/eventstore/rcaEngineConfigurations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/eventstore/rcaEngineConfigurations.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/eventstore/timelineGenerator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/eventstore/timelineGenerator.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Models/eventstore/timelineGenerators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Models/eventstore/timelineGenerators.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Utils/CollectionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Utils/CollectionUtils.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Utils/HtmlUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Utils/HtmlUtils.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Utils/IdGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Utils/IdGenerator.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Utils/IdUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Utils/IdUtils.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Utils/StringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Utils/StringUtils.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Utils/TimeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Utils/TimeUtils.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Utils/Transforms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Utils/Transforms.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Utils/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Utils/Utils.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Utils/ValueResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Utils/ValueResolver.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Utils/deactivationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Utils/deactivationUtils.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Utils/healthUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Utils/healthUtils.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/Utils/healthUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/Utils/healthUtils.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/ViewModels/BaseController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/ViewModels/BaseController.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/ViewModels/DashboardViewModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/ViewModels/DashboardViewModels.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/ViewModels/MetricsViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/ViewModels/MetricsViewModel.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/ViewModels/Modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/ViewModels/Modal.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/ViewModels/TreeNodeGroupViewModel.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/ViewModels/TreeNodeGroupViewModel.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/ViewModels/TreeNodeGroupViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/ViewModels/TreeNodeGroupViewModel.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/ViewModels/TreeTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/ViewModels/TreeTypes.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/ViewModels/TreeViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/ViewModels/TreeViewModel.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/ViewModels/detail-table-base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/ViewModels/detail-table-base.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/app-initializers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/app-initializers.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/app.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/app.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/app.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/app.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/error-handling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/error-handling.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/http-interceptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/http-interceptor.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/http-interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/http-interceptor.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/action-dialog/DialogBodyComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/action-dialog/DialogBodyComponent.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/action-dialog/action-dialog.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/action-dialog/action-dialog.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/action-dialog/action-dialog/action-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/action-dialog/dialog-body.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/action-dialog/dialog-body.directive.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/action-dialog/message-with-confirmation/message-with-confirmation.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/action-dialog/message-wth-warning/message-with-warning.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/action-dialog/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/action-dialog/utils.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/apptypes-viewer/apptype-viewer/apptype-viewer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/apptypes-viewer/apptypes-viewer.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/apptypes-viewer/apptypes-viewer.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/backup-restore/backup-restore.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/backup-restore/backup-restore.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/backup-restore/get-backup-enabled-entities/get-backup-enabled-entities.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/backup-restore/partition-disable-back-up/partition-disable-back-up.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/backup-restore/partition-enable-back-up/partition-enable-back-up.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/backup-restore/storage-form/storage-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/backup-restore/view-backup/view-backup.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/charts/bar-chart/bar-chart.component.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/charts/bar-chart/bar-chart.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/charts/bar-chart/bar-chart.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/charts/bar-chart/bar-chart.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/charts/bar-chart/bar-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/charts/bar-chart/bar-chart.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/charts/chart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/charts/chart.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/charts/charts.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/charts/charts.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/charts/dashboard-text-tile/dashboard-text-tile.component.scss: -------------------------------------------------------------------------------- 1 | @import "../chart.scss"; -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/charts/dashboard-tile/dashboard-tile.component.scss: -------------------------------------------------------------------------------- 1 | @import "../chart.scss"; -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/charts/health-chart/health-chart.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/charts/health-chart/health-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/charts/health-chart/health-chart.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/charts/tile-wrapper/tile-wrapper.component.scss: -------------------------------------------------------------------------------- 1 | @import "../chart.scss"; -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/charts/tile-wrapper/tile-wrapper.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/charts/tile-wrapper/tile-wrapper.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/clustermap/clustermap.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/clustermap/clustermap.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/clustermap/map/map.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/clustermap/map/map.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/clustermap/map/map.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/clustermap/map/map.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/clustermap/map/map.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/clustermap/map/map.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/clustermap/node-list/node-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/clustermap/node-list/node-list.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/clustermap/node-list/node-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/clustermap/node-list/node-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/clustermap/node-list/node-list.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/clustermap/status-tile/status-tile.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/concurrent-events-visualization/rca-summary/rca-summary.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/concurrent-events-visualization/relation-viewer/relation-viewer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/detail-list-templates/arm-managed/arm-managed.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/detail-list-templates/custom-track-by.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/detail-list-templates/custom-track-by.pipe.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/detail-list-templates/detail-table-resolver/detail-table-resolver.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/detail-list-templates/export-modal/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/detail-list-templates/export-modal/utils.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/detail-list-templates/healthbadge/healthbadge.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/detail-list-templates/hyper-link/hyper-link.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/detail-list-templates/pager/pager.component.html: -------------------------------------------------------------------------------- 1 |

pager works!

2 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/detail-list-templates/pager/pager.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/detail-list-templates/question-tool-tip/question-tool-tip.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/detail-list-templates/resolver.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/detail-list-templates/resolver.directive.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/detail-list-templates/shorten/shorten.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/detail-list-templates/utc-timestamp/utc-timestamp.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/event-store/event-store.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/event-store/event-store.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/event-store/rca-visualization/rca-visualization.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/event-store/row-display/row-display.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/event-store/timeline/timeline.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/event-store/timeline/timeline.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/event-store/timeline/timeline.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/event-store/timeline/timeline.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/event-store/timeline/timeline.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/event-store/timeline/timeline.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/event-store/visualization.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/event-store/visualization.directive.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/event-store/visualizationComponents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/event-store/visualizationComponents.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/health-state/health-state.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/health-state/health-state.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/health-state/health-viewer/health-viewer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/imagestore/display-name-column/display-name-column.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/imagestore/display-size-column/display-size-column.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/imagestore/folder-actions/folder-actions.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/imagestore/imagestore.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/imagestore/imagestore.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/infrastructure-job/strip-prefix.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/infrastructure-job/strip-prefix.pipe.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/node-deactivation/node-deactivation.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/node-deactivation/node-deactivation.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/partition-replication/replication-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/partition-replication/replication-utils.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/repair-tasks/repair-job-chart/repair-job-chart.component.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/repair-tasks/repair-job-chart/repair-job-chart.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/repair-tasks/repair-tasks.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/repair-tasks/repair-tasks.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/time-picker/double-slider/double-slider.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/time-picker/time-picker.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/time-picker/time-picker.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/tree/selected-node.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/tree/selected-node.directive.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/tree/tree-node/tree-node.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/tree/tree-node/tree-node.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/tree/tree-node/tree-node.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/tree/tree-node/tree-node.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/tree/tree-node/tree-node.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/tree/tree-node/tree-node.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/tree/tree-node/tree-node.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/tree/tree-node/tree-node.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/tree/tree-view/tree-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/tree/tree-view/tree-view.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/tree/tree-view/tree-view.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/tree/tree-view/tree-view.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/tree/tree-view/tree-view.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/tree/tree-view/tree-view.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/tree/tree-view/tree-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/tree/tree-view/tree-view.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/tree/tree.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/tree/tree.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/upgrade-progress/node-progress/node-progress.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/upgrade-progress/partition-cache.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/upgrade-progress/partition-cache.service.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/upgrade-progress/safety-checks/safety-checks.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/upgrade-progress/upgrade-domain-progress/upgrade-domain-progress.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/modules/upgrade-progress/upgrade-progress.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/modules/upgrade-progress/upgrade-progress.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/adal.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/adal.service.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/adal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/adal.service.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/data.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/data.service.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/data.service.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/focus.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/focus.service.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/focus.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/focus.service.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/message.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/message.service.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/message.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/message.service.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/refresh.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/refresh.service.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/refresh.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/refresh.service.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/rest-client.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/rest-client.service.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/rest-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/rest-client.service.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/routes.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/routes.service.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/routes.service.testData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/routes.service.testData.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/routes.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/routes.service.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/settings.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/settings.service.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/settings.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/settings.service.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/standalone-integration.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/standalone-integration.service.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/status-warning.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/status-warning.service.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/status-warning.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/status-warning.service.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/storage.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/storage.service.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/storage.service.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/telemetry.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/telemetry.service.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/telemetry.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/telemetry.service.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/timeline-generator-factory.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/timeline-generator-factory.service.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/tree.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/tree.service.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/services/tree.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/services/tree.service.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/arm-warning/arm-warning.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/arm-warning/arm-warning.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/arm-warning/arm-warning.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/candy-bar-compact/candy-bar-compact.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/check-box/check-box.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/check-box/check-box.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/check-box/check-box.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/check-box/check-box.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/check-box/check-box.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/check-box/check-box.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/clip-board/clip-board.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/clip-board/clip-board.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/clip-board/clip-board.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/clip-board/clip-board.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/cluster-upgrade-banner/cluster-upgrade-banner.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/detail-view-part/detail-view-part.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/display-duration/display-duration.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/display-time/display-time.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/input/input.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/input/input.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/input/input.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/input/input.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/input/input.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/local-time/local-time.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/manifest/manifest.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/manifest/manifest.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/manifest/manifest.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/manifest/manifest.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/manifest/manifest.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/manifest/manifest.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/navbar/navbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/navbar/navbar.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/navbar/navbar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/navbar/navbar.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/navbar/navbar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/navbar/navbar.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/navbar/navbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/navbar/navbar.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/replica-address/replica-address.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/toggle/toggle.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/toggle/toggle.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/toggle/toggle.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/toggle/toggle.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/toggle/toggle.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/toggle/toggle.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/toggle/toggle.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/toggle/toggle.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/warning/warning.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/warning/warning.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/warning/warning.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/warning/warning.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/component/warning/warning.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/component/warning/warning.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/directive/drag.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/directive/drag.directive.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/directive/drag.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/directive/drag.directive.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/directive/focusable.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/directive/focusable.directive.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/pipes/format-date.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/pipes/format-date.pipe.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/pipes/format-date.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/pipes/format-date.pipe.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/telemetry-snack-bar/telemetry-snack-bar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/BaseView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/BaseView.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application-type/ApplicationTypeBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application-type/ApplicationTypeBase.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application-type/application-type.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application-type/application-type.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application-type/base/base.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application-type/base/base.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application-type/base/base.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application-type/base/base.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application-type/base/base.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application-type/base/base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application-type/base/base.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application-type/commands/commands.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application-type/create-application/create-application.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application-type/details/details.component.scss: -------------------------------------------------------------------------------- 1 | table { 2 | width: 100%; 3 | } -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application-type/essentials/essentials.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/action-row/action-row.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/application-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/application-routing.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/application.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/application.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/applicationBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/applicationBase.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/backup/backup.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/backup/backup.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/backup/backup.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/backup/backup.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/backup/backup.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/backup/backup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/backup/backup.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/base/base.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/base/base.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/base/base.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/base/base.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/base/base.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/base/base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/base/base.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/commands/commands.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/commands/commands.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/commands/commands.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/commands/commands.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/commands/commands.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/deployments/deployments.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/details/details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/details/details.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/details/details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/details/details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/details/details.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/events/events.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/events/events.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/events/events.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/events/events.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/events/events.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/events/events.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/events/events.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/manifest/manifest.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/manifest/manifest.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/manifest/manifest.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/application/manifest/manifest.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/application/manifest/manifest.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/all/all.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/applications/all/all.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/all/all.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/all/all.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/applications/all/all.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/all/all.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/applications/all/all.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/applications-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/applications/applications-routing.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/applications.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/applications/applications.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/applicationsBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/applications/applicationsBase.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/apptypes/apptypes.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/apptypes/apptypes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/applications/apptypes/apptypes.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/base/base.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/applications/base/base.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/base/base.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/base/base.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/applications/base/base.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/base/base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/applications/base/base.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/commands/commands.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/commands/commands.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/applications/commands/commands.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/events/events.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/applications/events/events.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/events/events.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/events/events.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/applications/events/events.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/events/events.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/applications/events/events.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/upgrading/upgrading.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/applications/view-upgrades-list-item/view-upgrades-list-item.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/action-create-backup-policy/action-create-backup-policy.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/backups/backups.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/backups/backups.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/backups/backups.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/backups/backups.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/backups/backups.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/backups/backups.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/backups/backups.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/base/base.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/base/base.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/base/base.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/base/base.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/base/base.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/base/base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/base/base.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/cluster-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/cluster-routing.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/cluster.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/cluster.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/clustermap/clustermap.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/clustermap/clustermap.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/clustermap/clustermap.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/clustermap/clustermap.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/clustermap/clustermap.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/commands/commands.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/commands/commands.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/commands/commands.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/commands/commands.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/commands/commands.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/details/details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/details/details.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/details/details.component.scss: -------------------------------------------------------------------------------- 1 | .cell-wrapper { 2 | margin-bottom: 10px; 3 | } -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/details/details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/details/details.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/details/details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/details/details.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/essentials/essentials.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/essentials/essentials.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/essentials/essentials.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/essentials/essentials.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/essentials/essentials.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/essentials/essentials.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/events/events.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/events/events.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/events/events.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/events/events.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/events/events.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/events/events.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/events/events.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/imagestore/imagestore.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/imagestore/imagestore.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/imagestore/imagestore.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/imagestore/imagestore.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/imagestore/imagestore.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/manifest/manifest.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/manifest/manifest.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/manifest/manifest.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/manifest/manifest.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/manifest/manifest.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/manifest/manifest.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/manifest/manifest.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/metric-tile/metric-tile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/metric-tile/metric-tile.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/metrics/metrics.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/metrics/metrics.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/metrics/metrics.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/metrics/metrics.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/metrics/metrics.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/cluster/metrics/metrics.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/cluster/naming-viewer-page/naming-viewer-page.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/debugging/debugging-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/debugging/debugging-routing.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/debugging/debugging.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/debugging/debugging.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/debugging/nested-table/nested-table.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-application/base/base.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-application/base/base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/deployed-application/base/base.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-application/commands/commands.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-application/details/details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-application/essentials/essentials.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-code-package/base/base.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-code-package/base/base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/deployed-code-package/base/base.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-code-package/details/details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-code-package/essentials/essentials.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-code-packages/base/base.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-replica/DeployedReplicaBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/deployed-replica/DeployedReplicaBase.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-replica/base/base.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/deployed-replica/base/base.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-replica/base/base.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-replica/base/base.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/deployed-replica/base/base.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-replica/base/base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/deployed-replica/base/base.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-replica/commands/commands.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-replica/deployed-replica.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/deployed-replica/deployed-replica.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-replica/details/details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-replica/essentials/essentials.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-replicas/base/base.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/deployed-replicas/base/base.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-replicas/base/base.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-replicas/base/base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/deployed-replicas/base/base.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-service-package/base/base.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-service-package/commands/commands.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-service-package/details/details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-service-package/essentials/essentials.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/deployed-service-package/manifest/manifest.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/NodeBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/NodeBase.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/base/base.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/base/base.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/base/base.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/base/base.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/base/base.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/base/base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/base/base.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/commands/commands.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/commands/commands.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/commands/commands.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/commands/commands.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/commands/commands.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/details/details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/details/details.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/details/details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/details/details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/details/details.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/details/details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/details/details.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/essentials/essentials.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/essentials/essentials.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/essentials/essentials.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/essentials/essentials.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/essentials/essentials.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/essentials/essentials.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/essentials/essentials.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/essentials/essentials.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/events/events.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/events/events.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/events/events.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/events/events.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/events/events.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/events/events.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/events/events.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/node-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/node-routing.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/node/node.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/node/node.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/all-nodes/all-nodes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/nodes/all-nodes/all-nodes.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/all-nodes/all-nodes.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/all-nodes/all-nodes.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/nodes/all-nodes/all-nodes.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/all-nodes/all-nodes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/nodes/all-nodes/all-nodes.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/base/base.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/nodes/base/base.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/base/base.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/base/base.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/nodes/base/base.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/base/base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/nodes/base/base.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/commands/commands.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/nodes/commands/commands.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/commands/commands.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/commands/commands.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/nodes/commands/commands.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/events/events.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/nodes/events/events.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/events/events.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/events/events.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/nodes/events/events.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/events/events.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/nodes/events/events.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/nodes-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/nodes/nodes-routing.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/nodes/nodes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/nodes/nodes.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/PartitionBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/PartitionBase.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/backupinfo/backupinfo.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/backupinfo/backupinfo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/backupinfo/backupinfo.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/backups/backups.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/backups/backups.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/backups/backups.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/backups/backups.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/backups/backups.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/backups/backups.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/backups/backups.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/base/base.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/base/base.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/base/base.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/base/base.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/base/base.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/base/base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/base/base.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/commands/commands.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/commands/commands.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/commands/commands.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/commands/commands.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/commands/commands.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/details/details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/details/details.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/details/details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/details/details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/details/details.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/details/details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/details/details.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/essentials/essentials.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/essentials/essentials.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/events/events.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/events/events.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/events/events.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/events/events.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/events/events.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/events/events.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/events/events.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/partition-restore-back-up/partition-restore-back-up.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/partition-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/partition-routing.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/partition-trigger-back-up/partition-trigger-back-up.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/partition/partition.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/partition/partition.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/ReplicaBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/replica/ReplicaBase.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/base/base.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/replica/base/base.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/base/base.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/base/base.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/replica/base/base.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/base/base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/replica/base/base.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/commands/commands.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/replica/commands/commands.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/commands/commands.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/commands/commands.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/replica/commands/commands.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/details/details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/replica/details/details.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/details/details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/details/details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/replica/details/details.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/details/details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/replica/details/details.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/essentials/essentials.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/replica/essentials/essentials.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/essentials/essentials.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/essentials/essentials.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/replica/essentials/essentials.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/events/events.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/replica/events/events.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/events/events.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/events/events.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/replica/events/events.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/events/events.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/replica/events/events.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/replica-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/replica/replica-routing.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/replica/replica.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/replica/replica.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/ServiceBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/ServiceBase.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/backup/backup.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/backup/backup.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/backup/backup.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/backup/backup.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/backup/backup.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/backup/backup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/backup/backup.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/base/base.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/base/base.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/base/base.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/base/base.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/base/base.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/base/base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/base/base.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/commands/commands.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/commands/commands.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/commands/commands.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/commands/commands.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/commands/commands.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/details/details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/details/details.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/details/details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/details/details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/details/details.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/details/details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/details/details.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/essentials/essentials.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/essentials/essentials.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/essentials/essentials.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/essentials/essentials.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/essentials/essentials.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/essentials/essentials.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/events/events.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/events/events.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/events/events.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/events/events.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/events/events.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/events/events.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/events/events.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/manifest/manifest.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/manifest/manifest.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/manifest/manifest.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/manifest/manifest.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/manifest/manifest.component.spec.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/manifest/manifest.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/manifest/manifest.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/resources/resources.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/resources/resources.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/resources/resources.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/resources/resources.component.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/resources/resources.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/resources/resources.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/scale-service/scale-service.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/service-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/service-routing.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/service/service.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/service/service.module.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/system-applications/SystemApplicationBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/system-applications/SystemApplicationBase.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/system-applications/base/base.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/system-applications/base/base.component.html -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/system-applications/base/base.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/system-applications/base/base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/app/views/system-applications/base/base.component.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/app/views/system-applications/essentials/essentials.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SfxWeb/src/assets/FileGray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/assets/FileGray.svg -------------------------------------------------------------------------------- /src/SfxWeb/src/assets/badge-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/assets/badge-error.svg -------------------------------------------------------------------------------- /src/SfxWeb/src/assets/badge-ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/assets/badge-ok.svg -------------------------------------------------------------------------------- /src/SfxWeb/src/assets/badge-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/assets/badge-unknown.svg -------------------------------------------------------------------------------- /src/SfxWeb/src/assets/badge-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/assets/badge-warning.svg -------------------------------------------------------------------------------- /src/SfxWeb/src/assets/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/assets/favicon.svg -------------------------------------------------------------------------------- /src/SfxWeb/src/assets/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/assets/logout.svg -------------------------------------------------------------------------------- /src/SfxWeb/src/assets/seed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/assets/seed.svg -------------------------------------------------------------------------------- /src/SfxWeb/src/environments/environment.accesstesting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/environments/environment.accesstesting.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/environments/environment.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/favicon.png -------------------------------------------------------------------------------- /src/SfxWeb/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/index.html -------------------------------------------------------------------------------- /src/SfxWeb/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/main.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/mif/icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/mif/icons.min.css -------------------------------------------------------------------------------- /src/SfxWeb/src/mif/mif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/mif/mif.ttf -------------------------------------------------------------------------------- /src/SfxWeb/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/polyfills.ts -------------------------------------------------------------------------------- /src/SfxWeb/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/styles.scss -------------------------------------------------------------------------------- /src/SfxWeb/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/src/test.ts -------------------------------------------------------------------------------- /src/SfxWeb/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/tsconfig.app.json -------------------------------------------------------------------------------- /src/SfxWeb/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/tsconfig.json -------------------------------------------------------------------------------- /src/SfxWeb/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/service-fabric-explorer/HEAD/src/SfxWeb/tsconfig.spec.json --------------------------------------------------------------------------------