├── .browserslistrc ├── .circleci └── config.yml ├── .dockerignore ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── design-epic.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ └── semantic.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── CHANGELOG.md ├── CODEOWNERS ├── Makefile ├── README.md ├── __mocks__ └── @influxdata │ ├── flux-lsp-browser.ts │ └── flux.ts ├── assets ├── images │ ├── Alert.png │ ├── BlankFlow.png │ ├── Flux.png │ ├── Forum.svg │ ├── NotFoundBottom.png │ ├── SlackIcon.png │ ├── Task.png │ ├── auth-logo.svg │ ├── checkout-overlay--success.svg │ ├── cubo_doodle.svg │ ├── cubo_doodle_green.svg │ ├── dashboard-empty--dark.svg │ ├── dashboard-empty--light.svg │ ├── drag-n-drop.svg │ ├── favicon.ico │ ├── feedback-fill.svg │ ├── flows-empty.svg │ ├── iiot-webinar-banner.png │ ├── influxdbu.svg │ ├── logo.svg │ ├── plan-graphic--free.svg │ ├── plugin-simple.svg │ ├── radial-power-level.svg │ ├── sample-csv.png │ └── slack-fill.svg └── index.html ├── cypress.json ├── cypress ├── e2e │ ├── cloud │ │ ├── about.test.ts │ │ ├── billing.test.ts │ │ ├── buckets.test.ts │ │ ├── checkoutinaccessible.test.ts │ │ ├── checkoutpage.test.ts │ │ ├── communityTemplates.test.ts │ │ ├── createOrg.test.ts │ │ ├── dashboardsView.test.ts │ │ ├── deepLinks.test.ts │ │ ├── explorer.test.ts │ │ ├── flows.test.ts │ │ ├── geoOptions.test.ts │ │ ├── globalHeader.test.ts │ │ ├── helpBar.test.ts │ │ ├── operator.test.ts │ │ ├── operatorRO.test.ts │ │ ├── org-list.test.ts │ │ ├── releases.test.ts │ │ ├── scriptQueryBuilder.influxql.test.ts │ │ ├── scriptQueryBuilder.scriptsCrud.test.ts │ │ ├── usage.test.ts │ │ ├── userAccounts.test.ts │ │ ├── userProfile.multipleOrg.test.ts │ │ ├── userProfile.singleOrg.test.ts │ │ ├── users.test.ts │ │ └── zuoraOutage.test.ts │ ├── oss │ │ ├── dashboardsView.test.ts │ │ ├── explorer.test.ts │ │ ├── onboarding.test.ts │ │ ├── orgs.test.ts │ │ ├── scrapers.test.ts │ │ └── scriptsCrud.test.ts │ ├── shared │ │ ├── about.test.ts │ │ ├── adaptiveZoom.test.ts │ │ ├── annotations.band.test.ts │ │ ├── annotations.range.test.ts │ │ ├── annotations.singlestat.test.ts │ │ ├── annotations.xy.test.ts │ │ ├── arduino.test.ts │ │ ├── buckets.test.ts │ │ ├── checks.test.ts │ │ ├── dashboardsIndex.test.ts │ │ ├── dashboardsRefresh.test.ts │ │ ├── dashboardsVariables.test.ts │ │ ├── dashboardsView.test.ts │ │ ├── editor.test.ts │ │ ├── explorer.queries.graphs.test.ts │ │ ├── explorer.saving.test.ts │ │ ├── explorer.test.ts │ │ ├── explorer.timerange.test.ts │ │ ├── explorerVisualizations.test.ts │ │ ├── firstmile.tests.ts │ │ ├── flows.test.ts │ │ ├── flowsAlerts.test.ts │ │ ├── flowsSidebarExportToClipboard.test.ts │ │ ├── helpBar.test.ts │ │ ├── home.test.ts │ │ ├── influxCLI.test.ts │ │ ├── labels.test.ts │ │ ├── legends.test.ts │ │ ├── loadDataSources.test.ts │ │ ├── login.test.ts │ │ ├── nav.test.ts │ │ ├── notificationEndpoints.test.ts │ │ ├── notificationRules.test.ts │ │ ├── queryBuilder.test.ts │ │ ├── scriptQueryBuilder.datePicker.test.ts │ │ ├── scriptQueryBuilder.flux.test.ts │ │ ├── scriptQueryBuilder.results.test.ts │ │ ├── scriptQueryBuilder.sql.test.ts │ │ ├── secrets.test.ts │ │ ├── simpleTable.test.ts │ │ ├── tasks-searching.test.ts │ │ ├── tasks.pagination.test.ts │ │ ├── tasks.test.ts │ │ ├── tasks2.test.ts │ │ ├── telegrafPlugins.test.ts │ │ ├── telegrafs.test.ts │ │ ├── tokens.test.ts │ │ └── variables.test.ts │ └── util │ │ └── annotationsSetup.ts ├── fixtures │ ├── createOrg │ │ ├── allowanceContractFalse.json │ │ ├── allowanceContractTrue.json │ │ ├── allowanceFreeFalse.json │ │ ├── allowanceFreeTrue.json │ │ ├── allowancePAYGFalse.json │ │ ├── allowancePAYGTrue.json │ │ ├── clusters.json │ │ ├── orgContract.json │ │ ├── orgFree.json │ │ ├── orgPAYG.json │ │ ├── orgsBaseState.json │ │ ├── orgsUpdatedStateContract.json │ │ ├── orgsUpdatedStateFree.json │ │ └── orgsUpdatedStatePAYG.json │ ├── data.txt │ ├── data │ │ └── wumpus01.lp │ ├── endpoints.json │ ├── good-csv.csv │ ├── invalidSchema.json │ ├── missing-column-csv.csv │ ├── multiOrgAccounts1.json │ ├── multiOrgIdentity.json │ ├── multiOrgIdentityContract.json │ ├── multiOrgIdentityPAYG.json │ ├── multiOrgOrgs1.json │ ├── orgDetails.json │ ├── power_vars.json │ ├── routes.json │ ├── sampleNote.json │ ├── schema.csv │ ├── tokens.json │ ├── updateValidSchema1.json │ ├── validSchema1.json │ ├── view.json │ └── wumpusDurView.json ├── index.d.ts ├── plugins │ └── index.js ├── support │ ├── Utils.ts │ ├── commands.ts │ └── index.js └── tsconfig.json ├── docker ├── Dockerfile.chronograf ├── Dockerfile.chronograf.prod ├── Dockerfile.cypress ├── includes │ └── .keep └── nginx.conf ├── env.example ├── global.d.ts ├── index.d.ts ├── intl.d.ts ├── jest.config.js ├── jestSetup.ts ├── jsdom-custom.js ├── mocks ├── MockChild.tsx ├── dummyData.ts ├── flux │ └── apis │ │ └── index.ts ├── kapacitor │ └── apis │ │ └── index.ts ├── shared │ └── apis │ │ ├── env.ts │ │ ├── index.ts │ │ └── metaQuery.ts └── sources │ └── apis │ └── index.ts ├── package.json ├── project.garden.yml ├── scripts ├── checkout-repo.bash ├── publish-oss-release.bash ├── start_docker.sh ├── update-oss-master-release.bash └── upload_sourcemap.sh ├── src ├── App.tsx ├── Authenticate.tsx ├── Logout.tsx ├── Setup.tsx ├── accounts │ ├── AccountHeader.tsx │ ├── AccountPage.tsx │ ├── AccountPageStyles.scss │ ├── AccountTabContainer.scss │ ├── AccountTabContainer.tsx │ ├── AccountTabs.tsx │ ├── DeleteFreeAccount.tsx │ ├── DeleteFreeAccountOverlay.tsx │ ├── DeleteFreeAccountReasonsForm.scss │ ├── DeleteFreeAccountReasonsForm.tsx │ └── context │ │ ├── DeleteFreeAccountContext.tsx │ │ └── userAccount.tsx ├── alerting │ ├── actions │ │ ├── alertBuilder.ts │ │ └── thunks.ts │ ├── components │ │ ├── AlertHistoryControls.tsx │ │ ├── AlertHistoryIndex.scss │ │ ├── AlertHistoryIndex.tsx │ │ ├── AlertHistoryQueryParams.tsx │ │ ├── AlertingIndex.scss │ │ ├── AlertingIndex.tsx │ │ ├── AlertsColumn.test.tsx │ │ ├── AlertsColumn.tsx │ │ ├── LevelTableField.scss │ │ ├── LevelTableField.tsx │ │ ├── NotificationRuleTableField.tsx │ │ ├── SearchBar.scss │ │ ├── SearchBar.test.tsx │ │ ├── SearchBar.tsx │ │ ├── SentTableField.scss │ │ ├── SentTableField.tsx │ │ ├── TimeTableField.tsx │ │ └── builder │ │ │ ├── AlertBuilder.scss │ │ │ ├── AlertBuilder.tsx │ │ │ ├── DeadmanConditions.tsx │ │ │ ├── HelpButton.tsx │ │ │ ├── ThresholdCondition.test.tsx │ │ │ ├── ThresholdCondition.tsx │ │ │ ├── ThresholdConditions.tsx │ │ │ ├── ThresholdRangeInput.tsx │ │ │ ├── ThresholdStatement.tsx │ │ │ └── ThresholdValueInput.tsx │ ├── constants │ │ ├── history.ts │ │ └── index.ts │ ├── reducers │ │ ├── alertBuilder.test.ts │ │ └── alertBuilder.ts │ └── utils │ │ ├── activity.ts │ │ ├── history.test.ts │ │ ├── history.ts │ │ ├── statusEvents.test.ts │ │ ├── statusEvents.ts │ │ ├── vis.test.ts │ │ └── vis.ts ├── annotations │ ├── actions │ │ ├── creators.ts │ │ └── thunks.ts │ ├── api │ │ └── index.ts │ ├── components │ │ ├── AddAnnotationOverlay.tsx │ │ ├── AnnotationCard.tsx │ │ ├── AnnotationsControlBarToggleButton.tsx │ │ ├── AnnotationsExplainer.tsx │ │ ├── AnnotationsList.tsx │ │ ├── AnnotationsTab.test.tsx │ │ ├── AnnotationsTab.tsx │ │ ├── EditAnnotationOverlay.tsx │ │ ├── annotationForm │ │ │ ├── AnnotationForm.test.tsx │ │ │ ├── AnnotationForm.tsx │ │ │ ├── AnnotationMessageInput.tsx │ │ │ ├── AnnotationSummaryInput.tsx │ │ │ ├── AnnotationTimeInput.tsx │ │ │ └── annotationForm.scss │ │ ├── controlBar │ │ │ ├── AnnotationPill.tsx │ │ │ ├── AnnotationPills.scss │ │ │ └── AnnotationPills.tsx │ │ └── overlay │ │ │ └── AnnotationStreamOverlay.tsx │ ├── constants.ts │ ├── containers │ │ └── AnnotationsIndex.tsx │ ├── reducers │ │ ├── index.test.ts │ │ └── index.ts │ ├── selectors │ │ └── index.ts │ └── utils │ │ ├── formatQueryString.test.ts │ │ └── formatQueryString.ts ├── authorizations │ ├── actions │ │ ├── creators.ts │ │ └── thunks.ts │ ├── apis │ │ ├── __mocks__ │ │ │ ├── data.ts │ │ │ └── index.ts │ │ └── index.ts │ ├── components │ │ ├── AllAccessTokenOverlay.tsx │ │ ├── AllAccordionBody.tsx │ │ ├── CustomApiTokenOverlay.tsx │ │ ├── DisplayTokenOverlay.tsx │ │ ├── EditResourceAccordion.tsx │ │ ├── EditTokenOverlay.tsx │ │ ├── GenerateTokenDropdown.test.tsx │ │ ├── GenerateTokenDropdown.tsx │ │ ├── IndividualAccordionBody.tsx │ │ ├── ResourceAccordion.tsx │ │ ├── ResourceAccordionHeader.tsx │ │ ├── TokenList.tsx │ │ ├── TokenRow.test.tsx │ │ ├── TokenRow.tsx │ │ ├── TokensTab.test.tsx │ │ ├── TokensTab.tsx │ │ ├── TokensTabStyles.scss │ │ └── customApiTokenOverlay.scss │ ├── containers │ │ └── TokensIndex.tsx │ ├── reducers │ │ ├── index.test.ts │ │ └── index.ts │ └── utils │ │ ├── permissions.test.ts │ │ └── permissions.ts ├── billing │ ├── components │ │ ├── AssetLoading │ │ │ ├── BillingInfoWrapper.tsx │ │ │ ├── BillingWrapper.tsx │ │ │ ├── InvoiceWrapper.tsx │ │ │ └── MarketplaceWrapper.tsx │ │ ├── BillingContactDisplay.tsx │ │ ├── BillingContactInfo.tsx │ │ ├── BillingContactItem.tsx │ │ ├── BillingPage.scss │ │ ├── BillingPage.tsx │ │ ├── BillingPageContents.tsx │ │ ├── Checkout │ │ │ ├── BillingContactForm.tsx │ │ │ └── BillingContactSudivision.tsx │ │ ├── Free │ │ │ ├── Free.tsx │ │ │ ├── FreePanel.tsx │ │ │ ├── OrgLimitStat.tsx │ │ │ ├── OrgLimits.tsx │ │ │ └── PAYGConversion.tsx │ │ ├── PayAsYouGo │ │ │ ├── CancelServiceContext.tsx │ │ │ ├── CancelServiceReasonsForm.scss │ │ │ ├── CancelServiceReasonsForm.tsx │ │ │ ├── CancellationOverlay.tsx │ │ │ ├── CancellationPanel.tsx │ │ │ ├── ConfirmCancellationOverlay.tsx │ │ │ ├── InvoiceHistory.tsx │ │ │ ├── InvoiceHistoryRow.tsx │ │ │ ├── InvoiceHistoryRows.tsx │ │ │ ├── NotificationPanel.tsx │ │ │ ├── NotificationPanelBody.tsx │ │ │ ├── NotificationSettingsOverlay.tsx │ │ │ ├── PayAsYouGo.tsx │ │ │ ├── PlanTypePanel.scss │ │ │ ├── PlanTypePanel.tsx │ │ │ ├── TermsCancellationOverlay.tsx │ │ │ └── cancellation-overlay.scss │ │ ├── PaymentInfo │ │ │ ├── PaymentDisplay.tsx │ │ │ ├── PaymentPanel.tsx │ │ │ ├── PaymentPanelBody.tsx │ │ │ └── PaymentPanelHeader.tsx │ │ └── marketplace │ │ │ ├── MarketplaceBilling.tsx │ │ │ ├── MarketplaceLink.tsx │ │ │ └── SubscriptionManagerPanel.tsx │ ├── constants │ │ └── index.ts │ ├── context │ │ └── billing.tsx │ └── utils │ │ ├── timeHelpers.test.ts │ │ └── timeHelpers.ts ├── bootstrap.ts ├── buckets │ ├── actions │ │ ├── __mocks__ │ │ │ └── thunks.ts │ │ ├── creators.ts │ │ ├── thunks.test.ts │ │ └── thunks.ts │ ├── api │ │ └── index.ts │ ├── components │ │ ├── BucketAddDataButton.scss │ │ ├── BucketAddDataButton.tsx │ │ ├── BucketCard.tsx │ │ ├── BucketCardActions.tsx │ │ ├── BucketCardMeta.scss │ │ ├── BucketCardMeta.test.tsx │ │ ├── BucketCardMeta.tsx │ │ ├── BucketContextMenu.tsx │ │ ├── BucketExplainer.tsx │ │ ├── BucketList.tsx │ │ ├── BucketsTab.tsx │ │ ├── CreateBucketButton.tsx │ │ ├── NoBucketsWarning.scss │ │ ├── NoBucketsWarning.tsx │ │ ├── RenameBucketForm.tsx │ │ ├── RenameBucketOverlay.tsx │ │ ├── Retention.scss │ │ ├── Retention.tsx │ │ ├── context │ │ │ └── lineProtocol.tsx │ │ ├── createBucketForm │ │ │ ├── BucketOverlayForm.tsx │ │ │ ├── BucketOverlayFormStyles.scss │ │ │ ├── CreateBucketForm.tsx │ │ │ ├── CreateBucketOverlay.tsx │ │ │ ├── MeasurementSchema.scss │ │ │ ├── MeasurementSchemaSection.tsx │ │ │ ├── MiniFileDnd.test.tsx │ │ │ ├── MiniFileDnd.tsx │ │ │ ├── SchemaToggle.tsx │ │ │ ├── UpdateBucketOverlay.tsx │ │ │ ├── measurementSchemaOverview.png │ │ │ ├── measurementSchemaUtils.test.tsx │ │ │ └── measurementSchemaUtils.ts │ │ ├── csvUploader │ │ │ ├── CsvUploaderBody.tsx │ │ │ ├── DragAndDrop.tsx │ │ │ ├── DragAndDropHeader.tsx │ │ │ ├── DragInfo.tsx │ │ │ └── StatusIndicator.tsx │ │ ├── lineProtocol │ │ │ ├── EnterManuallyButtons.tsx │ │ │ ├── LineProtocolFooterButtons.tsx │ │ │ ├── UploadFileButtons.tsx │ │ │ ├── configure │ │ │ │ ├── DragAndDrop.tsx │ │ │ │ ├── DragAndDropButtons.tsx │ │ │ │ ├── DragAndDropHeader.tsx │ │ │ │ ├── DragInfo.tsx │ │ │ │ ├── LineProtocolTabs.tsx │ │ │ │ ├── PrecisionDropdown.tsx │ │ │ │ ├── Tab.tsx │ │ │ │ ├── TabBody.tsx │ │ │ │ └── TabSelector.tsx │ │ │ └── verify │ │ │ │ └── StatusIndicator.tsx │ │ └── schemaOverlay │ │ │ ├── SchemaDisplay.tsx │ │ │ └── ShowBucketSchemaOverlay.tsx │ ├── constants │ │ └── index.ts │ ├── containers │ │ └── BucketsIndex.tsx │ ├── reducers │ │ ├── createBucket.ts │ │ └── index.ts │ └── selectors │ │ ├── index.test.ts │ │ └── index.ts ├── cells │ ├── actions │ │ ├── creators.ts │ │ └── thunks.ts │ ├── reducers │ │ └── index.ts │ └── selectors │ │ └── index.ts ├── checkout │ ├── CancelButton.tsx │ ├── CheckoutForm.scss │ ├── CheckoutForm.tsx │ ├── CheckoutPage.scss │ ├── CheckoutPage.tsx │ ├── LogoWithCubo.scss │ ├── LogoWithCubo.tsx │ ├── NotificationSettingsForm.tsx │ ├── PoweredByStripeLogo.scss │ ├── PoweredByStripeLogo.tsx │ ├── SuccessOverlay.scss │ ├── SuccessOverlay.tsx │ ├── context │ │ └── checkout.tsx │ ├── shared │ │ ├── FormInput.tsx │ │ ├── FormSelectDropdown.tsx │ │ └── FormToggle.tsx │ └── utils │ │ └── ContactForm │ │ ├── CanadaContactForm.tsx │ │ ├── IntlContactForm.tsx │ │ ├── USContactForm.tsx │ │ └── index.tsx ├── checks │ ├── actions │ │ ├── creators.ts │ │ └── thunks.ts │ ├── components │ │ ├── CheckActivityTableField.tsx │ │ ├── CheckAlertingButton.tsx │ │ ├── CheckCard.tsx │ │ ├── CheckCardContext.tsx │ │ ├── CheckCards.tsx │ │ ├── CheckConditionsCard.tsx │ │ ├── CheckEOHeader.tsx │ │ ├── CheckEOSaveButton.tsx │ │ ├── CheckHistory.scss │ │ ├── CheckHistory.tsx │ │ ├── CheckHistoryControls.tsx │ │ ├── CheckHistoryTableField.tsx │ │ ├── CheckHistoryVisualization.tsx │ │ ├── CheckLevelsDropdown.tsx │ │ ├── CheckMessageCard.tsx │ │ ├── CheckMetaCard.tsx │ │ ├── CheckTableField.tsx │ │ ├── CheckTagRow.tsx │ │ ├── ChecksColumn.tsx │ │ ├── CreateCheckDropdown.tsx │ │ ├── EditCheckEO.tsx │ │ ├── NewDeadmanCheckEO.tsx │ │ └── NewThresholdCheckEO.tsx │ ├── reducers │ │ ├── checks.test.ts │ │ └── index.ts │ ├── selectors │ │ └── index.ts │ └── utils │ │ ├── checkValidate.ts │ │ ├── context.tsx │ │ └── index.ts ├── client │ ├── README.md │ ├── index.ts │ └── swagger │ │ ├── flows.yml │ │ ├── notebooks.yml │ │ └── unity.yml ├── cloud │ ├── actions │ │ └── limits.ts │ ├── apis │ │ └── reporting.ts │ ├── components │ │ ├── AssetLimitAlert.tsx │ │ ├── AssetLimitButton.tsx │ │ ├── AssetLimitOverlay.tsx │ │ ├── CardinalityLimitAlertContent.tsx │ │ ├── CardinalityLimitOverlay.tsx │ │ ├── GetAssetLimits.tsx │ │ ├── LimitChecker.tsx │ │ ├── RateLimitAlert.scss │ │ ├── RateLimitAlert.tsx │ │ ├── RateLimitOverlay.scss │ │ ├── SeriesCardinalityIncreaseForm.tsx │ │ ├── WriteLimitOverlay.scss │ │ ├── WriteLimitOverlay.tsx │ │ └── experiments │ │ │ ├── DatalessEmptyState.scss │ │ │ ├── DatalessEmptyState.tsx │ │ │ └── GoogleOptimizeExperiment.tsx │ ├── constants │ │ └── index.ts │ ├── containers │ │ └── index.tsx │ ├── reducers │ │ └── limits.ts │ └── utils │ │ ├── __mocks__ │ │ └── reporting.ts │ │ ├── experiments.ts │ │ ├── limits.ts │ │ ├── reporting.test.ts │ │ └── reporting.ts ├── dashboards │ ├── actions │ │ ├── creators.ts │ │ ├── notes.ts │ │ ├── ranges.ts │ │ └── thunks.ts │ ├── apis │ │ └── index.ts │ ├── components │ │ ├── AutoRefresh.scss │ │ ├── AutoRefreshInput.tsx │ │ ├── AutoRefreshOverlay.tsx │ │ ├── DashboardContainer.tsx │ │ ├── DashboardHeader.scss │ │ ├── DashboardHeader.tsx │ │ ├── DashboardImportOverlay.tsx │ │ ├── DashboardLightMode.scss │ │ ├── DashboardLightModeToggle.tsx │ │ ├── DashboardPage.tsx │ │ ├── DashboardsCardGrid.scss │ │ ├── EditVEO.tsx │ │ ├── GetTimeRange.tsx │ │ ├── NewVEO.tsx │ │ ├── NoteEditor.scss │ │ ├── NoteEditor.tsx │ │ ├── NoteEditorOverlay.tsx │ │ ├── NoteEditorPreview.test.tsx │ │ ├── NoteEditorPreview.tsx │ │ ├── NoteEditorText.tsx │ │ ├── RouteToDashboardList.tsx │ │ ├── VEO.scss │ │ ├── VEOHeader.tsx │ │ ├── dashboard_empty │ │ │ ├── DashboardEmpty.scss │ │ │ └── DashboardEmpty.tsx │ │ ├── dashboard_index │ │ │ ├── DashboardCard.tsx │ │ │ ├── DashboardCards.tsx │ │ │ ├── DashboardsIndex.tsx │ │ │ ├── DashboardsIndexContents.tsx │ │ │ └── DashboardsTableEmpty.tsx │ │ └── variablesControlBar │ │ │ ├── DraggableDropdown.tsx │ │ │ ├── VariablesControlBar.scss │ │ │ ├── VariablesControlBar.tsx │ │ │ └── VariablesControlBarList.tsx │ ├── constants │ │ └── index.ts │ ├── reducers │ │ ├── dashboards.test.ts │ │ ├── dashboards.ts │ │ ├── notes.ts │ │ ├── ranges.test.ts │ │ └── ranges.ts │ ├── selectors │ │ ├── index.test.ts │ │ └── index.ts │ └── utils │ │ ├── cellGetters.ts │ │ ├── getDashboardData.ts │ │ ├── getTimezoneOffset.ts │ │ ├── hoverTime.tsx │ │ ├── notes.ts │ │ ├── time.test.ts │ │ └── time.ts ├── dataExplorer │ ├── components │ │ ├── AggregateFunctionSelector.tsx │ │ ├── AggregateWindow.tsx │ │ ├── BucketSelector.tsx │ │ ├── ColumnSelector.tsx │ │ ├── DBRPSelector.tsx │ │ ├── DashboardsDropdown.tsx │ │ ├── DataExplorer.scss │ │ ├── DataExplorer.tsx │ │ ├── DataExplorerPage.tsx │ │ ├── DeleteScript.tsx │ │ ├── FieldSelector.tsx │ │ ├── FieldsAsColumns.tsx │ │ ├── FillValuesToggle.tsx │ │ ├── GroupBy.tsx │ │ ├── MeasurementSelector.tsx │ │ ├── OpenScript.tsx │ │ ├── QueryTime.scss │ │ ├── QueryTime.tsx │ │ ├── ResultOptions.tsx │ │ ├── Results.scss │ │ ├── Results.tsx │ │ ├── ResultsPane.tsx │ │ ├── SaveAsButton.scss │ │ ├── SaveAsButton.test.tsx │ │ ├── SaveAsButton.tsx │ │ ├── SaveAsCellForm.tsx │ │ ├── SaveAsNotebookForm.tsx │ │ ├── SaveAsOverlay.tsx │ │ ├── SaveAsScript.scss │ │ ├── SaveAsScript.tsx │ │ ├── SaveAsTaskForm.tsx │ │ ├── SaveAsVariable.tsx │ │ ├── Schema.scss │ │ ├── Schema.tsx │ │ ├── SchemaBrowserHeading.tsx │ │ ├── ScriptQueryBuilder.scss │ │ ├── ScriptQueryBuilder.tsx │ │ ├── SelectorTitle.tsx │ │ ├── Sidebar.scss │ │ ├── Sidebar.tsx │ │ ├── SqlViewOptions.scss │ │ ├── SqlViewOptions.tsx │ │ ├── TagSelector.tsx │ │ ├── ToggleWithLabelTooltip.tsx │ │ ├── WindowPeriod.tsx │ │ └── resources │ │ │ ├── TemplatePage.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ └── script │ │ │ ├── editor.tsx │ │ │ └── index.ts │ ├── context │ │ ├── columns.tsx │ │ ├── fields.tsx │ │ ├── groupKeys.tsx │ │ ├── measurements.tsx │ │ ├── persistence.tsx │ │ ├── results │ │ │ ├── childResults.tsx │ │ │ └── index.tsx │ │ ├── resultsView.tsx │ │ ├── scriptQueryBuilder.tsx │ │ ├── sidebar.tsx │ │ └── tags.tsx │ └── shared │ │ ├── utils.test.ts │ │ └── utils.ts ├── dataLoaders │ ├── actions │ │ ├── dataLoaders.ts │ │ ├── steps.ts │ │ └── telegrafEditor.ts │ ├── components │ │ ├── BucketsDropdown.test.tsx │ │ ├── BucketsDropdown.tsx │ │ ├── DataLoadersOverlay.scss │ │ ├── collectorsWizard │ │ │ ├── CollectorsStepSwitcher.tsx │ │ │ ├── CollectorsWizard.tsx │ │ │ ├── TelegrafUIRefreshStepSwitcher.tsx │ │ │ ├── TelegrafUIRefreshWizard.tsx │ │ │ ├── configure │ │ │ │ ├── ConfigFieldHandler.test.tsx │ │ │ │ ├── ConfigFieldHandler.tsx │ │ │ │ ├── PluginConfigForm.test.tsx │ │ │ │ ├── PluginConfigForm.tsx │ │ │ │ ├── PluginConfigSwitcher.test.tsx │ │ │ │ ├── PluginConfigSwitcher.tsx │ │ │ │ ├── PluginsSideBar.test.tsx │ │ │ │ ├── PluginsSideBar.tsx │ │ │ │ └── TelegrafPluginInstructions.tsx │ │ │ ├── select │ │ │ │ ├── SelectCollectorsStep.test.tsx │ │ │ │ ├── SelectCollectorsStep.tsx │ │ │ │ ├── StreamingSelector.test.tsx │ │ │ │ ├── StreamingSelector.tsx │ │ │ │ ├── TelegrafUIRefreshCollectorsStep.tsx │ │ │ │ └── TelegrafUIRefreshSelector.tsx │ │ │ └── verify │ │ │ │ └── VerifyCollectorsStep.tsx │ │ ├── configureStep │ │ │ ├── EmptyDataSourceState.tsx │ │ │ └── streaming │ │ │ │ ├── ArrayFormElement.test.tsx │ │ │ │ ├── ArrayFormElement.tsx │ │ │ │ ├── ConfigFieldSwitcher.test.tsx │ │ │ │ └── ConfigFieldSwitcher.tsx │ │ ├── side_bar │ │ │ ├── SideBar.scss │ │ │ ├── SideBar.test.tsx │ │ │ ├── SideBar.tsx │ │ │ ├── SideBarButton.test.tsx │ │ │ ├── SideBarButton.tsx │ │ │ └── SideBarTab.tsx │ │ └── verifyStep │ │ │ ├── DataListening.test.tsx │ │ │ ├── DataListening.tsx │ │ │ ├── DataStreaming.tsx │ │ │ ├── TelegrafInstructions.test.tsx │ │ │ └── TelegrafInstructions.tsx │ ├── constants │ │ └── pluginConfigs.ts │ ├── graphics │ │ ├── IconCSV.tsx │ │ ├── IconLineProtocol.tsx │ │ ├── IconStreaming.tsx │ │ ├── LogoApache.tsx │ │ ├── LogoConsul.tsx │ │ ├── LogoCpu.tsx │ │ ├── LogoDocker.tsx │ │ ├── LogoElastic.tsx │ │ ├── LogoEtcd.tsx │ │ ├── LogoIis.tsx │ │ ├── LogoKubernetes.tsx │ │ ├── LogoMesos.tsx │ │ ├── LogoMongodb.tsx │ │ ├── LogoMysql.tsx │ │ ├── LogoNginx.tsx │ │ ├── LogoPrometheus.tsx │ │ ├── LogoRedis.tsx │ │ └── index.ts │ ├── reducers │ │ ├── dataLoaders.test.ts │ │ ├── dataLoaders.ts │ │ ├── index.tsx │ │ ├── steps.ts │ │ └── telegrafEditor.ts │ ├── selectors │ │ └── index.ts │ └── utils │ │ ├── pluginConfigs.test.ts │ │ └── pluginConfigs.ts ├── eventViewer │ ├── components │ │ ├── BackToTopButton.tsx │ │ ├── ErrorRow.tsx │ │ ├── EventTable.scss │ │ ├── EventTable.tsx │ │ ├── EventViewer.reducer.ts │ │ ├── EventViewer.tsx │ │ ├── FooterRow.tsx │ │ ├── Header.tsx │ │ ├── LoadingRow.tsx │ │ └── TableRow.tsx │ └── utils │ │ ├── search.test.ts │ │ └── search.ts ├── flows │ ├── FlowVariables.scss │ ├── actions │ │ ├── flowsActions.ts │ │ └── flowsThunks.ts │ ├── components │ │ ├── AddButtons.scss │ │ ├── AddButtons.tsx │ │ ├── CellFamily.tsx │ │ ├── ClientList.tsx │ │ ├── EmptyPipeList.scss │ │ ├── EmptyPipeList.tsx │ │ ├── FlowCard.tsx │ │ ├── FlowCards.tsx │ │ ├── FlowContextMenu.scss │ │ ├── FlowContextMenu.tsx │ │ ├── FlowKeyboardPreview.tsx │ │ ├── FlowPage.tsx │ │ ├── FlowPipe.tsx │ │ ├── FlowsExplainer.tsx │ │ ├── FlowsIndex.tsx │ │ ├── FlowsIndexEmpty.tsx │ │ ├── FromTemplatePage.tsx │ │ ├── Pipe.tsx │ │ ├── PipeList.tsx │ │ ├── PresentationPipe.tsx │ │ ├── PresetFlows.scss │ │ ├── PresetFlows.tsx │ │ ├── PresetFlowsButtons.tsx │ │ ├── ReadOnly.tsx │ │ ├── ReadOnlyHeader.scss │ │ ├── ReadOnlyHeader.tsx │ │ ├── ReadOnlyPipeList.tsx │ │ ├── ShareOverlay.scss │ │ ├── ShareOverlay.tsx │ │ ├── Sidebar.scss │ │ ├── Sidebar.tsx │ │ ├── VersionPage.tsx │ │ ├── VersionSidebar.scss │ │ ├── VersionSidebar.tsx │ │ ├── controlSearchBar.scss │ │ ├── header │ │ │ ├── AutoRefreshButton.tsx │ │ │ ├── MenuButton.tsx │ │ │ ├── PresentationMode.tsx │ │ │ ├── Submit.scss │ │ │ ├── Submit.tsx │ │ │ ├── TimeRangeDropdown.tsx │ │ │ ├── TimeRangeLabel.tsx │ │ │ ├── VersionHeader │ │ │ │ ├── RevertButton.tsx │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ └── panel │ │ │ ├── FlowPanel.tsx │ │ │ ├── FlowPanelTitle.tsx │ │ │ ├── Handle.tsx │ │ │ ├── InsertCellButton.scss │ │ │ ├── InsertCellButton.tsx │ │ │ ├── PanelQueryOverlay.tsx │ │ │ ├── PanelVisibilityToggle.tsx │ │ │ └── RemovePanelButton.tsx │ ├── constants.ts │ ├── context │ │ ├── api.tsx │ │ ├── flow.current.tsx │ │ ├── flow.list.tsx │ │ ├── flow.mock.json │ │ ├── flow.query.tsx │ │ ├── pipe.tsx │ │ ├── popup.tsx │ │ ├── results.tsx │ │ ├── shared.tsx │ │ ├── sidebar.tsx │ │ ├── variables.tsx │ │ ├── version.publish.tsx │ │ └── version.read.tsx │ ├── index.ts │ ├── pipes │ │ ├── Columns │ │ │ ├── index.tsx │ │ │ ├── readOnly.tsx │ │ │ ├── styles.scss │ │ │ └── view.tsx │ │ ├── Downsample │ │ │ ├── index.ts │ │ │ ├── readOnly.tsx │ │ │ ├── style.scss │ │ │ └── view.tsx │ │ ├── Markdown │ │ │ ├── MarkdownModeToggle.tsx │ │ │ ├── index.ts │ │ │ ├── readOnly.tsx │ │ │ ├── style.scss │ │ │ └── view.tsx │ │ ├── MetricSelector │ │ │ ├── FieldSelectors.tsx │ │ │ ├── FieldsList.tsx │ │ │ ├── FilterTags.tsx │ │ │ ├── MeasurementSelectors.tsx │ │ │ ├── SearchBar.tsx │ │ │ ├── Selectors.tsx │ │ │ ├── TagSelectors.tsx │ │ │ ├── context.tsx │ │ │ ├── index.ts │ │ │ ├── readOnly.tsx │ │ │ ├── style.scss │ │ │ └── view.tsx │ │ ├── Missing │ │ │ ├── index.ts │ │ │ ├── styles.scss │ │ │ └── view.tsx │ │ ├── Notification │ │ │ ├── ExportTask.tsx │ │ │ ├── Expression.tsx │ │ │ ├── Expressions.tsx │ │ │ ├── Measurement.tsx │ │ │ ├── NotificationMonacoEditor.tsx │ │ │ ├── Threshold.scss │ │ │ ├── Threshold.tsx │ │ │ ├── endpoints.ts │ │ │ ├── endpoints │ │ │ │ ├── AWS │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── readOnly.tsx │ │ │ │ │ └── view.tsx │ │ │ │ ├── HTTP │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── readOnly.tsx │ │ │ │ │ └── view.tsx │ │ │ │ ├── Mailgun │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── readOnly.tsx │ │ │ │ │ └── view.tsx │ │ │ │ ├── Mailjet │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── readOnly.tsx │ │ │ │ │ └── view.tsx │ │ │ │ ├── PagerDuty │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── readOnly.tsx │ │ │ │ │ └── view.tsx │ │ │ │ ├── SendGrid │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── readOnly.tsx │ │ │ │ │ └── view.tsx │ │ │ │ ├── Slack │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── readOnly.tsx │ │ │ │ │ └── view.tsx │ │ │ │ ├── Telegram │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── readOnly.tsx │ │ │ │ │ └── view.tsx │ │ │ │ └── Zenoss │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── readOnly.tsx │ │ │ │ │ └── view.tsx │ │ │ ├── index.ts │ │ │ ├── readOnly.tsx │ │ │ ├── styles.scss │ │ │ └── view.tsx │ │ ├── QueryBuilder │ │ │ ├── AddButton.tsx │ │ │ ├── BucketSelector.tsx │ │ │ ├── CardList.tsx │ │ │ ├── CreateBucket.tsx │ │ │ ├── CreateBucketOverlay.tsx │ │ │ ├── ExplicitPanel.tsx │ │ │ ├── MiniFileDnd.tsx │ │ │ ├── context.tsx │ │ │ ├── index.ts │ │ │ ├── readOnly.tsx │ │ │ ├── style.scss │ │ │ └── view.tsx │ │ ├── RawFluxEditor │ │ │ ├── SecretsList.tsx │ │ │ ├── index.ts │ │ │ ├── readOnly.tsx │ │ │ ├── style.scss │ │ │ └── view.tsx │ │ ├── Region │ │ │ ├── index.ts │ │ │ ├── readOnly.tsx │ │ │ ├── style.scss │ │ │ └── view.tsx │ │ ├── RemoteCSV │ │ │ ├── index.ts │ │ │ ├── styles.scss │ │ │ └── view.tsx │ │ ├── Schedule │ │ │ ├── ExportTaskButton.tsx │ │ │ ├── History.tsx │ │ │ ├── index.ts │ │ │ ├── readOnly.tsx │ │ │ ├── style.scss │ │ │ └── view.tsx │ │ ├── Spotify │ │ │ ├── editor.tsx │ │ │ ├── embedded.tsx │ │ │ ├── index.ts │ │ │ ├── style.scss │ │ │ └── view.tsx │ │ ├── Table │ │ │ ├── index.ts │ │ │ ├── view.scss │ │ │ └── view.tsx │ │ ├── Time │ │ │ ├── index.ts │ │ │ ├── style.scss │ │ │ └── view.tsx │ │ ├── ToBucket │ │ │ ├── index.ts │ │ │ ├── readOnly.tsx │ │ │ └── view.tsx │ │ ├── Visualization │ │ │ ├── Controls.tsx │ │ │ ├── ErrorThresholds │ │ │ │ ├── ErrorThresholds.scss │ │ │ │ ├── ErrorThresholds.tsx │ │ │ │ ├── FieldColumnDropdown.tsx │ │ │ │ ├── FunctionDropdown.tsx │ │ │ │ └── ThresholdEntryColumn.tsx │ │ │ ├── QRCode.tsx │ │ │ ├── index.ts │ │ │ ├── style.scss │ │ │ ├── threshold.ts │ │ │ └── view.tsx │ │ └── Youtube │ │ │ ├── index.ts │ │ │ ├── style.scss │ │ │ └── view.tsx │ ├── reducers │ │ └── flowsReducer.ts │ ├── selectors │ │ ├── flowsSelectors.test.ts │ │ └── flowsSelectors.ts │ ├── shared │ │ ├── BucketSelector │ │ │ ├── CreateBucketDropdownItem.tsx │ │ │ └── index.tsx │ │ ├── Resizer.scss │ │ └── utils.ts │ ├── style.scss │ └── templates │ │ ├── index.ts │ │ └── types │ │ ├── blank.ts │ │ ├── bucket.ts │ │ ├── dashboard.ts │ │ ├── default.ts │ │ ├── downsample.ts │ │ ├── flow.ts │ │ ├── flux.ts │ │ ├── intro.ts │ │ ├── notification.ts │ │ ├── share.ts │ │ ├── task.ts │ │ └── tools.ts ├── homepageExperience │ ├── ClickThroughAnnouncementHandler.tsx │ ├── components │ │ ├── DataListening.tsx │ │ ├── FeedbackBar.tsx │ │ ├── HomepageExperience.scss │ │ ├── HomepageIcons.tsx │ │ ├── OptionAccordion │ │ │ ├── AddDataAccordion.tsx │ │ │ ├── DeployAccordion.tsx │ │ │ ├── ManageDatabasesAccordion.tsx │ │ │ ├── OptionAccordion.scss │ │ │ ├── OptionAccordion.tsx │ │ │ ├── OptionAccordionElement.tsx │ │ │ ├── OptionLink.tsx │ │ │ ├── QueryDataAccordion.tsx │ │ │ └── VisualizeAccordion.tsx │ │ └── steps │ │ │ ├── DashboardIntegrations.tsx │ │ │ ├── Finish.tsx │ │ │ ├── Overview.tsx │ │ │ ├── SampleAppCard.tsx │ │ │ ├── Tokens.tsx │ │ │ ├── arduino │ │ │ ├── ArduinoSteps.scss │ │ │ ├── ExecuteAggregateQuery.tsx │ │ │ ├── ExecuteQuery.tsx │ │ │ ├── InitializeClient.tsx │ │ │ ├── InstallDependencies.tsx │ │ │ ├── PrepareIde.tsx │ │ │ └── WriteData.tsx │ │ │ ├── cli │ │ │ ├── CliSteps.scss │ │ │ ├── ExecuteAggregateQuery.tsx │ │ │ ├── ExecuteQuery.tsx │ │ │ ├── ExecuteQuerySql.tsx │ │ │ ├── InitializeClient.tsx │ │ │ ├── InstallDependencies.tsx │ │ │ └── WriteData.tsx │ │ │ ├── csharp │ │ │ ├── ExecuteAggregateQuery.tsx │ │ │ ├── ExecuteQuery.tsx │ │ │ ├── ExecuteQuerySql.tsx │ │ │ ├── InitializeClient.tsx │ │ │ ├── InitializeClientSql.tsx │ │ │ ├── InstallDependencies.tsx │ │ │ ├── InstallDependenciesSql.tsx │ │ │ ├── WriteData.tsx │ │ │ └── WriteDataSql.tsx │ │ │ ├── go │ │ │ ├── ExecuteAggregateQuery.tsx │ │ │ ├── ExecuteQuery.tsx │ │ │ ├── ExecuteQuerySql.tsx │ │ │ ├── InitializeClient.tsx │ │ │ ├── InstallDependencies.tsx │ │ │ ├── InstallDependenciesSql.tsx │ │ │ ├── WriteData.tsx │ │ │ └── WriteDataSql.tsx │ │ │ ├── java │ │ │ ├── ExecuteAggregateQuery.tsx │ │ │ ├── ExecuteQuery.tsx │ │ │ ├── ExecuteQuerySql.tsx │ │ │ ├── InitializeClient.tsx │ │ │ ├── InitializeClientSql.tsx │ │ │ ├── InstallDependencies.tsx │ │ │ ├── InstallDependenciesSql.tsx │ │ │ ├── WriteData.tsx │ │ │ └── WriteDataSql.tsx │ │ │ ├── nodejs │ │ │ ├── ExecuteAggregateQuery.tsx │ │ │ ├── ExecuteQuery.tsx │ │ │ ├── ExecuteQuerySql.tsx │ │ │ ├── InitializeClient.tsx │ │ │ ├── InitializeClientSql.tsx │ │ │ ├── InstallDependencies.tsx │ │ │ ├── InstallDependenciesSql.tsx │ │ │ ├── WriteData.tsx │ │ │ └── WriteDataSql.tsx │ │ │ └── python │ │ │ ├── ExecuteAggregateQuery.tsx │ │ │ ├── ExecuteAggregateQuerySql.tsx │ │ │ ├── ExecuteQuery.tsx │ │ │ ├── ExecuteQuerySql.tsx │ │ │ ├── InitializeClient.tsx │ │ │ ├── InitializeClientSql.tsx │ │ │ ├── InstallDependencies.tsx │ │ │ ├── InstallDependenciesSql.tsx │ │ │ ├── WriteData.tsx │ │ │ └── WriteDataSql.tsx │ ├── containers │ │ ├── ArduinoWizard.tsx │ │ ├── CSharpWizard.tsx │ │ ├── CliWizard.test.tsx │ │ ├── CliWizard.tsx │ │ ├── GoWizard.tsx │ │ ├── HomepageContainer.tsx │ │ ├── HomepageContents.scss │ │ ├── HomepageContents.tsx │ │ ├── HomepageContentsTSM.scss │ │ ├── HomepageContentsTSM.tsx │ │ ├── JavaWizard.tsx │ │ ├── NodejsWizard.tsx │ │ ├── PythonWizard.tsx │ │ └── WizardContainer.tsx │ └── utils.ts ├── identity │ ├── actions │ │ ├── creators │ │ │ └── index.ts │ │ └── thunks │ │ │ └── index.ts │ ├── allowances │ │ ├── actions │ │ │ ├── creators │ │ │ │ └── index.ts │ │ │ └── thunks │ │ │ │ └── index.ts │ │ └── reducers │ │ │ └── index.ts │ ├── apis │ │ ├── account.ts │ │ ├── auth.ts │ │ └── org.ts │ ├── components │ │ ├── GlobalHeader │ │ │ ├── AccountDropdown.tsx │ │ │ ├── DefaultEntities.tsx │ │ │ ├── GlobalHeader.tsx │ │ │ ├── GlobalHeaderDropdown │ │ │ │ ├── CreateOrganization │ │ │ │ │ ├── CreateOrgInput.scss │ │ │ │ │ ├── CreateOrgInput.tsx │ │ │ │ │ ├── CreateOrganizationOverlay.scss │ │ │ │ │ ├── CreateOrganizationOverlay.tsx │ │ │ │ │ ├── MenuItem.tsx │ │ │ │ │ ├── ProviderCards.tsx │ │ │ │ │ ├── ProviderLogos │ │ │ │ │ │ ├── AWSLogoLarge.scss │ │ │ │ │ │ ├── AWSLogoLarge.tsx │ │ │ │ │ │ ├── AWSLogoSmall.scss │ │ │ │ │ │ ├── AWSLogoSmall.tsx │ │ │ │ │ │ ├── AzureLogo.scss │ │ │ │ │ │ ├── AzureLogoLarge.tsx │ │ │ │ │ │ ├── AzureLogoSmall.tsx │ │ │ │ │ │ ├── GCPLogoLarge.scss │ │ │ │ │ │ ├── GCPLogoLarge.tsx │ │ │ │ │ │ ├── GCPLogoSmall.scss │ │ │ │ │ │ └── GCPLogoSmall.tsx │ │ │ │ │ ├── RegionDropdown.tsx │ │ │ │ │ └── utils │ │ │ │ │ │ └── generateProviderMap.ts │ │ │ │ ├── GlobalHeaderDropdown.scss │ │ │ │ ├── GlobalHeaderTypeAheadMenu.tsx │ │ │ │ └── index.tsx │ │ │ ├── GlobalHeaderStyle.scss │ │ │ ├── IdentityUserAvatar.tsx │ │ │ ├── OrgDropdown.tsx │ │ │ ├── UserPopoverStyles.scss │ │ │ └── constants │ │ │ │ └── index.ts │ │ ├── MarketoAccountUpgradeOverlay.scss │ │ ├── MarketoAccountUpgradeOverlay.tsx │ │ ├── OrganizationListTab │ │ │ ├── NoOrgsState.tsx │ │ │ ├── OrgBannerPanel.scss │ │ │ ├── OrgBannerPanel.tsx │ │ │ ├── OrgList.tsx │ │ │ ├── OrganizationCard.scss │ │ │ ├── OrganizationCard.tsx │ │ │ ├── OrganizationListTab.scss │ │ │ ├── OrganizationListTabContainer.tsx │ │ │ └── index.tsx │ │ └── userprofile │ │ │ ├── DefaultAccountForm.tsx │ │ │ ├── DefaultDropdown.tsx │ │ │ ├── DefaultOrgForm.tsx │ │ │ ├── UserDefaults.tsx │ │ │ ├── UserDetails.tsx │ │ │ ├── UserProfile.scss │ │ │ ├── UserProfileInput.tsx │ │ │ └── UserProfilePage.tsx │ ├── events │ │ └── multiOrgEvents.ts │ ├── mockUserData.ts │ ├── quartzOrganizations │ │ ├── actions │ │ │ ├── creators │ │ │ │ └── index.ts │ │ │ └── thunks │ │ │ │ └── index.ts │ │ ├── mockOrgData.ts │ │ └── reducers │ │ │ ├── index.test.ts │ │ │ └── index.ts │ ├── reducers │ │ ├── index.test.ts │ │ └── index.ts │ ├── selectors │ │ ├── index.test.ts │ │ └── index.ts │ ├── styles │ │ └── MultiOrgStyles.scss │ └── utils │ │ ├── alphaSortSelectedFirst.test.ts │ │ └── alphaSortSelectedFirst.ts ├── index.html ├── index.tsx ├── labels │ ├── actions │ │ ├── creators.ts │ │ └── thunks.ts │ ├── components │ │ ├── CreateLabelOverlay.tsx │ │ ├── LabelCard.scss │ │ ├── LabelCard.tsx │ │ ├── LabelContextMenu.tsx │ │ ├── LabelList.tsx │ │ ├── LabelOverlayForm.scss │ │ ├── LabelOverlayForm.tsx │ │ ├── LabelsTab.tsx │ │ └── UpdateLabelOverlay.tsx │ ├── constants │ │ └── index.ts │ ├── containers │ │ └── LabelsIndex.tsx │ ├── reducers │ │ ├── index.test.ts │ │ └── index.ts │ ├── selectors │ │ └── index.ts │ └── utils │ │ ├── index.test.ts │ │ └── index.ts ├── languageSupport │ ├── languages │ │ ├── agnostic │ │ │ ├── connection.ts │ │ │ ├── types.ts │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── flux │ │ │ ├── flux.tmLanguage.json │ │ │ ├── keybindings.test.ts │ │ │ ├── lsp │ │ │ │ ├── connection.ts │ │ │ │ ├── monaco.flux.lsp.ts │ │ │ │ ├── types │ │ │ │ │ ├── executeCommand.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── methods.ts │ │ │ │ │ └── showMessage.ts │ │ │ │ ├── utils.ts │ │ │ │ └── worker │ │ │ │ │ └── flux.worker.ts │ │ │ ├── lspUtils │ │ │ │ └── index.ts │ │ │ ├── monaco.flux.hotkeys.ts │ │ │ ├── monaco.flux.syntax.ts │ │ │ └── monaco.flux.theme.ts │ │ ├── influxql │ │ │ ├── connection.ts │ │ │ ├── influxql.ts │ │ │ ├── monaco.influxql.hotkeys.ts │ │ │ ├── monaco.influxql.syntax.ts │ │ │ └── monaco.influxql.theme.ts │ │ ├── markdown │ │ │ ├── markdown.tmLanguage.json │ │ │ └── monaco.markdown.syntax.ts │ │ ├── plaintext.tmLanguage.json │ │ ├── python │ │ │ ├── monaco.python.syntax.ts │ │ │ ├── monaco.python.theme.ts │ │ │ └── python.tmLanguage.json │ │ ├── sql │ │ │ ├── connection.ts │ │ │ ├── monaco.sql.hotkeys.ts │ │ │ ├── monaco.sql.syntax.ts │ │ │ └── monaco.sql.theme.ts │ │ └── toml │ │ │ ├── monaco.toml.syntax.ts │ │ │ ├── monaco.toml.theme.ts │ │ │ └── toml.tmLanguage.json │ ├── monaco.autogrow.ts │ └── monaco.onigasm.ts ├── localStorage.ts ├── me │ ├── actions │ │ ├── creators │ │ │ └── index.ts │ │ └── thunks │ │ │ └── index.ts │ ├── components │ │ ├── AlertsActivity.scss │ │ ├── AlertsActivity.tsx │ │ ├── AnnouncementBlock.scss │ │ ├── AnnouncementBlock.tsx │ │ ├── AnnouncementCenter.tsx │ │ ├── BlogFeed.scss │ │ ├── BlogFeed.tsx │ │ ├── ClickThroughAnnouncementOverlay.tsx │ │ ├── CloudWidgets.tsx │ │ ├── CurrentAnnouncement.tsx │ │ ├── DashboardsList.tsx │ │ ├── DocSearchWidget.scss │ │ ├── DocSearchWidget.tsx │ │ ├── GettingStarted.scss │ │ ├── GettingStarted.tsx │ │ ├── LogoutButton.tsx │ │ ├── UsagePanel.tsx │ │ └── UsagePanelDetails.tsx │ ├── constants │ │ └── index.ts │ ├── graphics │ │ ├── CollectorGraphic.scss │ │ ├── CollectorGraphic.tsx │ │ ├── DashboardingGraphic.scss │ │ ├── DashboardingGraphic.tsx │ │ ├── ExploreGraphic.scss │ │ └── ExploreGraphic.tsx │ ├── mockUserData.ts │ ├── reducers │ │ ├── index.test.ts │ │ └── index.ts │ └── selectors │ │ └── index.ts ├── members │ ├── actions │ │ ├── creators.ts │ │ └── thunks.ts │ ├── components │ │ ├── MemberCard.tsx │ │ ├── MemberContextMenu.tsx │ │ ├── MemberList.tsx │ │ ├── Members.test.tsx │ │ └── Members.tsx │ ├── containers │ │ └── MembersIndex.tsx │ ├── dummyData.ts │ └── reducers │ │ └── index.ts ├── mockAppState.ts ├── mockState.tsx ├── normalizers │ └── localStorage │ │ ├── appPersisted.ts │ │ ├── dashboardTime.test.ts │ │ ├── dashboardTime.ts │ │ ├── index.ts │ │ ├── localStorage.ts │ │ └── resources.ts ├── notifications │ ├── endpoints │ │ ├── actions │ │ │ ├── creators.ts │ │ │ └── thunks.ts │ │ ├── components │ │ │ ├── AuthMethodTypeDropdown.tsx │ │ │ ├── EditEndpointOverlay.tsx │ │ │ ├── EndpointCard.tsx │ │ │ ├── EndpointCardMenu.tsx │ │ │ ├── EndpointCards.tsx │ │ │ ├── EndpointOptions.tsx │ │ │ ├── EndpointOptionsHTTP.tsx │ │ │ ├── EndpointOptionsPagerDuty.tsx │ │ │ ├── EndpointOptionsSlack.tsx │ │ │ ├── EndpointOptionsTelegram.tsx │ │ │ ├── EndpointOverlay.reducer.ts │ │ │ ├── EndpointOverlayContents.tsx │ │ │ ├── EndpointOverlayFooter.tsx │ │ │ ├── EndpointOverlayProvider.tsx │ │ │ ├── EndpointTypeDropdown.tsx │ │ │ ├── EndpointsColumn.tsx │ │ │ ├── MethodTypeDropdown.tsx │ │ │ ├── NewEndpointOverlay.tsx │ │ │ └── NotificationEndpointTableField.tsx │ │ ├── reducers │ │ │ └── index.ts │ │ ├── selectors │ │ │ └── index.ts │ │ └── utils │ │ │ └── index.ts │ └── rules │ │ ├── actions │ │ ├── creators.ts │ │ └── thunks.ts │ │ ├── components │ │ ├── EditRuleOverlay.tsx │ │ ├── NewRuleOverlay.scss │ │ ├── NewRuleOverlay.tsx │ │ ├── PagerDutyMessage.tsx │ │ ├── RuleCard.tsx │ │ ├── RuleCardContext.tsx │ │ ├── RuleCards.tsx │ │ ├── RuleConditions.tsx │ │ ├── RuleEndpointDropdown.tsx │ │ ├── RuleLevelsDropdown.tsx │ │ ├── RuleMessage.tsx │ │ ├── RuleMessageContents.tsx │ │ ├── RuleOverlay.actions.tsx │ │ ├── RuleOverlay.reducer.tsx │ │ ├── RuleOverlayContents.tsx │ │ ├── RuleOverlayFooter.scss │ │ ├── RuleOverlayFooter.tsx │ │ ├── RuleOverlayProvider.tsx │ │ ├── RuleSchedule.tsx │ │ ├── RulesColumn.tsx │ │ ├── SMTPMessage.tsx │ │ ├── SlackMessage.tsx │ │ ├── StatusChangeDropdown.tsx │ │ ├── StatusLevels.tsx │ │ ├── StatusRule.tsx │ │ ├── TagRule.tsx │ │ ├── TagRuleOperatorDropdown.tsx │ │ └── TelegramMessage.tsx │ │ ├── reducers │ │ ├── index.ts │ │ └── rules.test.ts │ │ ├── selectors │ │ └── index.ts │ │ └── utils │ │ └── index.ts ├── onboarding │ ├── OnboardingWizard.scss │ ├── actions │ │ └── index.ts │ ├── apis │ │ └── mocks.ts │ ├── components │ │ ├── AdminStep.test.tsx │ │ ├── AdminStep.tsx │ │ ├── CloudLogoWithCubo.scss │ │ ├── CloudLogoWithCubo.tsx │ │ ├── CompletionAdvancedButton.tsx │ │ ├── CompletionQuickStartButton.tsx │ │ ├── CompletionStep.test.tsx │ │ ├── CompletionStep.tsx │ │ ├── HelperText.tsx │ │ ├── InitStep.tsx │ │ ├── LoginForm.tsx │ │ ├── OnboardingButtons.test.tsx │ │ ├── OnboardingButtons.tsx │ │ ├── OnboardingStepSwitcher.tsx │ │ ├── SigninForm.scss │ │ └── SigninForm.tsx │ ├── constants │ │ └── index.ts │ ├── containers │ │ ├── CloudLoginPage.scss │ │ ├── CloudLoginPage.tsx │ │ ├── LoginPageContents.tsx │ │ ├── OSSLoginPage.tsx │ │ ├── OnboardingWizard.tsx │ │ └── OnboardingWizardPage.tsx │ ├── reducers │ │ └── index.ts │ └── utils │ │ └── index.ts ├── operator │ ├── AppPageHeader.tsx │ ├── LimitsField.scss │ ├── LimitsField.tsx │ ├── MigrateOrg.tsx │ ├── MigrateOrgOverlay.tsx │ ├── Operator.tsx │ ├── OperatorNav.scss │ ├── OperatorNav.tsx │ ├── OperatorPage.tsx │ ├── OperatorTabs.tsx │ ├── OrgOverlay.scss │ ├── OrgOverlay.tsx │ ├── OrgOverlayWrapper.tsx │ ├── ResourcesAccountType.tsx │ ├── ResourcesCloudCluster.tsx │ ├── ResourcesSearchbar.tsx │ ├── ResourcesTable.tsx │ ├── ResourcesTableRow.tsx │ ├── account │ │ ├── AccountBillingContact.tsx │ │ ├── AccountField.tsx │ │ ├── AccountGrid.scss │ │ ├── AccountGrid.tsx │ │ ├── AccountPage.tsx │ │ ├── AccountView.tsx │ │ ├── AccountViewHeader.tsx │ │ ├── AssociatedOrgsTable.tsx │ │ ├── AssociatedUsersTable.tsx │ │ ├── CancelAccountOverlay.tsx │ │ ├── ConvertAccountToContractOverlay.scss │ │ ├── ConvertAccountToContractOverlay.tsx │ │ ├── DeleteAccountOverlay.tsx │ │ ├── MigrateOrgs.tsx │ │ ├── MigrateOrgsOverlay.tsx │ │ └── ReactivateAccountOverlay.tsx │ ├── constants.tsx │ ├── context │ │ ├── account.tsx │ │ ├── operator.tsx │ │ └── overlay.tsx │ ├── utils.test.ts │ └── utils.ts ├── organizations │ ├── actions │ │ ├── creators.ts │ │ └── thunks.ts │ ├── apis │ │ └── index.ts │ ├── components │ │ ├── CreateOrgOverlay.tsx │ │ ├── DeleteOrgOverlay.scss │ │ ├── OrgHeader.tsx │ │ ├── OrgNavigation.tsx │ │ ├── OrgProfileTab │ │ │ ├── CopyableLabeledData.tsx │ │ │ ├── DeletePanel.tsx │ │ │ ├── LabeledData.tsx │ │ │ ├── LeaveOrg.tsx │ │ │ ├── SuspendPaidOrgOverlay.scss │ │ │ ├── SuspendPaidOrgOverlay.tsx │ │ │ ├── index.tsx │ │ │ └── style.scss │ │ ├── OrgTabbedPage.tsx │ │ ├── RenameOrgForm.tsx │ │ └── RenameOrgOverlay.tsx │ ├── containers │ │ ├── NoOrgsPage.tsx │ │ └── OrgProfilePage.tsx │ ├── reducers │ │ └── index.ts │ └── selectors │ │ ├── index.test.ts │ │ └── index.ts ├── overlays │ ├── actions │ │ └── overlays.ts │ ├── components │ │ ├── OverlayController.tsx │ │ ├── RouteOverlay.tsx │ │ └── index.tsx │ ├── reducers │ │ └── overlays.ts │ └── selectors │ │ └── index.ts ├── pageLayout │ ├── components │ │ ├── NavHeader.tsx │ │ ├── OrgSwitcherItem.tsx │ │ ├── OrgSwitcherOverlay.scss │ │ ├── OrgSwitcherOverlay.tsx │ │ ├── RenamablePageTitle.scss │ │ ├── RenamablePageTitle.tsx │ │ ├── RequestPocWidget.scss │ │ ├── RequestPocWidget.tsx │ │ ├── TabbedPage.scss │ │ └── UserWidget.tsx │ ├── containers │ │ ├── MainNavigation.Helpbar.test.tsx │ │ ├── MainNavigation.scss │ │ └── MainNavigation.tsx │ └── utils │ │ ├── index.test.ts │ │ └── index.ts ├── perf │ ├── actions │ │ └── index.ts │ ├── components │ │ ├── CellEvent.tsx │ │ ├── LazySVG.tsx │ │ ├── PageSpinner.tsx │ │ └── ScrollDetector.tsx │ └── reducers │ │ └── index.ts ├── portals │ ├── NotesPortal.tsx │ └── TooltipPortal.tsx ├── resources │ ├── components │ │ ├── GetResource.tsx │ │ ├── GetResources.tsx │ │ └── __mocks__ │ │ │ └── GetResources.tsx │ ├── constants │ │ └── index.ts │ ├── reducers │ │ ├── helpers.test.ts │ │ └── helpers.ts │ └── selectors │ │ ├── getResourceStatus.ts │ │ ├── getResourcesStatus.test.ts │ │ ├── getResourcesStatus.ts │ │ └── index.ts ├── schemas │ ├── authorizations.ts │ ├── buckets.ts │ ├── checks.ts │ ├── dashboards.ts │ ├── endpoints.ts │ ├── index.ts │ ├── labels.ts │ ├── members.ts │ ├── orgs.ts │ ├── rules.ts │ ├── scrapers.ts │ ├── secrets.ts │ ├── tasks.ts │ ├── telegrafs.ts │ ├── templates.ts │ └── variables.ts ├── scrapers │ ├── actions │ │ ├── creators.ts │ │ └── thunks.ts │ ├── components │ │ ├── CreateScraperForm.tsx │ │ ├── CreateScraperOverlay.tsx │ │ ├── ScraperList.tsx │ │ ├── ScraperRow.tsx │ │ ├── Scrapers.test.tsx │ │ └── Scrapers.tsx │ ├── containers │ │ └── ScrapersIndex.tsx │ └── reducers │ │ └── index.ts ├── scripts │ └── apis │ │ └── index.ts ├── secrets │ ├── actions │ │ ├── creators.ts │ │ └── thunks.ts │ ├── components │ │ ├── CreateSecret │ │ │ ├── CreateSecretForm.tsx │ │ │ └── CreateSecretOverlay.tsx │ │ ├── EditSecretForm.tsx │ │ ├── EditSecretOverlay.tsx │ │ ├── SecretCard.tsx │ │ ├── SecretContextMenu.tsx │ │ ├── SecretsDropdown.tsx │ │ ├── SecretsList.tsx │ │ ├── SecretsTab.tsx │ │ └── secrets.scss │ ├── containers │ │ └── SecretsIndex.tsx │ └── reducers │ │ └── index.ts ├── settings │ └── components │ │ ├── LoadDataHeader.tsx │ │ ├── LoadDataNavigation.tsx │ │ ├── LoadDataTabbedPage.tsx │ │ ├── SettingsHeader.tsx │ │ ├── SettingsNavigation.tsx │ │ └── SettingsTabbedPage.tsx ├── shared │ ├── actions │ │ ├── __mocks__ │ │ │ └── notifications.ts │ │ ├── app.ts │ │ ├── autoRefresh.ts │ │ ├── currentDashboard.ts │ │ ├── currentExplorer.ts │ │ ├── flags.ts │ │ ├── fluxDocs.ts │ │ └── notifications.ts │ ├── apis │ │ ├── query.test.ts │ │ ├── query.ts │ │ ├── queryCache.ts │ │ ├── sfdc.ts │ │ └── singleQuery.ts │ ├── components │ │ ├── AddResourceDropdown.tsx │ │ ├── AutoDomainInput.scss │ │ ├── AutoDomainInput.tsx │ │ ├── BoxTooltip.scss │ │ ├── BoxTooltip.tsx │ │ ├── CSVExportButton.tsx │ │ ├── ClickOutside.tsx │ │ ├── CloudUpgradeButton.tsx │ │ ├── CloudUpgradeNavBanner.scss │ │ ├── CloudUpgradeNavBanner.tsx │ │ ├── CodeSnippet.scss │ │ ├── CodeSnippet.tsx │ │ ├── ColorDropdown.scss │ │ ├── ColorDropdown.tsx │ │ ├── CopyButton.tsx │ │ ├── CopyResourceID.scss │ │ ├── CopyResourceID.tsx │ │ ├── CopyToClipboard.tsx │ │ ├── CreditCardForm │ │ │ ├── index.test.tsx │ │ │ └── index.tsx │ │ ├── DashboardRoute.tsx │ │ ├── DataListening │ │ │ ├── ConnectionInformation.test.tsx │ │ │ └── ConnectionInformation.tsx │ │ ├── DefaultErrorMessage.tsx │ │ ├── DeleteDataForm │ │ │ └── TimeRangeDropdown.tsx │ │ ├── DragAndDrop.scss │ │ ├── DragAndDrop.tsx │ │ ├── DropdownList.tsx │ │ ├── DurationInput.tsx │ │ ├── DurationSelector.test.tsx │ │ ├── DurationSelector.tsx │ │ ├── DynamicFunctionsList.tsx │ │ ├── EditableName.scss │ │ ├── EmptyGraphError.scss │ │ ├── EmptyGraphError.tsx │ │ ├── EmptyGraphErrorTooltip.tsx │ │ ├── EmptyGraphMessage.tsx │ │ ├── EmptyQueryView.tsx │ │ ├── ErrorBoundary.tsx │ │ ├── EventMarker.tsx │ │ ├── EventMarkerTooltip.scss │ │ ├── EventMarkerTooltip.tsx │ │ ├── EventMarkers.scss │ │ ├── EventMarkers.test.tsx │ │ ├── EventMarkers.tsx │ │ ├── Filter.test.tsx │ │ ├── Filter.tsx │ │ ├── FilterList.tsx │ │ ├── FilterList │ │ │ ├── FilterList.tsx │ │ │ ├── InjectionOption.tsx │ │ │ ├── MinimalistInjectOption.tsx │ │ │ └── MinimalistInjectionOption.scss │ │ ├── FluxMonacoEditor.tsx │ │ ├── GetInfluxButton.tsx │ │ ├── GreaterThresholdMarker.tsx │ │ ├── GroupedFunctionsList.tsx │ │ ├── ImportOverlay.scss │ │ ├── ImportOverlay.tsx │ │ ├── InfluxQLMonacoEditor.tsx │ │ ├── LessThresholdMarker.tsx │ │ ├── ManualRefresh.tsx │ │ ├── MarkdownMonacoEditor.tsx │ │ ├── MonacoEditor.scss │ │ ├── MultipleInput.scss │ │ ├── MultipleInput.test.tsx │ │ ├── MultipleInput.tsx │ │ ├── MultipleRows.test.tsx │ │ ├── MultipleRows.tsx │ │ ├── NotFound.scss │ │ ├── NotFound.tsx │ │ ├── PresentationModeToggle.tsx │ │ ├── RangeThresholdMarkers.tsx │ │ ├── RefreshingView.tsx │ │ ├── Row.test.tsx │ │ ├── Row.tsx │ │ ├── SearchableDropdown.scss │ │ ├── SearchableDropdown.tsx │ │ ├── SocialButton.tsx │ │ ├── SqlMonacoEditor.tsx │ │ ├── TagInput.scss │ │ ├── TagSelectorCount.scss │ │ ├── TagSelectorCount.tsx │ │ ├── ThresholdMarker.tsx │ │ ├── ThresholdMarkerArea.tsx │ │ ├── ThresholdMarkers.scss │ │ ├── ThresholdMarkers.tsx │ │ ├── ThresholdSetting.tsx │ │ ├── ThresholdsSettings.scss │ │ ├── TimeRangeDropdown.tsx │ │ ├── TimeSeries.tsx │ │ ├── TimeZoneDropdown.tsx │ │ ├── TokenCodeSnippet.tsx │ │ ├── TomlMonacoEditor.tsx │ │ ├── URIFormElement.test.tsx │ │ ├── URIFormElement.tsx │ │ ├── VersionInfo.scss │ │ ├── VersionInfo.test.tsx │ │ ├── VersionInfo.tsx │ │ ├── VersionInfoOSS.tsx │ │ ├── WaitingText.scss │ │ ├── WaitingText.tsx │ │ ├── __mocks__ │ │ │ └── FluxMonacoEditor.tsx │ │ ├── avatar │ │ │ └── Avatar.scss │ │ ├── cells │ │ │ ├── Cell.scss │ │ │ ├── Cell.tsx │ │ │ ├── CellCloneOverlay.tsx │ │ │ ├── CellContext.tsx │ │ │ ├── CellContextDangerItem.tsx │ │ │ ├── CellContextItem.tsx │ │ │ ├── CellHeader.tsx │ │ │ ├── CellHeaderNote.tsx │ │ │ ├── CellHeaderNoteTooltip.scss │ │ │ ├── DashboardCells.tsx │ │ │ ├── Dashboards.scss │ │ │ ├── GradientBorder.scss │ │ │ ├── GradientBorder.tsx │ │ │ └── react-grid-layout.scss │ │ ├── cloud │ │ │ ├── CloudEnv.test.tsx │ │ │ ├── CloudExclude.tsx │ │ │ ├── CloudOnly.scss │ │ │ └── CloudOnly.tsx │ │ ├── context_menu │ │ │ ├── Context.tsx │ │ │ ├── ContextMenu.scss │ │ │ ├── ContextMenu.tsx │ │ │ └── ContextMenuItem.tsx │ │ ├── countdown │ │ │ └── Countdown.tsx │ │ ├── cta.scss │ │ ├── dangerConfirmation │ │ │ ├── DangerConfirmationForm.tsx │ │ │ └── DangerConfirmationOverlay.tsx │ │ ├── dapperScrollbars │ │ │ └── DapperScrollbars.scss │ │ ├── dashed_button │ │ │ ├── DashedButton.scss │ │ │ └── DashedButton.tsx │ │ ├── dateRangePicker │ │ │ ├── DatePicker.tsx │ │ │ ├── DateRangePicker.scss │ │ │ ├── DateRangePicker.test.tsx │ │ │ ├── DateRangePicker.tsx │ │ │ ├── NewDatePicker.tsx │ │ │ └── utils.ts │ │ ├── draggable_column │ │ │ └── DraggableColumn.tsx │ │ ├── dropdown_auto_refresh │ │ │ ├── AutoRefreshDropdown.scss │ │ │ └── AutoRefreshDropdown.tsx │ │ ├── editable_description │ │ │ ├── EditableDescription.scss │ │ │ └── EditableDescription.tsx │ │ ├── functions │ │ │ └── perFunction │ │ │ │ ├── FluxDocsTooltipContent.tsx │ │ │ │ └── FunctionToolTipContent.tsx │ │ ├── graph_tips │ │ │ ├── GraphTips.scss │ │ │ └── GraphTips.tsx │ │ ├── inlineLabels │ │ │ ├── InlineLabelPopover.tsx │ │ │ ├── InlineLabels.scss │ │ │ ├── InlineLabels.test.tsx │ │ │ ├── InlineLabels.tsx │ │ │ ├── InlineLabelsCreateLabelButton.tsx │ │ │ ├── InlineLabelsEditor.scss │ │ │ ├── InlineLabelsEditor.test.tsx │ │ │ ├── InlineLabelsEditor.tsx │ │ │ ├── InlineLabelsList.test.tsx │ │ │ ├── InlineLabelsList.tsx │ │ │ └── InlineLabelsListItem.tsx │ │ ├── lastRunTaskStatus │ │ │ ├── LastRunTaskStatus.scss │ │ │ └── LastRunTaskStatus.tsx │ │ ├── notifications │ │ │ ├── Notification.scss │ │ │ ├── NotificationButtons.tsx │ │ │ └── Notifications.tsx │ │ ├── protoboard_icon │ │ │ └── ProtoboardIcon.scss │ │ ├── resource_fetcher │ │ │ ├── ResourceFetcher.tsx │ │ │ └── index.ts │ │ ├── resource_sort_dropdown │ │ │ ├── ResourceSortDropdown.tsx │ │ │ └── generateSortItems.ts │ │ ├── search_widget │ │ │ ├── SearchWidget.scss │ │ │ └── SearchWidget.tsx │ │ ├── selectorList │ │ │ ├── SelectorList.scss │ │ │ ├── SelectorList.tsx │ │ │ ├── SelectorListBody.tsx │ │ │ ├── SelectorListEmpty.tsx │ │ │ ├── SelectorListHeader.tsx │ │ │ └── SelectorListMenu.tsx │ │ ├── sorting_hat │ │ │ ├── SortingHat.test.tsx │ │ │ └── SortingHat.tsx │ │ ├── tabbed_page │ │ │ ├── TabbedPage.scss │ │ │ └── TabbedPageHeader.tsx │ │ ├── tables │ │ │ └── TableGraphs.scss │ │ ├── toolbar │ │ │ ├── Toolbar.scss │ │ │ └── Toolbar.tsx │ │ ├── views │ │ │ ├── Markdown.scss │ │ │ ├── MarkdownRenderer.tsx │ │ │ └── ScrollableMarkdown.tsx │ │ ├── wizard │ │ │ ├── ProgressBar.scss │ │ │ ├── ProgressBar.tsx │ │ │ ├── WizardFullScreen.scss │ │ │ ├── WizardFullScreen.tsx │ │ │ ├── WizardOverlay.scss │ │ │ ├── WizardOverlay.tsx │ │ │ ├── WizardProgressHeader.scss │ │ │ └── WizardProgressHeader.tsx │ │ └── zuora │ │ │ ├── ZuoraOutagePage.scss │ │ │ ├── ZuoraOutagePage.tsx │ │ │ └── ZuoraOutagePanel.tsx │ ├── constants │ │ ├── colorOperations.ts │ │ ├── fluxFunctions.ts │ │ ├── graphColorPalettes.ts │ │ ├── index.ts │ │ ├── queryBuilder.ts │ │ ├── routes.ts │ │ ├── thresholds.ts │ │ ├── timeRanges.ts │ │ ├── timeZones.ts │ │ └── wizard.ts │ ├── containers │ │ ├── GetFlags.tsx │ │ ├── GetOrganizations.tsx │ │ ├── RouteToOrg.tsx │ │ ├── SetOrg.tsx │ │ └── index.tsx │ ├── contexts │ │ ├── app.tsx │ │ ├── buckets.tsx │ │ ├── dbrps.tsx │ │ ├── editor │ │ │ ├── index.tsx │ │ │ ├── injection.ts │ │ │ ├── insertFunction.test.ts │ │ │ └── insertFunction.ts │ │ └── query │ │ │ ├── context.tsx │ │ │ ├── index.ts │ │ │ ├── postprocessing.ts │ │ │ └── preprocessing.ts │ ├── copy │ │ ├── cell.ts │ │ └── notifications │ │ │ ├── categories │ │ │ ├── accounts-users-orgs.ts │ │ │ ├── alerts.ts │ │ │ ├── annotations.ts │ │ │ ├── auth-and-tokens.ts │ │ │ ├── billing-checkout.ts │ │ │ ├── buckets.ts │ │ │ ├── dashboard.ts │ │ │ ├── functions.ts │ │ │ ├── help-and-support.ts │ │ │ ├── ingest.ts │ │ │ ├── limits.ts │ │ │ ├── notebooks.ts │ │ │ ├── onboarding.ts │ │ │ ├── operator.ts │ │ │ ├── scripts.ts │ │ │ ├── secrets.ts │ │ │ ├── subscriptions.ts │ │ │ ├── tasks.ts │ │ │ ├── template.ts │ │ │ └── variables-urlQueries.ts │ │ │ ├── common.ts │ │ │ └── index.ts │ ├── data │ │ └── autoRefreshes.ts │ ├── decorators │ │ ├── errors.tsx │ │ └── withDragDropContext.tsx │ ├── graphics │ │ ├── GoogleLogo.tsx │ │ └── MicrosoftLogo.tsx │ ├── middleware │ │ ├── queryStringConfig.ts │ │ └── resizeLayout.ts │ ├── reducers │ │ ├── app.test.ts │ │ ├── app.ts │ │ ├── autoRefresh.test.ts │ │ ├── autoRefresh.ts │ │ ├── currentDashboard.ts │ │ ├── currentExplorer.ts │ │ ├── currentPage.ts │ │ ├── flags.ts │ │ ├── fluxDocs.ts │ │ ├── index.ts │ │ ├── notifications.test.ts │ │ └── notifications.ts │ ├── search │ │ ├── DocSearch.tsx │ │ ├── GlobalSearch.scss │ │ ├── GlobalSearch.tsx │ │ └── HitComponent.tsx │ ├── selectors │ │ ├── app.ts │ │ ├── currentContext.ts │ │ ├── flags.ts │ │ └── notifications.ts │ ├── tabbedPage │ │ └── TabbedPageTabs.tsx │ ├── thunks │ │ ├── app.ts │ │ └── flags.ts │ ├── utils │ │ ├── __mocks__ │ │ │ └── errors.ts │ │ ├── addAnnotationToCSV.test.ts │ │ ├── addAnnotationToCSV.ts │ │ ├── ast.ts │ │ ├── convertUserInput.test.ts │ │ ├── convertUserInput.ts │ │ ├── dataListening.ts │ │ ├── dateTimeUtils.test.ts │ │ ├── dateTimeUtils.ts │ │ ├── debouncer.ts │ │ ├── download.ts │ │ ├── downloads.test.ts │ │ ├── duration.test.tsx │ │ ├── duration.ts │ │ ├── errors.ts │ │ ├── featureFlag.test.ts │ │ ├── featureFlag.ts │ │ ├── filterUnusedVars.test.ts │ │ ├── filterUnusedVars.ts │ │ ├── fluxExample.test.ts │ │ ├── fluxExample.ts │ │ ├── fluxFunctions.ts │ │ ├── formatOrgRoute.ts │ │ ├── functions.ts │ │ ├── getMinDurationFromAST.test.ts │ │ ├── getMinDurationFromAST.ts │ │ ├── insertPreambleInScript.ts │ │ ├── mocks │ │ │ ├── data.ts │ │ │ ├── mockedParse.ts │ │ │ └── resourceToTemplate.ts │ │ ├── move.test.ts │ │ ├── move.ts │ │ ├── pageTitles.test.ts │ │ ├── pageTitles.ts │ │ ├── pluralize.ts │ │ ├── rangeToInterval.test.ts │ │ ├── rangeToInterval.ts │ │ ├── relativeTimestampFormatter.ts │ │ ├── sort.test.ts │ │ ├── sort.ts │ │ ├── toComponentStatus.ts │ │ ├── useDragBehavior.ts │ │ ├── useMountedEffect.ts │ │ ├── useOneWayReducer.ts │ │ ├── useOneWayState.ts │ │ ├── validateURI.ts │ │ ├── vis.test.ts │ │ └── vis.ts │ └── workers │ │ ├── downloadHelper.ts │ │ └── serviceWorker.ts ├── store │ ├── configureStore.test.ts │ ├── configureStore.ts │ ├── history.ts │ └── persistStateEnhancer.ts ├── style │ ├── _helpers.scss │ ├── _variables.scss │ ├── chronograf.scss │ └── modules.scss ├── support │ └── components │ │ ├── ConfirmationOverlay.tsx │ │ ├── ContactSupport.scss │ │ ├── ContactSupportOverlay.tsx │ │ └── FeedbackQuestionsOverlay.tsx ├── tasks │ ├── actions │ │ ├── creators.ts │ │ ├── thunks.test.ts │ │ └── thunks.ts │ ├── apis │ │ └── index.ts │ ├── components │ │ ├── EmptyTasksList.tsx │ │ ├── PageBreadcrumbs.tsx │ │ ├── RunLogRow.tsx │ │ ├── RunLogRowFlux.tsx │ │ ├── RunLogsList.scss │ │ ├── RunLogsList.tsx │ │ ├── TaskCard.test.tsx │ │ ├── TaskCard.tsx │ │ ├── TaskForm.scss │ │ ├── TaskForm.tsx │ │ ├── TaskHeader.tsx │ │ ├── TaskImportOverlay.tsx │ │ ├── TaskRunsCard.tsx │ │ ├── TaskRunsList.tsx │ │ ├── TaskRunsPage.test.tsx │ │ ├── TaskRunsPage.tsx │ │ ├── TaskRunsRow.tsx │ │ ├── TaskScheduleFormField.tsx │ │ ├── TaskScheduler │ │ │ ├── ScriptSelector.tsx │ │ │ ├── TaskIntervalForm.tsx │ │ │ ├── TaskScheduler.scss │ │ │ └── TaskScheduler.tsx │ │ ├── TasksHeader.tsx │ │ ├── TasksList.test.tsx │ │ ├── TasksList.tsx │ │ ├── TasksOptionsBucketDropdown.tsx │ │ ├── TasksPage.scss │ │ ├── TemplateBrowserEmpty.tsx │ │ └── tasksPagination.scss │ ├── containers │ │ ├── TaskEditPage.tsx │ │ ├── TaskPage.test.tsx │ │ ├── TaskPage.tsx │ │ ├── TasksPage.test.tsx │ │ └── TasksPage.tsx │ └── reducers │ │ ├── helpers.ts │ │ ├── index.ts │ │ └── tasks.test.ts ├── telegrafs │ ├── actions │ │ ├── creators.ts │ │ └── thunks.ts │ ├── components │ │ ├── CollectorCard.scss │ │ ├── CollectorCard.tsx │ │ ├── CollectorList.tsx │ │ ├── Collectors.test.tsx │ │ ├── Collectors.tsx │ │ ├── TelegrafConfig.tsx │ │ ├── TelegrafConfigOverlay.scss │ │ ├── TelegrafConfigOverlay.tsx │ │ ├── TelegrafConfigOverlayForm.tsx │ │ ├── TelegrafExplainer.tsx │ │ ├── TelegrafInstructionsOverlay.tsx │ │ ├── TelegrafOutputOverlay.test.tsx │ │ └── TelegrafOutputOverlay.tsx │ ├── containers │ │ └── TelegrafsPage.tsx │ └── reducers │ │ └── index.ts ├── templates │ ├── actions │ │ ├── creators.ts │ │ └── thunks.ts │ ├── api │ │ ├── index.test.ts │ │ └── index.ts │ ├── components │ │ ├── CommunityTemplateEnvReferences.tsx │ │ ├── CommunityTemplateHumanReadableResource.tsx │ │ ├── CommunityTemplateInstallInstructions.tsx │ │ ├── CommunityTemplateInstallInstructionsIcon.tsx │ │ ├── CommunityTemplateInstallOverlay.test.tsx │ │ ├── CommunityTemplateInstallOverlay.tsx │ │ ├── CommunityTemplateListGroup.tsx │ │ ├── CommunityTemplateListItem.tsx │ │ ├── CommunityTemplateOverlay.tsx │ │ ├── CommunityTemplateParameters.tsx │ │ ├── CommunityTemplateReadMeOverlay.tsx │ │ ├── CommunityTemplateReadme.tsx │ │ ├── CommunityTemplateResourceContent.tsx │ │ ├── CommunityTemplatesInstalledList.test.tsx │ │ ├── CommunityTemplatesInstalledList.tsx │ │ ├── CommunityTemplatesResourceSummary.tsx │ │ └── CreateFromTemplateOverlay.scss │ ├── constants │ │ └── defaultTemplates.ts │ ├── containers │ │ ├── CommunityTemplates.scss │ │ ├── CommunityTemplatesIndex.test.tsx │ │ └── CommunityTemplatesIndex.tsx │ ├── reducers │ │ ├── index.test.ts │ │ └── index.ts │ ├── selectors │ │ └── index.ts │ └── utils │ │ ├── index.test.ts │ │ └── index.ts ├── timeMachine │ ├── actions │ │ ├── index.ts │ │ ├── queries.ts │ │ ├── queryBuilder.ts │ │ └── queryBuilderThunks.ts │ ├── apis │ │ ├── QueryBuilderFetcher.ts │ │ ├── __mocks__ │ │ │ └── queryBuilder.ts │ │ └── queryBuilder.ts │ ├── components │ │ ├── AddCardButton.tsx │ │ ├── AggregationSelector.tsx │ │ ├── EditorShortcutsTooltip.scss │ │ ├── EditorShortcutsTooltip.tsx │ │ ├── FillValues.tsx │ │ ├── FluxToolbar.scss │ │ ├── FluxToolbar.tsx │ │ ├── FluxToolbarSearch.tsx │ │ ├── FluxToolbarTab.tsx │ │ ├── FunctionModeSelector.tsx │ │ ├── Queries.scss │ │ ├── Queries.tsx │ │ ├── QueriesSwitcher.scss │ │ ├── QueriesSwitcher.tsx │ │ ├── QueriesTimer.tsx │ │ ├── QueryBuilder.scss │ │ ├── QueryBuilder.tsx │ │ ├── QueryTab.scss │ │ ├── QueryTab.tsx │ │ ├── QueryTabName.tsx │ │ ├── QueryTabs.tsx │ │ ├── RawDataToggle.tsx │ │ ├── RawFluxDataTable.scss │ │ ├── RefreshDropdown.tsx │ │ ├── SelectorList.scss │ │ ├── SelectorList.tsx │ │ ├── SelectorListCreateBucket.tsx │ │ ├── SubmitQueryButton.test.tsx │ │ ├── SubmitQueryButton.tsx │ │ ├── TagSelector.scss │ │ ├── TagSelector.tsx │ │ ├── TimeMachine.scss │ │ ├── TimeMachine.tsx │ │ ├── TimeMachineAlerting.tsx │ │ ├── TimeMachineFluxEditor.scss │ │ ├── TimeMachineFluxEditor.tsx │ │ ├── ViewOptions.scss │ │ ├── ViewOptions.tsx │ │ ├── ViewTypeDropdown.tsx │ │ ├── Vis.tsx │ │ ├── VisOptionsButton.tsx │ │ ├── WindowPeriod.tsx │ │ ├── builderCard │ │ │ ├── BuilderCard.scss │ │ │ ├── BuilderCard.tsx │ │ │ ├── BuilderCardBody.tsx │ │ │ ├── BuilderCardDropdownHeader.tsx │ │ │ ├── BuilderCardEmpty.tsx │ │ │ ├── BuilderCardHeader.tsx │ │ │ └── BuilderCardMenu.tsx │ │ ├── queryBuilder │ │ │ └── BucketsSelector.tsx │ │ └── variableToolbar │ │ │ ├── VariableItem.tsx │ │ │ ├── VariableToolbar.tsx │ │ │ ├── VariableTooltipContents.test.tsx │ │ │ └── VariableTooltipContents.tsx │ ├── constants │ │ ├── queryBuilder.test.ts │ │ └── queryBuilder.ts │ ├── reducers │ │ ├── index.test.ts │ │ └── index.ts │ ├── selectors │ │ ├── index.test.ts │ │ └── index.ts │ └── utils │ │ ├── queryBuilder.test.ts │ │ ├── queryBuilder.ts │ │ └── rawFluxDataTable.ts ├── types │ ├── adminds.ts │ ├── alerting.ts │ ├── annotation.ts │ ├── app.ts │ ├── arguments.ts │ ├── ast.ts │ ├── auth.ts │ ├── autoRefresh.ts │ ├── billing.ts │ ├── buckets.ts │ ├── checks.ts │ ├── colors.ts │ ├── common.ts │ ├── dashboards.ts │ ├── dataExplorer.ts │ ├── dataLoaders.ts │ ├── documents.ts │ ├── error.ts │ ├── eventViewer.ts │ ├── flows.ts │ ├── flux.ts │ ├── form.ts │ ├── geo.ts │ ├── histogram.ts │ ├── hosts.ts │ ├── index.ts │ ├── influxAdmin.ts │ ├── labels.ts │ ├── layouts.ts │ ├── localStorage.ts │ ├── logEvent.ts │ ├── marketplace.ts │ ├── me.ts │ ├── members.ts │ ├── monaco.ts │ ├── notifications.ts │ ├── operator.ts │ ├── orgs.ts │ ├── overlay.ts │ ├── promises.ts │ ├── queries.ts │ ├── redux.ts │ ├── resources.ts │ ├── run.ts │ ├── schemas.ts │ ├── scrapers.ts │ ├── scripts.ts │ ├── secrets.ts │ ├── services.ts │ ├── shared.ts │ ├── sources.ts │ ├── stores.ts │ ├── subscriptions.ts │ ├── tasks.ts │ ├── telegraf.ts │ ├── templates.ts │ ├── timeMachine.ts │ ├── timeZones.ts │ ├── tokens.ts │ ├── users.ts │ ├── variables.ts │ └── views.ts ├── usage │ ├── BillingStatsPanel.scss │ ├── BillingStatsPanel.tsx │ ├── RateLimits.tsx │ ├── UsageDropdown.tsx │ ├── UsagePage.tsx │ ├── UsageResults.tsx │ ├── UsageSingleStat.tsx │ ├── UsageTimeRangeDropdown.tsx │ ├── UsageToday.tsx │ ├── UsageXYGraph.scss │ ├── UsageXYGraph.tsx │ └── context │ │ ├── usage.test.ts │ │ └── usage.tsx ├── userSettings │ ├── actions │ │ └── index.ts │ └── reducers │ │ └── index.ts ├── users │ ├── components │ │ ├── InviteListContextMenu.tsx │ │ ├── InviteListItem.tsx │ │ ├── RemoveMemberOverlay.tsx │ │ ├── UserInviteSubmit.tsx │ │ ├── UserList.scss │ │ ├── UserList.tsx │ │ ├── UserListContainer.tsx │ │ ├── UserListInviteForm.tsx │ │ ├── UserListItem.tsx │ │ ├── Users.tsx │ │ ├── UsersPage.test.tsx │ │ └── UsersPage.tsx │ ├── constants │ │ └── index.ts │ ├── context │ │ └── users.tsx │ ├── hooks │ │ └── useEvent.tsx │ └── utils │ │ └── filter.ts ├── utils │ ├── AutoRefresher.ts │ ├── Deferred.ts │ ├── SafeBlankLink.tsx │ ├── analyticsTools.ts │ ├── api.ts │ ├── autoAggregateRequirements.test.ts │ ├── autoAggregateRequirements.ts │ ├── basepath.test.ts │ ├── basepath.ts │ ├── crossPlatform.test.ts │ ├── crossPlatform.ts │ ├── csvParser │ │ ├── parser.test.ts │ │ ├── parser.ts │ │ ├── reader.ts │ │ └── utils.ts │ ├── datetime │ │ ├── FormattedDateTime.test.tsx │ │ ├── FormattedDateTime.tsx │ │ ├── README.md │ │ ├── constants.ts │ │ ├── formatters.test.ts │ │ ├── formatters.ts │ │ ├── validator.test.ts │ │ └── validator.ts │ ├── deepLinks.ts │ ├── env.test.ts │ ├── env.ts │ ├── fast.test.ts │ ├── fast.ts │ ├── formatting.test.ts │ ├── formatting.ts │ ├── naming.test.ts │ ├── naming.ts │ ├── nodes.ts │ ├── safeBlankLinkOpen.ts │ ├── taskOptionsToFluxScript.ts │ ├── wrappers.test.ts │ └── wrappers.ts ├── variables │ ├── actions │ │ ├── creators.ts │ │ ├── thunks.test.ts │ │ └── thunks.ts │ ├── apis │ │ └── index.ts │ ├── components │ │ ├── CSVVariableBuilder.tsx │ │ ├── CreateVariableOverlay.scss │ │ ├── CreateVariableOverlay.tsx │ │ ├── MapVariableBuilder.tsx │ │ ├── RenameVariableForm.tsx │ │ ├── RenameVariableOverlay.tsx │ │ ├── TypeAheadVariableDropdown.test.tsx │ │ ├── TypeAheadVariableDropdown.tsx │ │ ├── UpdateVariableOverlay.tsx │ │ ├── VariableArgumentsEditor.tsx │ │ ├── VariableCard.tsx │ │ ├── VariableContextMenu.tsx │ │ ├── VariableDropdown.scss │ │ ├── VariableDropdown.test.tsx │ │ ├── VariableDropdown.tsx │ │ ├── VariableForm.test.tsx │ │ ├── VariableForm.tsx │ │ ├── VariableFormContext.test.tsx │ │ ├── VariableFormContext.tsx │ │ ├── VariableImportOverlay.tsx │ │ ├── VariableList.tsx │ │ ├── Variables.test.tsx │ │ ├── VariablesTab.test.tsx │ │ └── VariablesTab.tsx │ ├── constants │ │ └── index.ts │ ├── containers │ │ └── VariablesIndex.tsx │ ├── mocks │ │ └── index.ts │ ├── reducers │ │ ├── editor.ts │ │ ├── index.test.ts │ │ └── index.ts │ ├── selectors │ │ ├── index.test.tsx │ │ └── index.tsx │ └── utils │ │ ├── ValueFetcher.test.ts │ │ ├── ValueFetcher.ts │ │ ├── astim.ts │ │ ├── buildVarsOption.ts │ │ ├── exportVariables.test.ts │ │ ├── exportVariables.ts │ │ ├── formatExpression.ts │ │ ├── formatVarsOption.test.ts │ │ ├── formatVarsOption.ts │ │ ├── getTimeRangeVars.test.ts │ │ ├── getTimeRangeVars.ts │ │ ├── getWindowVars.test.ts │ │ ├── getWindowVars.ts │ │ ├── hydrateVars.test.ts │ │ ├── hydrateVars.ts │ │ ├── mapBuilder.test.ts │ │ ├── mapBuilder.ts │ │ ├── resolveSelectedValue.ts │ │ ├── validation.test.ts │ │ └── validation.ts ├── views │ ├── actions │ │ ├── creators.ts │ │ └── thunks.ts │ ├── helpers │ │ ├── index.test.ts │ │ └── index.ts │ ├── reducers │ │ └── index.ts │ └── selectors │ │ ├── index.test.ts │ │ └── index.ts ├── visualization │ ├── README.md │ ├── components │ │ ├── View.test.tsx │ │ ├── View.tsx │ │ ├── ViewOptions.tsx │ │ ├── ViewTypeDropdown.scss │ │ ├── ViewTypeDropdown.tsx │ │ └── internal │ │ │ ├── AdaptiveZoomOption.tsx │ │ │ ├── AxisTicksGenerator.tsx │ │ │ ├── ColorSchemeDropdown.tsx │ │ │ ├── ColorSchemeDropdownItem.scss │ │ │ ├── ColorSchemeDropdownItem.tsx │ │ │ ├── DecimalPlaces.tsx │ │ │ ├── HexColorSchemeDropdown.tsx │ │ │ ├── HoverLegend.tsx │ │ │ ├── LegendOptions.scss │ │ │ ├── LegendOptions.tsx │ │ │ ├── StaticLegend.scss │ │ │ ├── StaticLegend.tsx │ │ │ ├── ThresholdsSettings.test.tsx │ │ │ ├── ThresholdsSettings.tsx │ │ │ ├── TimeTickInput.tsx │ │ │ ├── ValueTickInput.scss │ │ │ ├── ValueTickInput.tsx │ │ │ ├── ViewLoadingSpinner.tsx │ │ │ └── utils.ts │ ├── constants.ts │ ├── context │ │ └── pagination.tsx │ ├── index.ts │ ├── styles │ │ └── Band.scss │ ├── types │ │ ├── Band │ │ │ ├── icon.tsx │ │ │ ├── index.tsx │ │ │ ├── options.tsx │ │ │ ├── properties.ts │ │ │ └── view.tsx │ │ ├── Check │ │ │ ├── icon.tsx │ │ │ ├── index.tsx │ │ │ ├── properties.ts │ │ │ └── view.tsx │ │ ├── Gauge │ │ │ ├── constants.ts │ │ │ ├── icon.tsx │ │ │ ├── index.tsx │ │ │ ├── options.tsx │ │ │ ├── properties.ts │ │ │ └── view.tsx │ │ ├── Graph │ │ │ ├── icon.tsx │ │ │ ├── index.tsx │ │ │ ├── options.tsx │ │ │ ├── properties.ts │ │ │ └── view.tsx │ │ ├── Heatmap │ │ │ ├── icon.tsx │ │ │ ├── index.tsx │ │ │ ├── options.tsx │ │ │ ├── properties.ts │ │ │ └── view.tsx │ │ ├── Histogram │ │ │ ├── icon.tsx │ │ │ ├── index.tsx │ │ │ ├── options.tsx │ │ │ ├── properties.ts │ │ │ └── view.tsx │ │ ├── Map │ │ │ ├── CustomHeatmapOptions.tsx │ │ │ ├── GeoOptions.scss │ │ │ ├── GeoOptions.tsx │ │ │ ├── LatLonColumnOptions.tsx │ │ │ ├── S2ColumnOptions.tsx │ │ │ ├── icon.tsx │ │ │ ├── index.tsx │ │ │ ├── properties.ts │ │ │ ├── utils.ts │ │ │ ├── view.test.tsx │ │ │ └── view.tsx │ │ ├── Mosaic │ │ │ ├── icon.tsx │ │ │ ├── index.tsx │ │ │ ├── options.tsx │ │ │ ├── properties.ts │ │ │ └── view.tsx │ │ ├── Scatter │ │ │ ├── TimeAutoToggle.test.tsx │ │ │ ├── TimeAutoToggle.tsx │ │ │ ├── icon.tsx │ │ │ ├── index.tsx │ │ │ ├── options.tsx │ │ │ ├── properties.ts │ │ │ └── view.tsx │ │ ├── SimpleTable │ │ │ ├── icon.tsx │ │ │ ├── index.tsx │ │ │ ├── options.tsx │ │ │ ├── properties.ts │ │ │ └── view.tsx │ │ ├── SingleStat │ │ │ ├── icon.tsx │ │ │ ├── index.tsx │ │ │ ├── options.tsx │ │ │ ├── properties.ts │ │ │ └── view.tsx │ │ ├── SingleStatPlusLine │ │ │ ├── icon.tsx │ │ │ ├── index.tsx │ │ │ ├── options.tsx │ │ │ ├── properties.ts │ │ │ └── view.tsx │ │ └── Table │ │ │ ├── CellMeasurerCacheDecorator.ts │ │ │ ├── MultiGrid.tsx │ │ │ ├── Table.tsx │ │ │ ├── TableCell.test.ts │ │ │ ├── TableCell.tsx │ │ │ ├── constants.ts │ │ │ ├── icon.tsx │ │ │ ├── index.tsx │ │ │ ├── options.scss │ │ │ ├── options.tsx │ │ │ ├── properties.ts │ │ │ ├── transform.test.ts │ │ │ ├── transform.ts │ │ │ └── view.tsx │ └── utils │ │ ├── annotationUtils.test.ts │ │ ├── annotationUtils.ts │ │ ├── chartTypeName.ts │ │ ├── colorMappingUtils.test.ts │ │ ├── colorMappingUtils.ts │ │ ├── getFormatter.test.ts │ │ ├── getFormatter.ts │ │ ├── paginationUtils.test.ts │ │ ├── paginationUtils.ts │ │ ├── timeFormat.ts │ │ ├── useAxisTicksGenerator.ts │ │ ├── useBandColumns.ts │ │ ├── useLegendOpacity.ts │ │ ├── useStaticLegend.ts │ │ ├── useVisDomainSettings.test.ts │ │ ├── useVisDomainSettings.ts │ │ └── useZoomQuery.ts └── writeData │ ├── clients │ ├── Arduino │ │ ├── description.md │ │ ├── execute.example │ │ ├── executeFull.example │ │ ├── index.ts │ │ ├── initialize.example │ │ ├── logo.svg │ │ ├── query.example │ │ └── write.example │ ├── CSharp │ │ ├── description.md │ │ ├── execute.example │ │ ├── executeFull.example │ │ ├── index.ts │ │ ├── initialize.example │ │ ├── logo.svg │ │ ├── query.example │ │ ├── write.0.example │ │ ├── write.1.example │ │ └── write.2.example │ ├── Dart │ │ ├── description.md │ │ ├── dispose.example │ │ ├── execute.example │ │ ├── executeFull.example │ │ ├── index.ts │ │ ├── initialize.example │ │ ├── logo.svg │ │ ├── query.example │ │ ├── write.0.example │ │ └── write.1.example │ ├── Go │ │ ├── description.md │ │ ├── execute.example │ │ ├── executeFull.example │ │ ├── index.ts │ │ ├── initialize.example │ │ ├── logo.svg │ │ ├── query.example │ │ ├── write.0.example │ │ └── write.1.example │ ├── Java │ │ ├── description.md │ │ ├── dispose.example │ │ ├── execute.example │ │ ├── executeFull.example │ │ ├── index.ts │ │ ├── initialize.example │ │ ├── logo.svg │ │ ├── query.example │ │ ├── write.0.example │ │ ├── write.1.example │ │ └── write.2.example │ ├── Javascript │ │ ├── description.md │ │ ├── execute.example │ │ ├── executeFull.example │ │ ├── index.ts │ │ ├── initialize.example │ │ ├── logo.svg │ │ ├── query.example │ │ └── write.example │ ├── Kotlin │ │ ├── description.md │ │ ├── dispose.example │ │ ├── execute.example │ │ ├── executeFull.example │ │ ├── index.ts │ │ ├── initialize.example │ │ ├── logo.svg │ │ ├── query.example │ │ ├── write.0.example │ │ ├── write.1.example │ │ └── write.2.example │ ├── PHP │ │ ├── description.md │ │ ├── dispose.example │ │ ├── execute.example │ │ ├── executeFull.example │ │ ├── index.ts │ │ ├── initialize.example │ │ ├── logo.svg │ │ ├── query.example │ │ ├── write.0.example │ │ ├── write.1.example │ │ └── write.2.example │ ├── Python │ │ ├── description.md │ │ ├── dispose.example │ │ ├── execute.example │ │ ├── executeFull.example │ │ ├── index.ts │ │ ├── initialize.example │ │ ├── logo.svg │ │ ├── query.example │ │ ├── write.0.example │ │ ├── write.1.example │ │ └── write.2.example │ ├── R │ │ ├── description.md │ │ ├── execute.example │ │ ├── index.ts │ │ ├── initialize.example │ │ ├── logo.svg │ │ ├── query.example │ │ └── write.example │ ├── Ruby │ │ ├── description.md │ │ ├── dispose.example │ │ ├── execute.example │ │ ├── executeFull.example │ │ ├── index.ts │ │ ├── initialize.example │ │ ├── logo.svg │ │ ├── query.example │ │ ├── write.0.example │ │ ├── write.1.example │ │ ├── write.2.example │ │ └── write.3.example │ ├── Scala │ │ ├── description.md │ │ ├── dispose.example │ │ ├── execute.example │ │ ├── executeFull.example │ │ ├── index.ts │ │ ├── initialize.example │ │ ├── logo.svg │ │ ├── query.example │ │ ├── write.0.example │ │ ├── write.1.example │ │ └── write.2.example │ └── Swift │ │ ├── description.md │ │ ├── dispose.example │ │ ├── execute.example │ │ ├── executeFull.example │ │ ├── index.ts │ │ ├── initialize.example │ │ ├── logo.svg │ │ ├── query.example │ │ ├── write.0.example │ │ ├── write.1.example │ │ └── write.2.example │ ├── components │ ├── AddPluginToConfiguration.scss │ ├── AddPluginToConfiguration.tsx │ ├── ClientCodeCopyPage │ │ ├── InstallPackageHelper.scss │ │ ├── InstallPackageHelper.tsx │ │ └── index.tsx │ ├── ClientCodeQueryHelper.tsx │ ├── ClientLibrarySection.tsx │ ├── FileUploadSection.tsx │ ├── PluginAddToExistingConfiguration │ │ ├── Configure.tsx │ │ ├── Customize.tsx │ │ ├── Footer.tsx │ │ ├── StepSwitcher.tsx │ │ └── Wizard.tsx │ ├── PluginCreateConfiguration │ │ ├── Configure.tsx │ │ ├── CreateBucket.tsx │ │ ├── Customize.tsx │ │ ├── Footer.tsx │ │ ├── StepSwitcher.tsx │ │ └── Wizard.tsx │ ├── TelegrafPluginSection.tsx │ ├── WriteDataDetailsContext.tsx │ ├── WriteDataDetailsView.scss │ ├── WriteDataHelper.tsx │ ├── WriteDataHelperBuckets.tsx │ ├── WriteDataItem.scss │ ├── WriteDataItem.tsx │ ├── WriteDataSearchBar.tsx │ ├── WriteDataSections.tsx │ ├── fileUploads │ │ ├── AnnotatedCSV.md │ │ ├── CSV.md │ │ ├── CsvMethod.tsx │ │ ├── FileUploads.scss │ │ ├── LP.md │ │ └── UploadDataDetailsView.tsx │ ├── telegrafInputPluginsConfigurationText │ │ ├── activemq.conf │ │ ├── aerospike.conf │ │ ├── aliyuncms.conf │ │ ├── amd_rocm_smi.conf │ │ ├── amqp_consumer.conf │ │ ├── apache.conf │ │ ├── apcupsd.conf │ │ ├── aurora.conf │ │ ├── azure_storage_queue.conf │ │ ├── bcache.conf │ │ ├── beanstalkd.conf │ │ ├── beat.conf │ │ ├── bind.conf │ │ ├── bond.conf │ │ ├── burrow.conf │ │ ├── cassandra.conf │ │ ├── ceph.conf │ │ ├── cgroup.conf │ │ ├── chrony.conf │ │ ├── cisco_telemetry_mdt.conf │ │ ├── clickhouse.conf │ │ ├── cloud_pubsub.conf │ │ ├── cloud_pubsub_push.conf │ │ ├── cloudwatch.conf │ │ ├── cloudwatch_metric_streams.conf │ │ ├── conntrack.conf │ │ ├── consul.conf │ │ ├── consul_agent.conf │ │ ├── couchbase.conf │ │ ├── couchdb.conf │ │ ├── cpu.conf │ │ ├── csgo.conf │ │ ├── dcos.conf │ │ ├── directory_monitor.conf │ │ ├── disk.conf │ │ ├── diskio.conf │ │ ├── disque.conf │ │ ├── dmcache.conf │ │ ├── dns_query.conf │ │ ├── docker.conf │ │ ├── docker_log.conf │ │ ├── dovecot.conf │ │ ├── dpdk.conf │ │ ├── ecs.conf │ │ ├── elasticsearch.conf │ │ ├── elasticsearch_query.conf │ │ ├── ethtool.conf │ │ ├── eventhub_consumer.conf │ │ ├── exec.conf │ │ ├── execd.conf │ │ ├── fail2ban.conf │ │ ├── fibaro.conf │ │ ├── file.conf │ │ ├── filecount.conf │ │ ├── filestat.conf │ │ ├── fireboard.conf │ │ ├── fluentd.conf │ │ ├── github.conf │ │ ├── gnmi.conf │ │ ├── graylog.conf │ │ ├── haproxy.conf │ │ ├── hddtemp.conf │ │ ├── http.conf │ │ ├── http_listener.conf │ │ ├── http_listener_v2.conf │ │ ├── http_response.conf │ │ ├── httpjson.conf │ │ ├── hugepages.conf │ │ ├── icinga2.conf │ │ ├── infiniband.conf │ │ ├── influxdb.conf │ │ ├── influxdb_listener.conf │ │ ├── influxdb_v2_listener.conf │ │ ├── intel_pmu.conf │ │ ├── intel_powerstat.conf │ │ ├── intel_rdt.conf │ │ ├── internal.conf │ │ ├── internet_speed.conf │ │ ├── interrupts.conf │ │ ├── ipmi_sensor.conf │ │ ├── ipset.conf │ │ ├── iptables.conf │ │ ├── ipvs.conf │ │ ├── jenkins.conf │ │ ├── jolokia.conf │ │ ├── jolokia2.conf │ │ ├── jolokia2_agent.conf │ │ ├── jolokia2_proxy.conf │ │ ├── jti_openconfig_telemetry.conf │ │ ├── kafka_consumer.conf │ │ ├── kafka_consumer_legacy.conf │ │ ├── kapacitor.conf │ │ ├── kernel.conf │ │ ├── kernel_vmstat.conf │ │ ├── kibana.conf │ │ ├── kinesis_consumer.conf │ │ ├── knx_listener.conf │ │ ├── kube_inventory.conf │ │ ├── kubernetes.conf │ │ ├── lanz.conf │ │ ├── leofs.conf │ │ ├── linux_cpu.conf │ │ ├── linux_sysctl_fs.conf │ │ ├── logparser.conf │ │ ├── logstash.conf │ │ ├── lustre2.conf │ │ ├── lvm.conf │ │ ├── mailchimp.conf │ │ ├── marklogic.conf │ │ ├── mcrouter.conf │ │ ├── mdstat.conf │ │ ├── mem.conf │ │ ├── memcached.conf │ │ ├── mesos.conf │ │ ├── minecraft.conf │ │ ├── mock.conf │ │ ├── modbus.conf │ │ ├── mongodb.conf │ │ ├── monit.conf │ │ ├── mqtt_consumer.conf │ │ ├── multifile.conf │ │ ├── mysql.conf │ │ ├── nats.conf │ │ ├── nats_consumer.conf │ │ ├── neptune_apex.conf │ │ ├── net.conf │ │ ├── net_response.conf │ │ ├── netstat.conf │ │ ├── nfsclient.conf │ │ ├── nginx.conf │ │ ├── nginx_plus.conf │ │ ├── nginx_plus_api.conf │ │ ├── nginx_sts.conf │ │ ├── nginx_upstream_check.conf │ │ ├── nginx_vts.conf │ │ ├── nomad.conf │ │ ├── nsd.conf │ │ ├── nsq.conf │ │ ├── nsq_consumer.conf │ │ ├── nstat.conf │ │ ├── ntpq.conf │ │ ├── nvidia_smi.conf │ │ ├── opcua.conf │ │ ├── openldap.conf │ │ ├── openntpd.conf │ │ ├── opensmtpd.conf │ │ ├── openstack.conf │ │ ├── opentelemetry.conf │ │ ├── openweathermap.conf │ │ ├── passenger.conf │ │ ├── pf.conf │ │ ├── pgbouncer.conf │ │ ├── phpfpm.conf │ │ ├── ping.conf │ │ ├── postfix.conf │ │ ├── postgresql.conf │ │ ├── postgresql_extensible.conf │ │ ├── powerdns.conf │ │ ├── powerdns_recursor.conf │ │ ├── processes.conf │ │ ├── procstat.conf │ │ ├── prometheus.conf │ │ ├── proxmox.conf │ │ ├── puppetagent.conf │ │ ├── rabbitmq.conf │ │ ├── raindrops.conf │ │ ├── ras.conf │ │ ├── ravendb.conf │ │ ├── redfish.conf │ │ ├── redis.conf │ │ ├── redis_sentinel.conf │ │ ├── rethinkdb.conf │ │ ├── riak.conf │ │ ├── riemann_listener.conf │ │ ├── salesforce.conf │ │ ├── sensors.conf │ │ ├── sflow.conf │ │ ├── slab.conf │ │ ├── smart.conf │ │ ├── snmp.conf │ │ ├── snmp_legacy.conf │ │ ├── snmp_trap.conf │ │ ├── socket_listener.conf │ │ ├── socketstat.conf │ │ ├── solr.conf │ │ ├── sql.conf │ │ ├── sqlserver.conf │ │ ├── stackdriver.conf │ │ ├── statsd.conf │ │ ├── supervisor.conf │ │ ├── suricata.conf │ │ ├── swap.conf │ │ ├── synproxy.conf │ │ ├── syslog.conf │ │ ├── sysstat.conf │ │ ├── system.conf │ │ ├── systemd_units.conf │ │ ├── tail.conf │ │ ├── tcp_listener.conf │ │ ├── teamspeak.conf │ │ ├── temp.conf │ │ ├── tengine.conf │ │ ├── tomcat.conf │ │ ├── trig.conf │ │ ├── twemproxy.conf │ │ ├── udp_listener.conf │ │ ├── unbound.conf │ │ ├── upsd.conf │ │ ├── uwsgi.conf │ │ ├── varnish.conf │ │ ├── vault.conf │ │ ├── vsphere.conf │ │ ├── webhooks.conf │ │ ├── win_eventlog.conf │ │ ├── win_perf_counters.conf │ │ ├── win_services.conf │ │ ├── wireguard.conf │ │ ├── wireless.conf │ │ ├── x509_cert.conf │ │ ├── xtremio.conf │ │ ├── zfs.conf │ │ ├── zipkin.conf │ │ └── zookeeper.conf │ └── telegrafPlugins │ │ ├── activemq.md │ │ ├── aerospike.md │ │ ├── aliyuncms.md │ │ ├── amd_rocm_smi.md │ │ ├── amqp_consumer.md │ │ ├── apache.md │ │ ├── apcupsd.md │ │ ├── aurora.md │ │ ├── azure_storage_queue.md │ │ ├── bcache.md │ │ ├── beanstalkd.md │ │ ├── beat.md │ │ ├── bind.md │ │ ├── bond.md │ │ ├── burrow.md │ │ ├── cassandra.md │ │ ├── ceph.md │ │ ├── cgroup.md │ │ ├── chrony.md │ │ ├── cisco_telemetry_mdt.md │ │ ├── clickhouse.md │ │ ├── cloud_pubsub.md │ │ ├── cloud_pubsub_push.md │ │ ├── cloudwatch.md │ │ ├── cloudwatch_metric_streams.md │ │ ├── conntrack.md │ │ ├── consul.md │ │ ├── consul_agent.md │ │ ├── couchbase.md │ │ ├── couchdb.md │ │ ├── cpu.md │ │ ├── csgo.md │ │ ├── dcos.md │ │ ├── directory_monitor.md │ │ ├── disk.md │ │ ├── diskio.md │ │ ├── disque.md │ │ ├── dmcache.md │ │ ├── dns_query.md │ │ ├── docker.md │ │ ├── docker_log.md │ │ ├── dovecot.md │ │ ├── dpdk.md │ │ ├── ecs.md │ │ ├── elasticsearch.md │ │ ├── elasticsearch_query.md │ │ ├── ethtool.md │ │ ├── eventhub_consumer.md │ │ ├── exec.md │ │ ├── execd.md │ │ ├── fail2ban.md │ │ ├── fibaro.md │ │ ├── file.md │ │ ├── filecount.md │ │ ├── filestat.md │ │ ├── fireboard.md │ │ ├── fluentd.md │ │ ├── github.md │ │ ├── gnmi.md │ │ ├── graylog.md │ │ ├── haproxy.md │ │ ├── hddtemp.md │ │ ├── http.md │ │ ├── http_listener_v2.md │ │ ├── http_response.md │ │ ├── httpjson.md │ │ ├── hugepages.md │ │ ├── icinga2.md │ │ ├── infiniband.md │ │ ├── influxdb.md │ │ ├── influxdb_listener.md │ │ ├── influxdb_v2_listener.md │ │ ├── intel_pmu.md │ │ ├── intel_powerstat.md │ │ ├── intel_rdt.md │ │ ├── internal.md │ │ ├── internet_speed.md │ │ ├── interrupts.md │ │ ├── ipmi_sensor.md │ │ ├── ipset.md │ │ ├── iptables.md │ │ ├── ipvs.md │ │ ├── jenkins.md │ │ ├── jolokia.md │ │ ├── jolokia2_agent.md │ │ ├── jolokia2_proxy.md │ │ ├── jti_openconfig_telemetry.md │ │ ├── kafka_consumer.md │ │ ├── kafka_consumer_legacy.md │ │ ├── kapacitor.md │ │ ├── kernel.md │ │ ├── kernel_vmstat.md │ │ ├── kibana.md │ │ ├── kinesis_consumer.md │ │ ├── knx_listener.md │ │ ├── kube_inventory.md │ │ ├── kubernetes.md │ │ ├── lanz.md │ │ ├── leofs.md │ │ ├── linux_cpu.md │ │ ├── linux_sysctl_fs.md │ │ ├── logparser.md │ │ ├── logstash.md │ │ ├── lustre2.md │ │ ├── lvm.md │ │ ├── mailchimp.md │ │ ├── marklogic.md │ │ ├── mcrouter.md │ │ ├── mdstat.md │ │ ├── mem.md │ │ ├── memcached.md │ │ ├── mesos.md │ │ ├── minecraft.md │ │ ├── mock.md │ │ ├── modbus.md │ │ ├── mongodb.md │ │ ├── monit.md │ │ ├── mqtt_consumer.md │ │ ├── multifile.md │ │ ├── mysql.md │ │ ├── nats.md │ │ ├── nats_consumer.md │ │ ├── neptune_apex.md │ │ ├── net.md │ │ ├── net_response.md │ │ ├── netstat.md │ │ ├── nfsclient.md │ │ ├── nginx.md │ │ ├── nginx_plus.md │ │ ├── nginx_plus_api.md │ │ ├── nginx_sts.md │ │ ├── nginx_upstream_check.md │ │ ├── nginx_vts.md │ │ ├── nomad.md │ │ ├── nsd.md │ │ ├── nsq.md │ │ ├── nsq_consumer.md │ │ ├── nstat.md │ │ ├── ntpq.md │ │ ├── nvidia_smi.md │ │ ├── opcua.md │ │ ├── openldap.md │ │ ├── openntpd.md │ │ ├── opensmtpd.md │ │ ├── openstack.md │ │ ├── opentelemetry.md │ │ ├── openweathermap.md │ │ ├── passenger.md │ │ ├── pf.md │ │ ├── pgbouncer.md │ │ ├── phpfpm.md │ │ ├── ping.md │ │ ├── postfix.md │ │ ├── postgresql.md │ │ ├── postgresql_extensible.md │ │ ├── powerdns.md │ │ ├── powerdns_recursor.md │ │ ├── processes.md │ │ ├── procstat.md │ │ ├── prometheus.md │ │ ├── proxmox.md │ │ ├── puppetagent.md │ │ ├── rabbitmq.md │ │ ├── raindrops.md │ │ ├── ras.md │ │ ├── ravendb.md │ │ ├── redfish.md │ │ ├── redis.md │ │ ├── redis_sentinel.md │ │ ├── rethinkdb.md │ │ ├── riak.md │ │ ├── riemann_listener.md │ │ ├── salesforce.md │ │ ├── sensors.md │ │ ├── sflow.md │ │ ├── slab.md │ │ ├── smart.md │ │ ├── snmp.md │ │ ├── snmp_legacy.md │ │ ├── snmp_trap.md │ │ ├── socket_listener.md │ │ ├── socketstat.md │ │ ├── solr.md │ │ ├── sql.md │ │ ├── sqlserver.md │ │ ├── stackdriver.md │ │ ├── statsd.md │ │ ├── supervisor.md │ │ ├── suricata.md │ │ ├── swap.md │ │ ├── synproxy.md │ │ ├── syslog.md │ │ ├── sysstat.md │ │ ├── system.md │ │ ├── systemd_units.md │ │ ├── tail.md │ │ ├── tcp_listener.md │ │ ├── teamspeak.md │ │ ├── temp.md │ │ ├── tengine.md │ │ ├── tomcat.md │ │ ├── trig.md │ │ ├── twemproxy.md │ │ ├── udp_listener.md │ │ ├── unbound.md │ │ ├── upsd.md │ │ ├── uwsgi.md │ │ ├── varnish.md │ │ ├── vault.md │ │ ├── vsphere.md │ │ ├── webhooks.md │ │ ├── win_eventlog.md │ │ ├── win_perf_counters.md │ │ ├── win_services.md │ │ ├── wireguard.md │ │ ├── wireless.md │ │ ├── x509_cert.md │ │ ├── xtremio.md │ │ ├── zfs.md │ │ ├── zipkin.md │ │ └── zookeeper.md │ ├── constants │ ├── contentFileUploads.ts │ └── contentTelegrafPlugins.ts │ ├── containers │ ├── ClientLibrariesPage.tsx │ ├── FileUploadsPage.tsx │ ├── TelegrafPluginsPage.tsx │ ├── WriteDataPage.scss │ └── WriteDataPage.tsx │ ├── graphics │ ├── CLIIcon.svg │ ├── activemq.svg │ ├── aerospike.svg │ ├── aliyuncms.svg │ ├── amd_rocm_smi.svg │ ├── amqp_consumer.svg │ ├── apache.svg │ ├── apcupsd.svg │ ├── aurora.svg │ ├── azure_storage_queue.svg │ ├── beanstalkd.svg │ ├── beat.svg │ ├── bind.svg │ ├── burrow.svg │ ├── cassandra.svg │ ├── ceph.svg │ ├── cisco.svg │ ├── clickhouse.svg │ ├── cloudwatch.svg │ ├── conntrack.svg │ ├── consul.svg │ ├── couchbase.svg │ ├── couchdb.svg │ ├── cpu.svg │ ├── csgo.svg │ ├── csv.svg │ ├── dcos.svg │ ├── dell.svg │ ├── dns_query.svg │ ├── docker.svg │ ├── dovecot.svg │ ├── dpdk.svg │ ├── ecs.svg │ ├── elasticsearch.svg │ ├── eventhub_consumer.svg │ ├── exec.svg │ ├── facebook.svg │ ├── fail2ban.svg │ ├── fibaro.svg │ ├── file.svg │ ├── file_with_connectors.svg │ ├── fireboard.svg │ ├── fluentd.svg │ ├── folder.svg │ ├── github.svg │ ├── globe_with_monitor.svg │ ├── google_cloud.svg │ ├── graylog.svg │ ├── haproxy.svg │ ├── hashicorp.svg │ ├── http.svg │ ├── httpjson.svg │ ├── icigna2.svg │ ├── icinga2.svg │ ├── infiniband.svg │ ├── influxdb.svg │ ├── inputs.svg │ ├── intel.svg │ ├── jenkins.svg │ ├── jolokia.svg │ ├── jti_openconfig_telemetry.svg │ ├── kafka.svg │ ├── kibana.svg │ ├── kinesis_consumer.svg │ ├── knx_listener.svg │ ├── kubernetes.svg │ ├── lanz.svg │ ├── leofs.svg │ ├── linux_penguin.svg │ ├── logparser.svg │ ├── logstash.svg │ ├── lp.svg │ ├── magnifying_glass_lines.svg │ ├── magnifying_glass_nodes.svg │ ├── magnifying_glass_sinus.svg │ ├── mailchimp.svg │ ├── marklogic.svg │ ├── memcached.svg │ ├── mesos.svg │ ├── minecraft.svg │ ├── modbus.svg │ ├── mongodb.svg │ ├── monit.svg │ ├── monitor_with_worker.svg │ ├── mqtt_consumer.svg │ ├── multifile.svg │ ├── mysql.svg │ ├── nats.svg │ ├── neptune_apex.svg │ ├── nginx.svg │ ├── nsd.svg │ ├── nsq.svg │ ├── nvidia_smi.svg │ ├── opcua.svg │ ├── openldap.svg │ ├── opensmtpd.svg │ ├── openstack.svg │ ├── opentelemetry.svg │ ├── openweathermap.svg │ ├── papertrail.svg │ ├── particle.svg │ ├── passenger.svg │ ├── pf.svg │ ├── pgbouncer.svg │ ├── phpfpm.svg │ ├── placeholderLogo.svg │ ├── postfix.svg │ ├── postgresql.svg │ ├── powerdns.svg │ ├── prometheus.svg │ ├── proxmox.svg │ ├── puppetagent.svg │ ├── rabbitmq.svg │ ├── raindrops.svg │ ├── ravendb.svg │ ├── redfish.svg │ ├── redis.svg │ ├── rethinkdb.svg │ ├── riak.svg │ ├── salesforce.svg │ ├── server_rack_three.svg │ ├── sflow.svg │ ├── solr.svg │ ├── speedometer.svg │ ├── sql.svg │ ├── sqlserver.svg │ ├── stackdriver.svg │ ├── suricata.svg │ ├── synproxy.svg │ ├── teamspeak.svg │ ├── temp.svg │ ├── tengine.svg │ ├── three_nodes_to_one.svg │ ├── tomcat.svg │ ├── twemproxy.svg │ ├── unbound.svg │ ├── uwsgi.svg │ ├── varnish.svg │ ├── vsphere.svg │ ├── wall_clock.svg │ ├── webhooks.svg │ ├── wifi_signal.svg │ ├── windows.svg │ ├── wireguard.svg │ ├── wireless_router.svg │ ├── x509_cert.svg │ ├── zfs.svg │ ├── zipkin.svg │ └── zookeeper.svg │ ├── index.ts │ └── utils │ ├── README.md │ └── updateTelegrafPlugins.mjs ├── tsconfig.json ├── tsconfig.test.json ├── webpack.common.ts ├── webpack.dev.ts ├── webpack.fast.ts ├── webpack.lighthouse.ts ├── webpack.prod.ts ├── webpack.tsconfig.json └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | last 2 versions 2 | > 5% 3 | not dead 4 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/design-epic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/.github/ISSUE_TEMPLATE/design-epic.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/.github/workflows/semantic.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | loglevel = error 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .github/* 2 | .circleci/* 3 | *.md 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/@influxdata/flux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/__mocks__/@influxdata/flux.ts -------------------------------------------------------------------------------- /assets/images/Alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/Alert.png -------------------------------------------------------------------------------- /assets/images/BlankFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/BlankFlow.png -------------------------------------------------------------------------------- /assets/images/Flux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/Flux.png -------------------------------------------------------------------------------- /assets/images/Forum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/Forum.svg -------------------------------------------------------------------------------- /assets/images/NotFoundBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/NotFoundBottom.png -------------------------------------------------------------------------------- /assets/images/SlackIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/SlackIcon.png -------------------------------------------------------------------------------- /assets/images/Task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/Task.png -------------------------------------------------------------------------------- /assets/images/auth-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/auth-logo.svg -------------------------------------------------------------------------------- /assets/images/cubo_doodle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/cubo_doodle.svg -------------------------------------------------------------------------------- /assets/images/cubo_doodle_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/cubo_doodle_green.svg -------------------------------------------------------------------------------- /assets/images/drag-n-drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/drag-n-drop.svg -------------------------------------------------------------------------------- /assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/favicon.ico -------------------------------------------------------------------------------- /assets/images/feedback-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/feedback-fill.svg -------------------------------------------------------------------------------- /assets/images/flows-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/flows-empty.svg -------------------------------------------------------------------------------- /assets/images/iiot-webinar-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/iiot-webinar-banner.png -------------------------------------------------------------------------------- /assets/images/influxdbu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/influxdbu.svg -------------------------------------------------------------------------------- /assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/logo.svg -------------------------------------------------------------------------------- /assets/images/plan-graphic--free.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/plan-graphic--free.svg -------------------------------------------------------------------------------- /assets/images/plugin-simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/plugin-simple.svg -------------------------------------------------------------------------------- /assets/images/radial-power-level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/radial-power-level.svg -------------------------------------------------------------------------------- /assets/images/sample-csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/sample-csv.png -------------------------------------------------------------------------------- /assets/images/slack-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/images/slack-fill.svg -------------------------------------------------------------------------------- /assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/assets/index.html -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/e2e/cloud/about.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/cloud/about.test.ts -------------------------------------------------------------------------------- /cypress/e2e/cloud/billing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/cloud/billing.test.ts -------------------------------------------------------------------------------- /cypress/e2e/cloud/buckets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/cloud/buckets.test.ts -------------------------------------------------------------------------------- /cypress/e2e/cloud/createOrg.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/cloud/createOrg.test.ts -------------------------------------------------------------------------------- /cypress/e2e/cloud/deepLinks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/cloud/deepLinks.test.ts -------------------------------------------------------------------------------- /cypress/e2e/cloud/explorer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/cloud/explorer.test.ts -------------------------------------------------------------------------------- /cypress/e2e/cloud/flows.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/cloud/flows.test.ts -------------------------------------------------------------------------------- /cypress/e2e/cloud/geoOptions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/cloud/geoOptions.test.ts -------------------------------------------------------------------------------- /cypress/e2e/cloud/helpBar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/cloud/helpBar.test.ts -------------------------------------------------------------------------------- /cypress/e2e/cloud/operator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/cloud/operator.test.ts -------------------------------------------------------------------------------- /cypress/e2e/cloud/operatorRO.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/cloud/operatorRO.test.ts -------------------------------------------------------------------------------- /cypress/e2e/cloud/org-list.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/cloud/org-list.test.ts -------------------------------------------------------------------------------- /cypress/e2e/cloud/releases.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/cloud/releases.test.ts -------------------------------------------------------------------------------- /cypress/e2e/cloud/usage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/cloud/usage.test.ts -------------------------------------------------------------------------------- /cypress/e2e/cloud/users.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/cloud/users.test.ts -------------------------------------------------------------------------------- /cypress/e2e/cloud/zuoraOutage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/cloud/zuoraOutage.test.ts -------------------------------------------------------------------------------- /cypress/e2e/oss/explorer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/oss/explorer.test.ts -------------------------------------------------------------------------------- /cypress/e2e/oss/onboarding.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/oss/onboarding.test.ts -------------------------------------------------------------------------------- /cypress/e2e/oss/orgs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/oss/orgs.test.ts -------------------------------------------------------------------------------- /cypress/e2e/oss/scrapers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/oss/scrapers.test.ts -------------------------------------------------------------------------------- /cypress/e2e/oss/scriptsCrud.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/oss/scriptsCrud.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/about.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/about.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/arduino.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/arduino.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/buckets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/buckets.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/checks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/checks.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/editor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/editor.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/explorer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/explorer.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/firstmile.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/firstmile.tests.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/flows.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/flows.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/helpBar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/helpBar.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/home.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/home.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/influxCLI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/influxCLI.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/labels.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/labels.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/legends.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/legends.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/login.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/login.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/nav.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/nav.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/secrets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/secrets.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/tasks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/tasks.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/tasks2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/tasks2.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/telegrafs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/telegrafs.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/tokens.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/tokens.test.ts -------------------------------------------------------------------------------- /cypress/e2e/shared/variables.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/shared/variables.test.ts -------------------------------------------------------------------------------- /cypress/e2e/util/annotationsSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/e2e/util/annotationsSetup.ts -------------------------------------------------------------------------------- /cypress/fixtures/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/fixtures/data.txt -------------------------------------------------------------------------------- /cypress/fixtures/data/wumpus01.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/fixtures/data/wumpus01.lp -------------------------------------------------------------------------------- /cypress/fixtures/endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/fixtures/endpoints.json -------------------------------------------------------------------------------- /cypress/fixtures/good-csv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/fixtures/good-csv.csv -------------------------------------------------------------------------------- /cypress/fixtures/invalidSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/fixtures/invalidSchema.json -------------------------------------------------------------------------------- /cypress/fixtures/multiOrgOrgs1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/fixtures/multiOrgOrgs1.json -------------------------------------------------------------------------------- /cypress/fixtures/orgDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/fixtures/orgDetails.json -------------------------------------------------------------------------------- /cypress/fixtures/power_vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/fixtures/power_vars.json -------------------------------------------------------------------------------- /cypress/fixtures/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/fixtures/routes.json -------------------------------------------------------------------------------- /cypress/fixtures/sampleNote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/fixtures/sampleNote.json -------------------------------------------------------------------------------- /cypress/fixtures/schema.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/fixtures/schema.csv -------------------------------------------------------------------------------- /cypress/fixtures/tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/fixtures/tokens.json -------------------------------------------------------------------------------- /cypress/fixtures/validSchema1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/fixtures/validSchema1.json -------------------------------------------------------------------------------- /cypress/fixtures/view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/fixtures/view.json -------------------------------------------------------------------------------- /cypress/fixtures/wumpusDurView.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/fixtures/wumpusDurView.json -------------------------------------------------------------------------------- /cypress/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/index.d.ts -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/support/Utils.ts -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /docker/Dockerfile.chronograf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/docker/Dockerfile.chronograf -------------------------------------------------------------------------------- /docker/Dockerfile.chronograf.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/docker/Dockerfile.chronograf.prod -------------------------------------------------------------------------------- /docker/Dockerfile.cypress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/docker/Dockerfile.cypress -------------------------------------------------------------------------------- /docker/includes/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/docker/nginx.conf -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/env.example -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/global.d.ts -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/index.d.ts -------------------------------------------------------------------------------- /intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/intl.d.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/jest.config.js -------------------------------------------------------------------------------- /jestSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/jestSetup.ts -------------------------------------------------------------------------------- /jsdom-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/jsdom-custom.js -------------------------------------------------------------------------------- /mocks/MockChild.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/mocks/MockChild.tsx -------------------------------------------------------------------------------- /mocks/dummyData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/mocks/dummyData.ts -------------------------------------------------------------------------------- /mocks/flux/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/mocks/flux/apis/index.ts -------------------------------------------------------------------------------- /mocks/kapacitor/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/mocks/kapacitor/apis/index.ts -------------------------------------------------------------------------------- /mocks/shared/apis/env.ts: -------------------------------------------------------------------------------- 1 | export const getEnv = () => Promise.resolve({telegrafSystemInterval: '1m0s'}) 2 | -------------------------------------------------------------------------------- /mocks/shared/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/mocks/shared/apis/index.ts -------------------------------------------------------------------------------- /mocks/shared/apis/metaQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/mocks/shared/apis/metaQuery.ts -------------------------------------------------------------------------------- /mocks/sources/apis/index.ts: -------------------------------------------------------------------------------- 1 | export const getSourceHealth = () => Promise.resolve() 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/package.json -------------------------------------------------------------------------------- /project.garden.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/project.garden.yml -------------------------------------------------------------------------------- /scripts/checkout-repo.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/scripts/checkout-repo.bash -------------------------------------------------------------------------------- /scripts/publish-oss-release.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/scripts/publish-oss-release.bash -------------------------------------------------------------------------------- /scripts/start_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/scripts/start_docker.sh -------------------------------------------------------------------------------- /scripts/upload_sourcemap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/scripts/upload_sourcemap.sh -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Authenticate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/Authenticate.tsx -------------------------------------------------------------------------------- /src/Logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/Logout.tsx -------------------------------------------------------------------------------- /src/Setup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/Setup.tsx -------------------------------------------------------------------------------- /src/accounts/AccountHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/accounts/AccountHeader.tsx -------------------------------------------------------------------------------- /src/accounts/AccountPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/accounts/AccountPage.tsx -------------------------------------------------------------------------------- /src/accounts/AccountPageStyles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/accounts/AccountPageStyles.scss -------------------------------------------------------------------------------- /src/accounts/AccountTabContainer.scss: -------------------------------------------------------------------------------- 1 | .account-page--tab-contents { 2 | padding-top: 0px !important; 3 | } 4 | -------------------------------------------------------------------------------- /src/accounts/AccountTabContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/accounts/AccountTabContainer.tsx -------------------------------------------------------------------------------- /src/accounts/AccountTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/accounts/AccountTabs.tsx -------------------------------------------------------------------------------- /src/accounts/DeleteFreeAccount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/accounts/DeleteFreeAccount.tsx -------------------------------------------------------------------------------- /src/accounts/context/userAccount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/accounts/context/userAccount.tsx -------------------------------------------------------------------------------- /src/alerting/actions/alertBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/alerting/actions/alertBuilder.ts -------------------------------------------------------------------------------- /src/alerting/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/alerting/actions/thunks.ts -------------------------------------------------------------------------------- /src/alerting/components/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/alerting/components/SearchBar.tsx -------------------------------------------------------------------------------- /src/alerting/constants/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/alerting/constants/history.ts -------------------------------------------------------------------------------- /src/alerting/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/alerting/constants/index.ts -------------------------------------------------------------------------------- /src/alerting/reducers/alertBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/alerting/reducers/alertBuilder.ts -------------------------------------------------------------------------------- /src/alerting/utils/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/alerting/utils/activity.ts -------------------------------------------------------------------------------- /src/alerting/utils/history.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/alerting/utils/history.test.ts -------------------------------------------------------------------------------- /src/alerting/utils/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/alerting/utils/history.ts -------------------------------------------------------------------------------- /src/alerting/utils/statusEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/alerting/utils/statusEvents.ts -------------------------------------------------------------------------------- /src/alerting/utils/vis.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/alerting/utils/vis.test.ts -------------------------------------------------------------------------------- /src/alerting/utils/vis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/alerting/utils/vis.ts -------------------------------------------------------------------------------- /src/annotations/actions/creators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/annotations/actions/creators.ts -------------------------------------------------------------------------------- /src/annotations/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/annotations/actions/thunks.ts -------------------------------------------------------------------------------- /src/annotations/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/annotations/api/index.ts -------------------------------------------------------------------------------- /src/annotations/constants.ts: -------------------------------------------------------------------------------- 1 | export const ANNOTATION_FORM_WIDTH = 640 2 | -------------------------------------------------------------------------------- /src/annotations/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/annotations/reducers/index.ts -------------------------------------------------------------------------------- /src/annotations/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/annotations/selectors/index.ts -------------------------------------------------------------------------------- /src/authorizations/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/authorizations/actions/thunks.ts -------------------------------------------------------------------------------- /src/authorizations/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/authorizations/apis/index.ts -------------------------------------------------------------------------------- /src/authorizations/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/authorizations/reducers/index.ts -------------------------------------------------------------------------------- /src/billing/components/Free/Free.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/billing/components/Free/Free.tsx -------------------------------------------------------------------------------- /src/billing/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/billing/constants/index.ts -------------------------------------------------------------------------------- /src/billing/context/billing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/billing/context/billing.tsx -------------------------------------------------------------------------------- /src/billing/utils/timeHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/billing/utils/timeHelpers.test.ts -------------------------------------------------------------------------------- /src/billing/utils/timeHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/billing/utils/timeHelpers.ts -------------------------------------------------------------------------------- /src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/bootstrap.ts -------------------------------------------------------------------------------- /src/buckets/actions/creators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/buckets/actions/creators.ts -------------------------------------------------------------------------------- /src/buckets/actions/thunks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/buckets/actions/thunks.test.ts -------------------------------------------------------------------------------- /src/buckets/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/buckets/actions/thunks.ts -------------------------------------------------------------------------------- /src/buckets/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/buckets/api/index.ts -------------------------------------------------------------------------------- /src/buckets/components/BucketCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/buckets/components/BucketCard.tsx -------------------------------------------------------------------------------- /src/buckets/components/BucketList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/buckets/components/BucketList.tsx -------------------------------------------------------------------------------- /src/buckets/components/BucketsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/buckets/components/BucketsTab.tsx -------------------------------------------------------------------------------- /src/buckets/components/NoBucketsWarning.scss: -------------------------------------------------------------------------------- 1 | .no-buckets-warning { 2 | margin-bottom: $ix-marg-c; 3 | } 4 | -------------------------------------------------------------------------------- /src/buckets/components/Retention.scss: -------------------------------------------------------------------------------- 1 | .retention--radio { 2 | margin-bottom: $cf-space-2xs; 3 | } 4 | -------------------------------------------------------------------------------- /src/buckets/components/Retention.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/buckets/components/Retention.tsx -------------------------------------------------------------------------------- /src/buckets/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/buckets/constants/index.ts -------------------------------------------------------------------------------- /src/buckets/reducers/createBucket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/buckets/reducers/createBucket.ts -------------------------------------------------------------------------------- /src/buckets/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/buckets/reducers/index.ts -------------------------------------------------------------------------------- /src/buckets/selectors/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/buckets/selectors/index.test.ts -------------------------------------------------------------------------------- /src/buckets/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/buckets/selectors/index.ts -------------------------------------------------------------------------------- /src/cells/actions/creators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/cells/actions/creators.ts -------------------------------------------------------------------------------- /src/cells/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/cells/actions/thunks.ts -------------------------------------------------------------------------------- /src/cells/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/cells/reducers/index.ts -------------------------------------------------------------------------------- /src/cells/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/cells/selectors/index.ts -------------------------------------------------------------------------------- /src/checkout/CancelButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checkout/CancelButton.tsx -------------------------------------------------------------------------------- /src/checkout/CheckoutForm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checkout/CheckoutForm.scss -------------------------------------------------------------------------------- /src/checkout/CheckoutForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checkout/CheckoutForm.tsx -------------------------------------------------------------------------------- /src/checkout/CheckoutPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checkout/CheckoutPage.scss -------------------------------------------------------------------------------- /src/checkout/CheckoutPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checkout/CheckoutPage.tsx -------------------------------------------------------------------------------- /src/checkout/LogoWithCubo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checkout/LogoWithCubo.scss -------------------------------------------------------------------------------- /src/checkout/LogoWithCubo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checkout/LogoWithCubo.tsx -------------------------------------------------------------------------------- /src/checkout/PoweredByStripeLogo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checkout/PoweredByStripeLogo.scss -------------------------------------------------------------------------------- /src/checkout/PoweredByStripeLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checkout/PoweredByStripeLogo.tsx -------------------------------------------------------------------------------- /src/checkout/SuccessOverlay.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checkout/SuccessOverlay.scss -------------------------------------------------------------------------------- /src/checkout/SuccessOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checkout/SuccessOverlay.tsx -------------------------------------------------------------------------------- /src/checkout/context/checkout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checkout/context/checkout.tsx -------------------------------------------------------------------------------- /src/checkout/shared/FormInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checkout/shared/FormInput.tsx -------------------------------------------------------------------------------- /src/checkout/shared/FormToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checkout/shared/FormToggle.tsx -------------------------------------------------------------------------------- /src/checks/actions/creators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checks/actions/creators.ts -------------------------------------------------------------------------------- /src/checks/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checks/actions/thunks.ts -------------------------------------------------------------------------------- /src/checks/components/CheckCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checks/components/CheckCard.tsx -------------------------------------------------------------------------------- /src/checks/components/CheckCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checks/components/CheckCards.tsx -------------------------------------------------------------------------------- /src/checks/components/CheckTagRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checks/components/CheckTagRow.tsx -------------------------------------------------------------------------------- /src/checks/components/EditCheckEO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checks/components/EditCheckEO.tsx -------------------------------------------------------------------------------- /src/checks/reducers/checks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checks/reducers/checks.test.ts -------------------------------------------------------------------------------- /src/checks/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checks/reducers/index.ts -------------------------------------------------------------------------------- /src/checks/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checks/selectors/index.ts -------------------------------------------------------------------------------- /src/checks/utils/checkValidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checks/utils/checkValidate.ts -------------------------------------------------------------------------------- /src/checks/utils/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checks/utils/context.tsx -------------------------------------------------------------------------------- /src/checks/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/checks/utils/index.ts -------------------------------------------------------------------------------- /src/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/client/README.md -------------------------------------------------------------------------------- /src/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/client/index.ts -------------------------------------------------------------------------------- /src/client/swagger/flows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/client/swagger/flows.yml -------------------------------------------------------------------------------- /src/client/swagger/notebooks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/client/swagger/notebooks.yml -------------------------------------------------------------------------------- /src/client/swagger/unity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/client/swagger/unity.yml -------------------------------------------------------------------------------- /src/cloud/actions/limits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/cloud/actions/limits.ts -------------------------------------------------------------------------------- /src/cloud/apis/reporting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/cloud/apis/reporting.ts -------------------------------------------------------------------------------- /src/cloud/components/LimitChecker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/cloud/components/LimitChecker.tsx -------------------------------------------------------------------------------- /src/cloud/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/cloud/constants/index.ts -------------------------------------------------------------------------------- /src/cloud/containers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/cloud/containers/index.tsx -------------------------------------------------------------------------------- /src/cloud/reducers/limits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/cloud/reducers/limits.ts -------------------------------------------------------------------------------- /src/cloud/utils/experiments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/cloud/utils/experiments.ts -------------------------------------------------------------------------------- /src/cloud/utils/limits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/cloud/utils/limits.ts -------------------------------------------------------------------------------- /src/cloud/utils/reporting.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/cloud/utils/reporting.test.ts -------------------------------------------------------------------------------- /src/cloud/utils/reporting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/cloud/utils/reporting.ts -------------------------------------------------------------------------------- /src/dashboards/actions/creators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/actions/creators.ts -------------------------------------------------------------------------------- /src/dashboards/actions/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/actions/notes.ts -------------------------------------------------------------------------------- /src/dashboards/actions/ranges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/actions/ranges.ts -------------------------------------------------------------------------------- /src/dashboards/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/actions/thunks.ts -------------------------------------------------------------------------------- /src/dashboards/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/apis/index.ts -------------------------------------------------------------------------------- /src/dashboards/components/EditVEO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/components/EditVEO.tsx -------------------------------------------------------------------------------- /src/dashboards/components/NewVEO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/components/NewVEO.tsx -------------------------------------------------------------------------------- /src/dashboards/components/VEO.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/components/VEO.scss -------------------------------------------------------------------------------- /src/dashboards/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/constants/index.ts -------------------------------------------------------------------------------- /src/dashboards/reducers/dashboards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/reducers/dashboards.ts -------------------------------------------------------------------------------- /src/dashboards/reducers/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/reducers/notes.ts -------------------------------------------------------------------------------- /src/dashboards/reducers/ranges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/reducers/ranges.ts -------------------------------------------------------------------------------- /src/dashboards/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/selectors/index.ts -------------------------------------------------------------------------------- /src/dashboards/utils/cellGetters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/utils/cellGetters.ts -------------------------------------------------------------------------------- /src/dashboards/utils/hoverTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/utils/hoverTime.tsx -------------------------------------------------------------------------------- /src/dashboards/utils/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/utils/notes.ts -------------------------------------------------------------------------------- /src/dashboards/utils/time.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/utils/time.test.ts -------------------------------------------------------------------------------- /src/dashboards/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dashboards/utils/time.ts -------------------------------------------------------------------------------- /src/dataExplorer/context/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dataExplorer/context/columns.tsx -------------------------------------------------------------------------------- /src/dataExplorer/context/fields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dataExplorer/context/fields.tsx -------------------------------------------------------------------------------- /src/dataExplorer/context/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dataExplorer/context/sidebar.tsx -------------------------------------------------------------------------------- /src/dataExplorer/context/tags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dataExplorer/context/tags.tsx -------------------------------------------------------------------------------- /src/dataExplorer/shared/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dataExplorer/shared/utils.test.ts -------------------------------------------------------------------------------- /src/dataExplorer/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dataExplorer/shared/utils.ts -------------------------------------------------------------------------------- /src/dataLoaders/actions/steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dataLoaders/actions/steps.ts -------------------------------------------------------------------------------- /src/dataLoaders/graphics/IconCSV.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dataLoaders/graphics/IconCSV.tsx -------------------------------------------------------------------------------- /src/dataLoaders/graphics/LogoCpu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dataLoaders/graphics/LogoCpu.tsx -------------------------------------------------------------------------------- /src/dataLoaders/graphics/LogoEtcd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dataLoaders/graphics/LogoEtcd.tsx -------------------------------------------------------------------------------- /src/dataLoaders/graphics/LogoIis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dataLoaders/graphics/LogoIis.tsx -------------------------------------------------------------------------------- /src/dataLoaders/graphics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dataLoaders/graphics/index.ts -------------------------------------------------------------------------------- /src/dataLoaders/reducers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dataLoaders/reducers/index.tsx -------------------------------------------------------------------------------- /src/dataLoaders/reducers/steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dataLoaders/reducers/steps.ts -------------------------------------------------------------------------------- /src/dataLoaders/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/dataLoaders/selectors/index.ts -------------------------------------------------------------------------------- /src/eventViewer/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/eventViewer/components/Header.tsx -------------------------------------------------------------------------------- /src/eventViewer/utils/search.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/eventViewer/utils/search.test.ts -------------------------------------------------------------------------------- /src/eventViewer/utils/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/eventViewer/utils/search.ts -------------------------------------------------------------------------------- /src/flows/FlowVariables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/FlowVariables.scss -------------------------------------------------------------------------------- /src/flows/actions/flowsActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/actions/flowsActions.ts -------------------------------------------------------------------------------- /src/flows/actions/flowsThunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/actions/flowsThunks.ts -------------------------------------------------------------------------------- /src/flows/components/AddButtons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/AddButtons.scss -------------------------------------------------------------------------------- /src/flows/components/AddButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/AddButtons.tsx -------------------------------------------------------------------------------- /src/flows/components/CellFamily.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/CellFamily.tsx -------------------------------------------------------------------------------- /src/flows/components/ClientList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/ClientList.tsx -------------------------------------------------------------------------------- /src/flows/components/FlowCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/FlowCard.tsx -------------------------------------------------------------------------------- /src/flows/components/FlowCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/FlowCards.tsx -------------------------------------------------------------------------------- /src/flows/components/FlowPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/FlowPage.tsx -------------------------------------------------------------------------------- /src/flows/components/FlowPipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/FlowPipe.tsx -------------------------------------------------------------------------------- /src/flows/components/FlowsIndex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/FlowsIndex.tsx -------------------------------------------------------------------------------- /src/flows/components/Pipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/Pipe.tsx -------------------------------------------------------------------------------- /src/flows/components/PipeList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/PipeList.tsx -------------------------------------------------------------------------------- /src/flows/components/PresetFlows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/PresetFlows.scss -------------------------------------------------------------------------------- /src/flows/components/PresetFlows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/PresetFlows.tsx -------------------------------------------------------------------------------- /src/flows/components/ReadOnly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/ReadOnly.tsx -------------------------------------------------------------------------------- /src/flows/components/ShareOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/ShareOverlay.tsx -------------------------------------------------------------------------------- /src/flows/components/Sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/Sidebar.scss -------------------------------------------------------------------------------- /src/flows/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/Sidebar.tsx -------------------------------------------------------------------------------- /src/flows/components/VersionPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/VersionPage.tsx -------------------------------------------------------------------------------- /src/flows/components/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/header/index.tsx -------------------------------------------------------------------------------- /src/flows/components/panel/Handle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/components/panel/Handle.tsx -------------------------------------------------------------------------------- /src/flows/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/constants.ts -------------------------------------------------------------------------------- /src/flows/context/api.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/context/api.tsx -------------------------------------------------------------------------------- /src/flows/context/flow.current.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/context/flow.current.tsx -------------------------------------------------------------------------------- /src/flows/context/flow.list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/context/flow.list.tsx -------------------------------------------------------------------------------- /src/flows/context/flow.mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/context/flow.mock.json -------------------------------------------------------------------------------- /src/flows/context/flow.query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/context/flow.query.tsx -------------------------------------------------------------------------------- /src/flows/context/pipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/context/pipe.tsx -------------------------------------------------------------------------------- /src/flows/context/popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/context/popup.tsx -------------------------------------------------------------------------------- /src/flows/context/results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/context/results.tsx -------------------------------------------------------------------------------- /src/flows/context/shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/context/shared.tsx -------------------------------------------------------------------------------- /src/flows/context/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/context/sidebar.tsx -------------------------------------------------------------------------------- /src/flows/context/variables.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/context/variables.tsx -------------------------------------------------------------------------------- /src/flows/context/version.publish.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/context/version.publish.tsx -------------------------------------------------------------------------------- /src/flows/context/version.read.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/context/version.read.tsx -------------------------------------------------------------------------------- /src/flows/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/index.ts -------------------------------------------------------------------------------- /src/flows/pipes/Columns/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Columns/index.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Columns/readOnly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Columns/readOnly.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Columns/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Columns/styles.scss -------------------------------------------------------------------------------- /src/flows/pipes/Columns/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Columns/view.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Downsample/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Downsample/index.ts -------------------------------------------------------------------------------- /src/flows/pipes/Downsample/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Downsample/style.scss -------------------------------------------------------------------------------- /src/flows/pipes/Downsample/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Downsample/view.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Markdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Markdown/index.ts -------------------------------------------------------------------------------- /src/flows/pipes/Markdown/readOnly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Markdown/readOnly.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Markdown/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Markdown/style.scss -------------------------------------------------------------------------------- /src/flows/pipes/Markdown/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Markdown/view.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Missing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Missing/index.ts -------------------------------------------------------------------------------- /src/flows/pipes/Missing/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Missing/styles.scss -------------------------------------------------------------------------------- /src/flows/pipes/Missing/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Missing/view.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Notification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Notification/index.ts -------------------------------------------------------------------------------- /src/flows/pipes/Notification/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Notification/view.tsx -------------------------------------------------------------------------------- /src/flows/pipes/QueryBuilder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/QueryBuilder/index.ts -------------------------------------------------------------------------------- /src/flows/pipes/QueryBuilder/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/QueryBuilder/view.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Region/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Region/index.ts -------------------------------------------------------------------------------- /src/flows/pipes/Region/readOnly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Region/readOnly.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Region/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Region/style.scss -------------------------------------------------------------------------------- /src/flows/pipes/Region/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Region/view.tsx -------------------------------------------------------------------------------- /src/flows/pipes/RemoteCSV/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/RemoteCSV/index.ts -------------------------------------------------------------------------------- /src/flows/pipes/RemoteCSV/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/RemoteCSV/styles.scss -------------------------------------------------------------------------------- /src/flows/pipes/RemoteCSV/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/RemoteCSV/view.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Schedule/History.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Schedule/History.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Schedule/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Schedule/index.ts -------------------------------------------------------------------------------- /src/flows/pipes/Schedule/readOnly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Schedule/readOnly.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Schedule/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Schedule/style.scss -------------------------------------------------------------------------------- /src/flows/pipes/Schedule/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Schedule/view.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Spotify/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Spotify/editor.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Spotify/embedded.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Spotify/embedded.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Spotify/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Spotify/index.ts -------------------------------------------------------------------------------- /src/flows/pipes/Spotify/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Spotify/style.scss -------------------------------------------------------------------------------- /src/flows/pipes/Spotify/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Spotify/view.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Table/index.ts -------------------------------------------------------------------------------- /src/flows/pipes/Table/view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Table/view.scss -------------------------------------------------------------------------------- /src/flows/pipes/Table/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Table/view.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Time/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Time/index.ts -------------------------------------------------------------------------------- /src/flows/pipes/Time/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Time/style.scss -------------------------------------------------------------------------------- /src/flows/pipes/Time/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Time/view.tsx -------------------------------------------------------------------------------- /src/flows/pipes/ToBucket/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/ToBucket/index.ts -------------------------------------------------------------------------------- /src/flows/pipes/ToBucket/readOnly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/ToBucket/readOnly.tsx -------------------------------------------------------------------------------- /src/flows/pipes/ToBucket/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/ToBucket/view.tsx -------------------------------------------------------------------------------- /src/flows/pipes/Youtube/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Youtube/index.ts -------------------------------------------------------------------------------- /src/flows/pipes/Youtube/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Youtube/style.scss -------------------------------------------------------------------------------- /src/flows/pipes/Youtube/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/pipes/Youtube/view.tsx -------------------------------------------------------------------------------- /src/flows/reducers/flowsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/reducers/flowsReducer.ts -------------------------------------------------------------------------------- /src/flows/selectors/flowsSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/selectors/flowsSelectors.ts -------------------------------------------------------------------------------- /src/flows/shared/Resizer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/shared/Resizer.scss -------------------------------------------------------------------------------- /src/flows/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/shared/utils.ts -------------------------------------------------------------------------------- /src/flows/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/style.scss -------------------------------------------------------------------------------- /src/flows/templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/templates/index.ts -------------------------------------------------------------------------------- /src/flows/templates/types/blank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/templates/types/blank.ts -------------------------------------------------------------------------------- /src/flows/templates/types/bucket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/templates/types/bucket.ts -------------------------------------------------------------------------------- /src/flows/templates/types/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/templates/types/default.ts -------------------------------------------------------------------------------- /src/flows/templates/types/flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/templates/types/flow.ts -------------------------------------------------------------------------------- /src/flows/templates/types/flux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/templates/types/flux.ts -------------------------------------------------------------------------------- /src/flows/templates/types/intro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/templates/types/intro.ts -------------------------------------------------------------------------------- /src/flows/templates/types/share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/templates/types/share.ts -------------------------------------------------------------------------------- /src/flows/templates/types/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/templates/types/task.ts -------------------------------------------------------------------------------- /src/flows/templates/types/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/flows/templates/types/tools.ts -------------------------------------------------------------------------------- /src/homepageExperience/containers/HomepageContents.scss: -------------------------------------------------------------------------------- 1 | .home-page--accordion-container { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/homepageExperience/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/homepageExperience/utils.ts -------------------------------------------------------------------------------- /src/identity/actions/thunks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/identity/actions/thunks/index.ts -------------------------------------------------------------------------------- /src/identity/apis/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/identity/apis/account.ts -------------------------------------------------------------------------------- /src/identity/apis/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/identity/apis/auth.ts -------------------------------------------------------------------------------- /src/identity/apis/org.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/identity/apis/org.ts -------------------------------------------------------------------------------- /src/identity/events/multiOrgEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/identity/events/multiOrgEvents.ts -------------------------------------------------------------------------------- /src/identity/mockUserData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/identity/mockUserData.ts -------------------------------------------------------------------------------- /src/identity/reducers/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/identity/reducers/index.test.ts -------------------------------------------------------------------------------- /src/identity/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/identity/reducers/index.ts -------------------------------------------------------------------------------- /src/identity/selectors/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/identity/selectors/index.test.ts -------------------------------------------------------------------------------- /src/identity/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/identity/selectors/index.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/labels/actions/creators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/labels/actions/creators.ts -------------------------------------------------------------------------------- /src/labels/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/labels/actions/thunks.ts -------------------------------------------------------------------------------- /src/labels/components/LabelCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/labels/components/LabelCard.scss -------------------------------------------------------------------------------- /src/labels/components/LabelCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/labels/components/LabelCard.tsx -------------------------------------------------------------------------------- /src/labels/components/LabelList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/labels/components/LabelList.tsx -------------------------------------------------------------------------------- /src/labels/components/LabelsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/labels/components/LabelsTab.tsx -------------------------------------------------------------------------------- /src/labels/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/labels/constants/index.ts -------------------------------------------------------------------------------- /src/labels/containers/LabelsIndex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/labels/containers/LabelsIndex.tsx -------------------------------------------------------------------------------- /src/labels/reducers/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/labels/reducers/index.test.ts -------------------------------------------------------------------------------- /src/labels/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/labels/reducers/index.ts -------------------------------------------------------------------------------- /src/labels/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/labels/selectors/index.ts -------------------------------------------------------------------------------- /src/labels/utils/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/labels/utils/index.test.ts -------------------------------------------------------------------------------- /src/labels/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/labels/utils/index.ts -------------------------------------------------------------------------------- /src/languageSupport/monaco.onigasm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/languageSupport/monaco.onigasm.ts -------------------------------------------------------------------------------- /src/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/localStorage.ts -------------------------------------------------------------------------------- /src/me/actions/creators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/actions/creators/index.ts -------------------------------------------------------------------------------- /src/me/actions/thunks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/actions/thunks/index.ts -------------------------------------------------------------------------------- /src/me/components/AlertsActivity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/components/AlertsActivity.scss -------------------------------------------------------------------------------- /src/me/components/AlertsActivity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/components/AlertsActivity.tsx -------------------------------------------------------------------------------- /src/me/components/BlogFeed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/components/BlogFeed.scss -------------------------------------------------------------------------------- /src/me/components/BlogFeed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/components/BlogFeed.tsx -------------------------------------------------------------------------------- /src/me/components/CloudWidgets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/components/CloudWidgets.tsx -------------------------------------------------------------------------------- /src/me/components/DashboardsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/components/DashboardsList.tsx -------------------------------------------------------------------------------- /src/me/components/DocSearchWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/components/DocSearchWidget.tsx -------------------------------------------------------------------------------- /src/me/components/GettingStarted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/components/GettingStarted.scss -------------------------------------------------------------------------------- /src/me/components/GettingStarted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/components/GettingStarted.tsx -------------------------------------------------------------------------------- /src/me/components/LogoutButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/components/LogoutButton.tsx -------------------------------------------------------------------------------- /src/me/components/UsagePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/components/UsagePanel.tsx -------------------------------------------------------------------------------- /src/me/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/constants/index.ts -------------------------------------------------------------------------------- /src/me/graphics/CollectorGraphic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/graphics/CollectorGraphic.scss -------------------------------------------------------------------------------- /src/me/graphics/CollectorGraphic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/graphics/CollectorGraphic.tsx -------------------------------------------------------------------------------- /src/me/graphics/ExploreGraphic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/graphics/ExploreGraphic.scss -------------------------------------------------------------------------------- /src/me/graphics/ExploreGraphic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/graphics/ExploreGraphic.tsx -------------------------------------------------------------------------------- /src/me/mockUserData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/mockUserData.ts -------------------------------------------------------------------------------- /src/me/reducers/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/reducers/index.test.ts -------------------------------------------------------------------------------- /src/me/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/reducers/index.ts -------------------------------------------------------------------------------- /src/me/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/me/selectors/index.ts -------------------------------------------------------------------------------- /src/members/actions/creators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/members/actions/creators.ts -------------------------------------------------------------------------------- /src/members/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/members/actions/thunks.ts -------------------------------------------------------------------------------- /src/members/components/MemberCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/members/components/MemberCard.tsx -------------------------------------------------------------------------------- /src/members/components/MemberList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/members/components/MemberList.tsx -------------------------------------------------------------------------------- /src/members/components/Members.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/members/components/Members.tsx -------------------------------------------------------------------------------- /src/members/dummyData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/members/dummyData.ts -------------------------------------------------------------------------------- /src/members/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/members/reducers/index.ts -------------------------------------------------------------------------------- /src/mockAppState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/mockAppState.ts -------------------------------------------------------------------------------- /src/mockState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/mockState.tsx -------------------------------------------------------------------------------- /src/normalizers/localStorage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/normalizers/localStorage/index.ts -------------------------------------------------------------------------------- /src/onboarding/OnboardingWizard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/onboarding/OnboardingWizard.scss -------------------------------------------------------------------------------- /src/onboarding/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/onboarding/actions/index.ts -------------------------------------------------------------------------------- /src/onboarding/apis/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/onboarding/apis/mocks.ts -------------------------------------------------------------------------------- /src/onboarding/constants/index.ts: -------------------------------------------------------------------------------- 1 | export const QUICKSTART_DASHBOARD_NAME = 'InfluxDB OSS Metrics' 2 | -------------------------------------------------------------------------------- /src/onboarding/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/onboarding/reducers/index.ts -------------------------------------------------------------------------------- /src/onboarding/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/onboarding/utils/index.ts -------------------------------------------------------------------------------- /src/operator/AppPageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/AppPageHeader.tsx -------------------------------------------------------------------------------- /src/operator/LimitsField.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/LimitsField.scss -------------------------------------------------------------------------------- /src/operator/LimitsField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/LimitsField.tsx -------------------------------------------------------------------------------- /src/operator/MigrateOrg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/MigrateOrg.tsx -------------------------------------------------------------------------------- /src/operator/MigrateOrgOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/MigrateOrgOverlay.tsx -------------------------------------------------------------------------------- /src/operator/Operator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/Operator.tsx -------------------------------------------------------------------------------- /src/operator/OperatorNav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/OperatorNav.scss -------------------------------------------------------------------------------- /src/operator/OperatorNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/OperatorNav.tsx -------------------------------------------------------------------------------- /src/operator/OperatorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/OperatorPage.tsx -------------------------------------------------------------------------------- /src/operator/OperatorTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/OperatorTabs.tsx -------------------------------------------------------------------------------- /src/operator/OrgOverlay.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/OrgOverlay.scss -------------------------------------------------------------------------------- /src/operator/OrgOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/OrgOverlay.tsx -------------------------------------------------------------------------------- /src/operator/OrgOverlayWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/OrgOverlayWrapper.tsx -------------------------------------------------------------------------------- /src/operator/ResourcesAccountType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/ResourcesAccountType.tsx -------------------------------------------------------------------------------- /src/operator/ResourcesSearchbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/ResourcesSearchbar.tsx -------------------------------------------------------------------------------- /src/operator/ResourcesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/ResourcesTable.tsx -------------------------------------------------------------------------------- /src/operator/ResourcesTableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/ResourcesTableRow.tsx -------------------------------------------------------------------------------- /src/operator/account/AccountField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/account/AccountField.tsx -------------------------------------------------------------------------------- /src/operator/account/AccountGrid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/account/AccountGrid.scss -------------------------------------------------------------------------------- /src/operator/account/AccountGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/account/AccountGrid.tsx -------------------------------------------------------------------------------- /src/operator/account/AccountPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/account/AccountPage.tsx -------------------------------------------------------------------------------- /src/operator/account/AccountView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/account/AccountView.tsx -------------------------------------------------------------------------------- /src/operator/account/MigrateOrgs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/account/MigrateOrgs.tsx -------------------------------------------------------------------------------- /src/operator/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/constants.tsx -------------------------------------------------------------------------------- /src/operator/context/account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/context/account.tsx -------------------------------------------------------------------------------- /src/operator/context/operator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/context/operator.tsx -------------------------------------------------------------------------------- /src/operator/context/overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/context/overlay.tsx -------------------------------------------------------------------------------- /src/operator/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/utils.test.ts -------------------------------------------------------------------------------- /src/operator/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/operator/utils.ts -------------------------------------------------------------------------------- /src/organizations/actions/creators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/organizations/actions/creators.ts -------------------------------------------------------------------------------- /src/organizations/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/organizations/actions/thunks.ts -------------------------------------------------------------------------------- /src/organizations/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/organizations/apis/index.ts -------------------------------------------------------------------------------- /src/organizations/components/DeleteOrgOverlay.scss: -------------------------------------------------------------------------------- 1 | .delete-org--overlay-body { 2 | margin: $cf-space-l 0; 3 | } 4 | -------------------------------------------------------------------------------- /src/organizations/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/organizations/reducers/index.ts -------------------------------------------------------------------------------- /src/organizations/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/organizations/selectors/index.ts -------------------------------------------------------------------------------- /src/overlays/actions/overlays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/overlays/actions/overlays.ts -------------------------------------------------------------------------------- /src/overlays/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/overlays/components/index.tsx -------------------------------------------------------------------------------- /src/overlays/reducers/overlays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/overlays/reducers/overlays.ts -------------------------------------------------------------------------------- /src/overlays/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/overlays/selectors/index.ts -------------------------------------------------------------------------------- /src/pageLayout/containers/MainNavigation.scss: -------------------------------------------------------------------------------- 1 | .nav-item-support { 2 | margin-top: auto !important; 3 | } 4 | -------------------------------------------------------------------------------- /src/pageLayout/utils/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/pageLayout/utils/index.test.ts -------------------------------------------------------------------------------- /src/pageLayout/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/pageLayout/utils/index.ts -------------------------------------------------------------------------------- /src/perf/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/perf/actions/index.ts -------------------------------------------------------------------------------- /src/perf/components/CellEvent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/perf/components/CellEvent.tsx -------------------------------------------------------------------------------- /src/perf/components/LazySVG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/perf/components/LazySVG.tsx -------------------------------------------------------------------------------- /src/perf/components/PageSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/perf/components/PageSpinner.tsx -------------------------------------------------------------------------------- /src/perf/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/perf/reducers/index.ts -------------------------------------------------------------------------------- /src/portals/NotesPortal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/portals/NotesPortal.tsx -------------------------------------------------------------------------------- /src/portals/TooltipPortal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/portals/TooltipPortal.tsx -------------------------------------------------------------------------------- /src/resources/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/resources/constants/index.ts -------------------------------------------------------------------------------- /src/resources/reducers/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/resources/reducers/helpers.ts -------------------------------------------------------------------------------- /src/resources/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/resources/selectors/index.ts -------------------------------------------------------------------------------- /src/schemas/authorizations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/schemas/authorizations.ts -------------------------------------------------------------------------------- /src/schemas/buckets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/schemas/buckets.ts -------------------------------------------------------------------------------- /src/schemas/checks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/schemas/checks.ts -------------------------------------------------------------------------------- /src/schemas/dashboards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/schemas/dashboards.ts -------------------------------------------------------------------------------- /src/schemas/endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/schemas/endpoints.ts -------------------------------------------------------------------------------- /src/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/schemas/index.ts -------------------------------------------------------------------------------- /src/schemas/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/schemas/labels.ts -------------------------------------------------------------------------------- /src/schemas/members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/schemas/members.ts -------------------------------------------------------------------------------- /src/schemas/orgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/schemas/orgs.ts -------------------------------------------------------------------------------- /src/schemas/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/schemas/rules.ts -------------------------------------------------------------------------------- /src/schemas/scrapers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/schemas/scrapers.ts -------------------------------------------------------------------------------- /src/schemas/secrets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/schemas/secrets.ts -------------------------------------------------------------------------------- /src/schemas/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/schemas/tasks.ts -------------------------------------------------------------------------------- /src/schemas/telegrafs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/schemas/telegrafs.ts -------------------------------------------------------------------------------- /src/schemas/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/schemas/templates.ts -------------------------------------------------------------------------------- /src/schemas/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/schemas/variables.ts -------------------------------------------------------------------------------- /src/scrapers/actions/creators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/scrapers/actions/creators.ts -------------------------------------------------------------------------------- /src/scrapers/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/scrapers/actions/thunks.ts -------------------------------------------------------------------------------- /src/scrapers/components/Scrapers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/scrapers/components/Scrapers.tsx -------------------------------------------------------------------------------- /src/scrapers/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/scrapers/reducers/index.ts -------------------------------------------------------------------------------- /src/scripts/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/scripts/apis/index.ts -------------------------------------------------------------------------------- /src/secrets/actions/creators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/secrets/actions/creators.ts -------------------------------------------------------------------------------- /src/secrets/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/secrets/actions/thunks.ts -------------------------------------------------------------------------------- /src/secrets/components/SecretCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/secrets/components/SecretCard.tsx -------------------------------------------------------------------------------- /src/secrets/components/SecretsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/secrets/components/SecretsTab.tsx -------------------------------------------------------------------------------- /src/secrets/components/secrets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/secrets/components/secrets.scss -------------------------------------------------------------------------------- /src/secrets/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/secrets/reducers/index.ts -------------------------------------------------------------------------------- /src/shared/actions/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/actions/app.ts -------------------------------------------------------------------------------- /src/shared/actions/autoRefresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/actions/autoRefresh.ts -------------------------------------------------------------------------------- /src/shared/actions/currentExplorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/actions/currentExplorer.ts -------------------------------------------------------------------------------- /src/shared/actions/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/actions/flags.ts -------------------------------------------------------------------------------- /src/shared/actions/fluxDocs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/actions/fluxDocs.ts -------------------------------------------------------------------------------- /src/shared/actions/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/actions/notifications.ts -------------------------------------------------------------------------------- /src/shared/apis/query.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/apis/query.test.ts -------------------------------------------------------------------------------- /src/shared/apis/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/apis/query.ts -------------------------------------------------------------------------------- /src/shared/apis/queryCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/apis/queryCache.ts -------------------------------------------------------------------------------- /src/shared/apis/sfdc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/apis/sfdc.ts -------------------------------------------------------------------------------- /src/shared/apis/singleQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/apis/singleQuery.ts -------------------------------------------------------------------------------- /src/shared/components/AutoDomainInput.scss: -------------------------------------------------------------------------------- 1 | .auto-domain-input--custom { 2 | padding-top: 4px; 3 | } 4 | -------------------------------------------------------------------------------- /src/shared/components/BoxTooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/BoxTooltip.scss -------------------------------------------------------------------------------- /src/shared/components/BoxTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/BoxTooltip.tsx -------------------------------------------------------------------------------- /src/shared/components/CodeSnippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/CodeSnippet.tsx -------------------------------------------------------------------------------- /src/shared/components/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/CopyButton.tsx -------------------------------------------------------------------------------- /src/shared/components/DragAndDrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/DragAndDrop.tsx -------------------------------------------------------------------------------- /src/shared/components/EventMarker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/EventMarker.tsx -------------------------------------------------------------------------------- /src/shared/components/Filter.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/Filter.test.tsx -------------------------------------------------------------------------------- /src/shared/components/Filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/Filter.tsx -------------------------------------------------------------------------------- /src/shared/components/FilterList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/FilterList.tsx -------------------------------------------------------------------------------- /src/shared/components/NotFound.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/NotFound.scss -------------------------------------------------------------------------------- /src/shared/components/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/NotFound.tsx -------------------------------------------------------------------------------- /src/shared/components/Row.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/Row.test.tsx -------------------------------------------------------------------------------- /src/shared/components/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/Row.tsx -------------------------------------------------------------------------------- /src/shared/components/TagInput.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/TagInput.scss -------------------------------------------------------------------------------- /src/shared/components/TimeSeries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/TimeSeries.tsx -------------------------------------------------------------------------------- /src/shared/components/VersionInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/VersionInfo.tsx -------------------------------------------------------------------------------- /src/shared/components/WaitingText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/WaitingText.tsx -------------------------------------------------------------------------------- /src/shared/components/cells/Cell.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/cells/Cell.scss -------------------------------------------------------------------------------- /src/shared/components/cells/Cell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/cells/Cell.tsx -------------------------------------------------------------------------------- /src/shared/components/cta.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/components/cta.scss -------------------------------------------------------------------------------- /src/shared/components/search_widget/SearchWidget.scss: -------------------------------------------------------------------------------- 1 | .search-widget-input { 2 | flex: 1 0 80px; 3 | } 4 | -------------------------------------------------------------------------------- /src/shared/constants/fluxFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/constants/fluxFunctions.ts -------------------------------------------------------------------------------- /src/shared/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/constants/index.ts -------------------------------------------------------------------------------- /src/shared/constants/queryBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/constants/queryBuilder.ts -------------------------------------------------------------------------------- /src/shared/constants/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/constants/routes.ts -------------------------------------------------------------------------------- /src/shared/constants/thresholds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/constants/thresholds.ts -------------------------------------------------------------------------------- /src/shared/constants/timeRanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/constants/timeRanges.ts -------------------------------------------------------------------------------- /src/shared/constants/timeZones.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/constants/timeZones.ts -------------------------------------------------------------------------------- /src/shared/constants/wizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/constants/wizard.ts -------------------------------------------------------------------------------- /src/shared/containers/GetFlags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/containers/GetFlags.tsx -------------------------------------------------------------------------------- /src/shared/containers/RouteToOrg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/containers/RouteToOrg.tsx -------------------------------------------------------------------------------- /src/shared/containers/SetOrg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/containers/SetOrg.tsx -------------------------------------------------------------------------------- /src/shared/containers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/containers/index.tsx -------------------------------------------------------------------------------- /src/shared/contexts/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/contexts/app.tsx -------------------------------------------------------------------------------- /src/shared/contexts/buckets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/contexts/buckets.tsx -------------------------------------------------------------------------------- /src/shared/contexts/dbrps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/contexts/dbrps.tsx -------------------------------------------------------------------------------- /src/shared/contexts/editor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/contexts/editor/index.tsx -------------------------------------------------------------------------------- /src/shared/contexts/query/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/contexts/query/context.tsx -------------------------------------------------------------------------------- /src/shared/contexts/query/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/contexts/query/index.ts -------------------------------------------------------------------------------- /src/shared/copy/cell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/copy/cell.ts -------------------------------------------------------------------------------- /src/shared/data/autoRefreshes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/data/autoRefreshes.ts -------------------------------------------------------------------------------- /src/shared/decorators/errors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/decorators/errors.tsx -------------------------------------------------------------------------------- /src/shared/graphics/GoogleLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/graphics/GoogleLogo.tsx -------------------------------------------------------------------------------- /src/shared/graphics/MicrosoftLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/graphics/MicrosoftLogo.tsx -------------------------------------------------------------------------------- /src/shared/middleware/resizeLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/middleware/resizeLayout.ts -------------------------------------------------------------------------------- /src/shared/reducers/app.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/reducers/app.test.ts -------------------------------------------------------------------------------- /src/shared/reducers/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/reducers/app.ts -------------------------------------------------------------------------------- /src/shared/reducers/autoRefresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/reducers/autoRefresh.ts -------------------------------------------------------------------------------- /src/shared/reducers/currentPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/reducers/currentPage.ts -------------------------------------------------------------------------------- /src/shared/reducers/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/reducers/flags.ts -------------------------------------------------------------------------------- /src/shared/reducers/fluxDocs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/reducers/fluxDocs.ts -------------------------------------------------------------------------------- /src/shared/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/reducers/index.ts -------------------------------------------------------------------------------- /src/shared/reducers/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/reducers/notifications.ts -------------------------------------------------------------------------------- /src/shared/search/DocSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/search/DocSearch.tsx -------------------------------------------------------------------------------- /src/shared/search/GlobalSearch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/search/GlobalSearch.scss -------------------------------------------------------------------------------- /src/shared/search/GlobalSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/search/GlobalSearch.tsx -------------------------------------------------------------------------------- /src/shared/search/HitComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/search/HitComponent.tsx -------------------------------------------------------------------------------- /src/shared/selectors/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/selectors/app.ts -------------------------------------------------------------------------------- /src/shared/selectors/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/selectors/flags.ts -------------------------------------------------------------------------------- /src/shared/selectors/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/selectors/notifications.ts -------------------------------------------------------------------------------- /src/shared/thunks/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/thunks/app.ts -------------------------------------------------------------------------------- /src/shared/thunks/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/thunks/flags.ts -------------------------------------------------------------------------------- /src/shared/utils/__mocks__/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/__mocks__/errors.ts -------------------------------------------------------------------------------- /src/shared/utils/ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/ast.ts -------------------------------------------------------------------------------- /src/shared/utils/convertUserInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/convertUserInput.ts -------------------------------------------------------------------------------- /src/shared/utils/dataListening.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/dataListening.ts -------------------------------------------------------------------------------- /src/shared/utils/dateTimeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/dateTimeUtils.ts -------------------------------------------------------------------------------- /src/shared/utils/debouncer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/debouncer.ts -------------------------------------------------------------------------------- /src/shared/utils/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/download.ts -------------------------------------------------------------------------------- /src/shared/utils/downloads.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/downloads.test.ts -------------------------------------------------------------------------------- /src/shared/utils/duration.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/duration.test.tsx -------------------------------------------------------------------------------- /src/shared/utils/duration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/duration.ts -------------------------------------------------------------------------------- /src/shared/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/errors.ts -------------------------------------------------------------------------------- /src/shared/utils/featureFlag.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/featureFlag.test.ts -------------------------------------------------------------------------------- /src/shared/utils/featureFlag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/featureFlag.ts -------------------------------------------------------------------------------- /src/shared/utils/filterUnusedVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/filterUnusedVars.ts -------------------------------------------------------------------------------- /src/shared/utils/fluxExample.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/fluxExample.test.ts -------------------------------------------------------------------------------- /src/shared/utils/fluxExample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/fluxExample.ts -------------------------------------------------------------------------------- /src/shared/utils/fluxFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/fluxFunctions.ts -------------------------------------------------------------------------------- /src/shared/utils/formatOrgRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/formatOrgRoute.ts -------------------------------------------------------------------------------- /src/shared/utils/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/functions.ts -------------------------------------------------------------------------------- /src/shared/utils/mocks/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/mocks/data.ts -------------------------------------------------------------------------------- /src/shared/utils/move.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/move.test.ts -------------------------------------------------------------------------------- /src/shared/utils/move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/move.ts -------------------------------------------------------------------------------- /src/shared/utils/pageTitles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/pageTitles.ts -------------------------------------------------------------------------------- /src/shared/utils/pluralize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/pluralize.ts -------------------------------------------------------------------------------- /src/shared/utils/sort.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/sort.test.ts -------------------------------------------------------------------------------- /src/shared/utils/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/sort.ts -------------------------------------------------------------------------------- /src/shared/utils/useOneWayState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/useOneWayState.ts -------------------------------------------------------------------------------- /src/shared/utils/validateURI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/validateURI.ts -------------------------------------------------------------------------------- /src/shared/utils/vis.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/vis.test.ts -------------------------------------------------------------------------------- /src/shared/utils/vis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/shared/utils/vis.ts -------------------------------------------------------------------------------- /src/store/configureStore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/store/configureStore.test.ts -------------------------------------------------------------------------------- /src/store/configureStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/store/configureStore.ts -------------------------------------------------------------------------------- /src/store/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/store/history.ts -------------------------------------------------------------------------------- /src/store/persistStateEnhancer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/store/persistStateEnhancer.ts -------------------------------------------------------------------------------- /src/style/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/style/_helpers.scss -------------------------------------------------------------------------------- /src/style/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/style/_variables.scss -------------------------------------------------------------------------------- /src/style/chronograf.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/style/chronograf.scss -------------------------------------------------------------------------------- /src/style/modules.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/style/modules.scss -------------------------------------------------------------------------------- /src/tasks/actions/creators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/tasks/actions/creators.ts -------------------------------------------------------------------------------- /src/tasks/actions/thunks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/tasks/actions/thunks.test.ts -------------------------------------------------------------------------------- /src/tasks/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/tasks/actions/thunks.ts -------------------------------------------------------------------------------- /src/tasks/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/tasks/apis/index.ts -------------------------------------------------------------------------------- /src/tasks/components/RunLogRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/tasks/components/RunLogRow.tsx -------------------------------------------------------------------------------- /src/tasks/components/TaskCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/tasks/components/TaskCard.tsx -------------------------------------------------------------------------------- /src/tasks/components/TaskForm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/tasks/components/TaskForm.scss -------------------------------------------------------------------------------- /src/tasks/components/TaskForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/tasks/components/TaskForm.tsx -------------------------------------------------------------------------------- /src/tasks/components/TasksList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/tasks/components/TasksList.tsx -------------------------------------------------------------------------------- /src/tasks/components/tasksPagination.scss: -------------------------------------------------------------------------------- 1 | .cf-resource-card--context-menu { 2 | right: 28px; 3 | } 4 | -------------------------------------------------------------------------------- /src/tasks/containers/TaskPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/tasks/containers/TaskPage.tsx -------------------------------------------------------------------------------- /src/tasks/containers/TasksPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/tasks/containers/TasksPage.tsx -------------------------------------------------------------------------------- /src/tasks/reducers/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/tasks/reducers/helpers.ts -------------------------------------------------------------------------------- /src/tasks/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/tasks/reducers/index.ts -------------------------------------------------------------------------------- /src/tasks/reducers/tasks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/tasks/reducers/tasks.test.ts -------------------------------------------------------------------------------- /src/telegrafs/actions/creators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/telegrafs/actions/creators.ts -------------------------------------------------------------------------------- /src/telegrafs/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/telegrafs/actions/thunks.ts -------------------------------------------------------------------------------- /src/telegrafs/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/telegrafs/reducers/index.ts -------------------------------------------------------------------------------- /src/templates/actions/creators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/templates/actions/creators.ts -------------------------------------------------------------------------------- /src/templates/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/templates/actions/thunks.ts -------------------------------------------------------------------------------- /src/templates/api/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/templates/api/index.test.ts -------------------------------------------------------------------------------- /src/templates/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/templates/api/index.ts -------------------------------------------------------------------------------- /src/templates/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/templates/reducers/index.ts -------------------------------------------------------------------------------- /src/templates/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/templates/selectors/index.ts -------------------------------------------------------------------------------- /src/templates/utils/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/templates/utils/index.test.ts -------------------------------------------------------------------------------- /src/templates/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/templates/utils/index.ts -------------------------------------------------------------------------------- /src/timeMachine/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/timeMachine/actions/index.ts -------------------------------------------------------------------------------- /src/timeMachine/actions/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/timeMachine/actions/queries.ts -------------------------------------------------------------------------------- /src/timeMachine/components/Vis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/timeMachine/components/Vis.tsx -------------------------------------------------------------------------------- /src/timeMachine/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/timeMachine/reducers/index.ts -------------------------------------------------------------------------------- /src/timeMachine/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/timeMachine/selectors/index.ts -------------------------------------------------------------------------------- /src/types/adminds.ts: -------------------------------------------------------------------------------- 1 | export interface AdMinds { 2 | triggerAbandonedCart: (formId?: number) => void 3 | } 4 | -------------------------------------------------------------------------------- /src/types/alerting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/alerting.ts -------------------------------------------------------------------------------- /src/types/annotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/annotation.ts -------------------------------------------------------------------------------- /src/types/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/app.ts -------------------------------------------------------------------------------- /src/types/arguments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/arguments.ts -------------------------------------------------------------------------------- /src/types/ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/ast.ts -------------------------------------------------------------------------------- /src/types/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/auth.ts -------------------------------------------------------------------------------- /src/types/autoRefresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/autoRefresh.ts -------------------------------------------------------------------------------- /src/types/billing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/billing.ts -------------------------------------------------------------------------------- /src/types/buckets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/buckets.ts -------------------------------------------------------------------------------- /src/types/checks.ts: -------------------------------------------------------------------------------- 1 | export type CheckIDsMap = { 2 | [key: string]: boolean 3 | } 4 | -------------------------------------------------------------------------------- /src/types/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/colors.ts -------------------------------------------------------------------------------- /src/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/common.ts -------------------------------------------------------------------------------- /src/types/dashboards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/dashboards.ts -------------------------------------------------------------------------------- /src/types/dataExplorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/dataExplorer.ts -------------------------------------------------------------------------------- /src/types/dataLoaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/dataLoaders.ts -------------------------------------------------------------------------------- /src/types/documents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/documents.ts -------------------------------------------------------------------------------- /src/types/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/error.ts -------------------------------------------------------------------------------- /src/types/eventViewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/eventViewer.ts -------------------------------------------------------------------------------- /src/types/flows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/flows.ts -------------------------------------------------------------------------------- /src/types/flux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/flux.ts -------------------------------------------------------------------------------- /src/types/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/form.ts -------------------------------------------------------------------------------- /src/types/geo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/geo.ts -------------------------------------------------------------------------------- /src/types/histogram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/histogram.ts -------------------------------------------------------------------------------- /src/types/hosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/hosts.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/influxAdmin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/influxAdmin.ts -------------------------------------------------------------------------------- /src/types/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/labels.ts -------------------------------------------------------------------------------- /src/types/layouts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/layouts.ts -------------------------------------------------------------------------------- /src/types/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/localStorage.ts -------------------------------------------------------------------------------- /src/types/logEvent.ts: -------------------------------------------------------------------------------- 1 | export {LogEvent} from 'src/client' 2 | -------------------------------------------------------------------------------- /src/types/marketplace.ts: -------------------------------------------------------------------------------- 1 | export {Marketplace} from 'src/client/unityRoutes' 2 | -------------------------------------------------------------------------------- /src/types/me.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/me.ts -------------------------------------------------------------------------------- /src/types/members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/members.ts -------------------------------------------------------------------------------- /src/types/monaco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/monaco.ts -------------------------------------------------------------------------------- /src/types/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/notifications.ts -------------------------------------------------------------------------------- /src/types/operator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/operator.ts -------------------------------------------------------------------------------- /src/types/orgs.ts: -------------------------------------------------------------------------------- 1 | export {Organization} from 'src/client' 2 | -------------------------------------------------------------------------------- /src/types/overlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/overlay.ts -------------------------------------------------------------------------------- /src/types/promises.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/promises.ts -------------------------------------------------------------------------------- /src/types/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/queries.ts -------------------------------------------------------------------------------- /src/types/redux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/redux.ts -------------------------------------------------------------------------------- /src/types/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/resources.ts -------------------------------------------------------------------------------- /src/types/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/run.ts -------------------------------------------------------------------------------- /src/types/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/schemas.ts -------------------------------------------------------------------------------- /src/types/scrapers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/scrapers.ts -------------------------------------------------------------------------------- /src/types/scripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/scripts.ts -------------------------------------------------------------------------------- /src/types/secrets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/secrets.ts -------------------------------------------------------------------------------- /src/types/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/services.ts -------------------------------------------------------------------------------- /src/types/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/shared.ts -------------------------------------------------------------------------------- /src/types/sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/sources.ts -------------------------------------------------------------------------------- /src/types/stores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/stores.ts -------------------------------------------------------------------------------- /src/types/subscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/subscriptions.ts -------------------------------------------------------------------------------- /src/types/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/tasks.ts -------------------------------------------------------------------------------- /src/types/telegraf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/telegraf.ts -------------------------------------------------------------------------------- /src/types/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/templates.ts -------------------------------------------------------------------------------- /src/types/timeMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/timeMachine.ts -------------------------------------------------------------------------------- /src/types/timeZones.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/timeZones.ts -------------------------------------------------------------------------------- /src/types/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/tokens.ts -------------------------------------------------------------------------------- /src/types/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/users.ts -------------------------------------------------------------------------------- /src/types/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/variables.ts -------------------------------------------------------------------------------- /src/types/views.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/types/views.ts -------------------------------------------------------------------------------- /src/usage/BillingStatsPanel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/usage/BillingStatsPanel.scss -------------------------------------------------------------------------------- /src/usage/BillingStatsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/usage/BillingStatsPanel.tsx -------------------------------------------------------------------------------- /src/usage/RateLimits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/usage/RateLimits.tsx -------------------------------------------------------------------------------- /src/usage/UsageDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/usage/UsageDropdown.tsx -------------------------------------------------------------------------------- /src/usage/UsagePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/usage/UsagePage.tsx -------------------------------------------------------------------------------- /src/usage/UsageResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/usage/UsageResults.tsx -------------------------------------------------------------------------------- /src/usage/UsageSingleStat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/usage/UsageSingleStat.tsx -------------------------------------------------------------------------------- /src/usage/UsageToday.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/usage/UsageToday.tsx -------------------------------------------------------------------------------- /src/usage/UsageXYGraph.scss: -------------------------------------------------------------------------------- 1 | .panel-body--size { 2 | position: relative; 3 | min-height: 75px; 4 | } 5 | -------------------------------------------------------------------------------- /src/usage/UsageXYGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/usage/UsageXYGraph.tsx -------------------------------------------------------------------------------- /src/usage/context/usage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/usage/context/usage.test.ts -------------------------------------------------------------------------------- /src/usage/context/usage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/usage/context/usage.tsx -------------------------------------------------------------------------------- /src/userSettings/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/userSettings/actions/index.ts -------------------------------------------------------------------------------- /src/userSettings/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/userSettings/reducers/index.ts -------------------------------------------------------------------------------- /src/users/components/UserList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/users/components/UserList.scss -------------------------------------------------------------------------------- /src/users/components/UserList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/users/components/UserList.tsx -------------------------------------------------------------------------------- /src/users/components/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/users/components/Users.tsx -------------------------------------------------------------------------------- /src/users/components/UsersPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/users/components/UsersPage.tsx -------------------------------------------------------------------------------- /src/users/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/users/constants/index.ts -------------------------------------------------------------------------------- /src/users/context/users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/users/context/users.tsx -------------------------------------------------------------------------------- /src/users/hooks/useEvent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/users/hooks/useEvent.tsx -------------------------------------------------------------------------------- /src/users/utils/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/users/utils/filter.ts -------------------------------------------------------------------------------- /src/utils/AutoRefresher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/AutoRefresher.ts -------------------------------------------------------------------------------- /src/utils/Deferred.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/Deferred.ts -------------------------------------------------------------------------------- /src/utils/SafeBlankLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/SafeBlankLink.tsx -------------------------------------------------------------------------------- /src/utils/analyticsTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/analyticsTools.ts -------------------------------------------------------------------------------- /src/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/api.ts -------------------------------------------------------------------------------- /src/utils/basepath.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/basepath.test.ts -------------------------------------------------------------------------------- /src/utils/basepath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/basepath.ts -------------------------------------------------------------------------------- /src/utils/crossPlatform.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/crossPlatform.test.ts -------------------------------------------------------------------------------- /src/utils/crossPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/crossPlatform.ts -------------------------------------------------------------------------------- /src/utils/csvParser/parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/csvParser/parser.test.ts -------------------------------------------------------------------------------- /src/utils/csvParser/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/csvParser/parser.ts -------------------------------------------------------------------------------- /src/utils/csvParser/reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/csvParser/reader.ts -------------------------------------------------------------------------------- /src/utils/csvParser/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/csvParser/utils.ts -------------------------------------------------------------------------------- /src/utils/datetime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/datetime/README.md -------------------------------------------------------------------------------- /src/utils/datetime/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/datetime/constants.ts -------------------------------------------------------------------------------- /src/utils/datetime/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/datetime/formatters.ts -------------------------------------------------------------------------------- /src/utils/datetime/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/datetime/validator.ts -------------------------------------------------------------------------------- /src/utils/deepLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/deepLinks.ts -------------------------------------------------------------------------------- /src/utils/env.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/env.test.ts -------------------------------------------------------------------------------- /src/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/env.ts -------------------------------------------------------------------------------- /src/utils/fast.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/fast.test.ts -------------------------------------------------------------------------------- /src/utils/fast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/fast.ts -------------------------------------------------------------------------------- /src/utils/formatting.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/formatting.test.ts -------------------------------------------------------------------------------- /src/utils/formatting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/formatting.ts -------------------------------------------------------------------------------- /src/utils/naming.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/naming.test.ts -------------------------------------------------------------------------------- /src/utils/naming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/naming.ts -------------------------------------------------------------------------------- /src/utils/nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/nodes.ts -------------------------------------------------------------------------------- /src/utils/safeBlankLinkOpen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/safeBlankLinkOpen.ts -------------------------------------------------------------------------------- /src/utils/wrappers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/wrappers.test.ts -------------------------------------------------------------------------------- /src/utils/wrappers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/utils/wrappers.ts -------------------------------------------------------------------------------- /src/variables/actions/creators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/variables/actions/creators.ts -------------------------------------------------------------------------------- /src/variables/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/variables/actions/thunks.ts -------------------------------------------------------------------------------- /src/variables/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/variables/apis/index.ts -------------------------------------------------------------------------------- /src/variables/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/variables/constants/index.ts -------------------------------------------------------------------------------- /src/variables/mocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/variables/mocks/index.ts -------------------------------------------------------------------------------- /src/variables/reducers/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/variables/reducers/editor.ts -------------------------------------------------------------------------------- /src/variables/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/variables/reducers/index.ts -------------------------------------------------------------------------------- /src/variables/selectors/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/variables/selectors/index.tsx -------------------------------------------------------------------------------- /src/variables/utils/astim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/variables/utils/astim.ts -------------------------------------------------------------------------------- /src/variables/utils/hydrateVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/variables/utils/hydrateVars.ts -------------------------------------------------------------------------------- /src/variables/utils/mapBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/variables/utils/mapBuilder.ts -------------------------------------------------------------------------------- /src/variables/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/variables/utils/validation.ts -------------------------------------------------------------------------------- /src/views/actions/creators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/views/actions/creators.ts -------------------------------------------------------------------------------- /src/views/actions/thunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/views/actions/thunks.ts -------------------------------------------------------------------------------- /src/views/helpers/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/views/helpers/index.test.ts -------------------------------------------------------------------------------- /src/views/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/views/helpers/index.ts -------------------------------------------------------------------------------- /src/views/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/views/reducers/index.ts -------------------------------------------------------------------------------- /src/views/selectors/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/views/selectors/index.test.ts -------------------------------------------------------------------------------- /src/views/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/views/selectors/index.ts -------------------------------------------------------------------------------- /src/visualization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/visualization/README.md -------------------------------------------------------------------------------- /src/visualization/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/visualization/constants.ts -------------------------------------------------------------------------------- /src/visualization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/visualization/index.ts -------------------------------------------------------------------------------- /src/visualization/styles/Band.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/visualization/styles/Band.scss -------------------------------------------------------------------------------- /src/writeData/clients/Dart/dispose.example: -------------------------------------------------------------------------------- 1 | client.close(); 2 | -------------------------------------------------------------------------------- /src/writeData/clients/Go/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/clients/Go/index.ts -------------------------------------------------------------------------------- /src/writeData/clients/Go/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/clients/Go/logo.svg -------------------------------------------------------------------------------- /src/writeData/clients/Java/dispose.example: -------------------------------------------------------------------------------- 1 | client.close(); 2 | -------------------------------------------------------------------------------- /src/writeData/clients/Kotlin/dispose.example: -------------------------------------------------------------------------------- 1 | client.close() 2 | -------------------------------------------------------------------------------- /src/writeData/clients/PHP/dispose.example: -------------------------------------------------------------------------------- 1 | $client->close(); 2 | -------------------------------------------------------------------------------- /src/writeData/clients/PHP/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/clients/PHP/index.ts -------------------------------------------------------------------------------- /src/writeData/clients/PHP/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/clients/PHP/logo.svg -------------------------------------------------------------------------------- /src/writeData/clients/Python/dispose.example: -------------------------------------------------------------------------------- 1 | client.close() 2 | -------------------------------------------------------------------------------- /src/writeData/clients/R/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/clients/R/index.ts -------------------------------------------------------------------------------- /src/writeData/clients/R/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/clients/R/logo.svg -------------------------------------------------------------------------------- /src/writeData/clients/Ruby/dispose.example: -------------------------------------------------------------------------------- 1 | client.close! 2 | -------------------------------------------------------------------------------- /src/writeData/clients/Scala/dispose.example: -------------------------------------------------------------------------------- 1 | client.close() 2 | system.terminate() 3 | -------------------------------------------------------------------------------- /src/writeData/clients/Swift/dispose.example: -------------------------------------------------------------------------------- 1 | client.close() 2 | -------------------------------------------------------------------------------- /src/writeData/graphics/CLIIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/CLIIcon.svg -------------------------------------------------------------------------------- /src/writeData/graphics/apache.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/apache.svg -------------------------------------------------------------------------------- /src/writeData/graphics/apcupsd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/apcupsd.svg -------------------------------------------------------------------------------- /src/writeData/graphics/aurora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/aurora.svg -------------------------------------------------------------------------------- /src/writeData/graphics/beat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/beat.svg -------------------------------------------------------------------------------- /src/writeData/graphics/bind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/bind.svg -------------------------------------------------------------------------------- /src/writeData/graphics/burrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/burrow.svg -------------------------------------------------------------------------------- /src/writeData/graphics/ceph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/ceph.svg -------------------------------------------------------------------------------- /src/writeData/graphics/cisco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/cisco.svg -------------------------------------------------------------------------------- /src/writeData/graphics/consul.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/consul.svg -------------------------------------------------------------------------------- /src/writeData/graphics/couchdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/couchdb.svg -------------------------------------------------------------------------------- /src/writeData/graphics/cpu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/cpu.svg -------------------------------------------------------------------------------- /src/writeData/graphics/csgo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/csgo.svg -------------------------------------------------------------------------------- /src/writeData/graphics/csv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/csv.svg -------------------------------------------------------------------------------- /src/writeData/graphics/dcos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/dcos.svg -------------------------------------------------------------------------------- /src/writeData/graphics/dell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/dell.svg -------------------------------------------------------------------------------- /src/writeData/graphics/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/docker.svg -------------------------------------------------------------------------------- /src/writeData/graphics/dovecot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/dovecot.svg -------------------------------------------------------------------------------- /src/writeData/graphics/dpdk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/dpdk.svg -------------------------------------------------------------------------------- /src/writeData/graphics/ecs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/ecs.svg -------------------------------------------------------------------------------- /src/writeData/graphics/exec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/exec.svg -------------------------------------------------------------------------------- /src/writeData/graphics/fibaro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/fibaro.svg -------------------------------------------------------------------------------- /src/writeData/graphics/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/file.svg -------------------------------------------------------------------------------- /src/writeData/graphics/fluentd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/fluentd.svg -------------------------------------------------------------------------------- /src/writeData/graphics/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/folder.svg -------------------------------------------------------------------------------- /src/writeData/graphics/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/github.svg -------------------------------------------------------------------------------- /src/writeData/graphics/graylog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/graylog.svg -------------------------------------------------------------------------------- /src/writeData/graphics/haproxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/haproxy.svg -------------------------------------------------------------------------------- /src/writeData/graphics/http.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/http.svg -------------------------------------------------------------------------------- /src/writeData/graphics/icigna2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/icigna2.svg -------------------------------------------------------------------------------- /src/writeData/graphics/icinga2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/icinga2.svg -------------------------------------------------------------------------------- /src/writeData/graphics/inputs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/inputs.svg -------------------------------------------------------------------------------- /src/writeData/graphics/intel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/intel.svg -------------------------------------------------------------------------------- /src/writeData/graphics/jenkins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/jenkins.svg -------------------------------------------------------------------------------- /src/writeData/graphics/jolokia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/jolokia.svg -------------------------------------------------------------------------------- /src/writeData/graphics/kafka.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/kafka.svg -------------------------------------------------------------------------------- /src/writeData/graphics/kibana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/kibana.svg -------------------------------------------------------------------------------- /src/writeData/graphics/lanz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/lanz.svg -------------------------------------------------------------------------------- /src/writeData/graphics/leofs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/leofs.svg -------------------------------------------------------------------------------- /src/writeData/graphics/lp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/lp.svg -------------------------------------------------------------------------------- /src/writeData/graphics/mesos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/mesos.svg -------------------------------------------------------------------------------- /src/writeData/graphics/modbus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/modbus.svg -------------------------------------------------------------------------------- /src/writeData/graphics/mongodb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/mongodb.svg -------------------------------------------------------------------------------- /src/writeData/graphics/monit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/monit.svg -------------------------------------------------------------------------------- /src/writeData/graphics/mysql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/mysql.svg -------------------------------------------------------------------------------- /src/writeData/graphics/nats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/nats.svg -------------------------------------------------------------------------------- /src/writeData/graphics/nginx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/nginx.svg -------------------------------------------------------------------------------- /src/writeData/graphics/nsd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/nsd.svg -------------------------------------------------------------------------------- /src/writeData/graphics/nsq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/nsq.svg -------------------------------------------------------------------------------- /src/writeData/graphics/opcua.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/opcua.svg -------------------------------------------------------------------------------- /src/writeData/graphics/pf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/pf.svg -------------------------------------------------------------------------------- /src/writeData/graphics/phpfpm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/phpfpm.svg -------------------------------------------------------------------------------- /src/writeData/graphics/postfix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/postfix.svg -------------------------------------------------------------------------------- /src/writeData/graphics/proxmox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/proxmox.svg -------------------------------------------------------------------------------- /src/writeData/graphics/ravendb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/ravendb.svg -------------------------------------------------------------------------------- /src/writeData/graphics/redfish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/redfish.svg -------------------------------------------------------------------------------- /src/writeData/graphics/redis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/redis.svg -------------------------------------------------------------------------------- /src/writeData/graphics/riak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/riak.svg -------------------------------------------------------------------------------- /src/writeData/graphics/sflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/sflow.svg -------------------------------------------------------------------------------- /src/writeData/graphics/solr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/solr.svg -------------------------------------------------------------------------------- /src/writeData/graphics/sql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/sql.svg -------------------------------------------------------------------------------- /src/writeData/graphics/temp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/temp.svg -------------------------------------------------------------------------------- /src/writeData/graphics/tengine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/tengine.svg -------------------------------------------------------------------------------- /src/writeData/graphics/tomcat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/tomcat.svg -------------------------------------------------------------------------------- /src/writeData/graphics/unbound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/unbound.svg -------------------------------------------------------------------------------- /src/writeData/graphics/uwsgi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/uwsgi.svg -------------------------------------------------------------------------------- /src/writeData/graphics/varnish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/varnish.svg -------------------------------------------------------------------------------- /src/writeData/graphics/vsphere.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/vsphere.svg -------------------------------------------------------------------------------- /src/writeData/graphics/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/windows.svg -------------------------------------------------------------------------------- /src/writeData/graphics/zfs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/zfs.svg -------------------------------------------------------------------------------- /src/writeData/graphics/zipkin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/graphics/zipkin.svg -------------------------------------------------------------------------------- /src/writeData/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/index.ts -------------------------------------------------------------------------------- /src/writeData/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/src/writeData/utils/README.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /webpack.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/webpack.common.ts -------------------------------------------------------------------------------- /webpack.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/webpack.dev.ts -------------------------------------------------------------------------------- /webpack.fast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/webpack.fast.ts -------------------------------------------------------------------------------- /webpack.lighthouse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/webpack.lighthouse.ts -------------------------------------------------------------------------------- /webpack.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/webpack.prod.ts -------------------------------------------------------------------------------- /webpack.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/webpack.tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/ui/HEAD/yarn.lock --------------------------------------------------------------------------------