├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README_CN.md ├── datav ├── .gitignore ├── Dockerfile ├── README.md ├── frontend │ ├── .dockerignore │ ├── .env │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── .nvmrc │ ├── .prettierignore │ ├── .prettierrc │ ├── 404.html │ ├── Dockerfile │ ├── README.md │ ├── deploy.sh │ ├── index.d.ts │ ├── index.html │ ├── nginx.template │ ├── package.json │ ├── public │ │ ├── dashboard │ │ │ ├── dark-rainbow.png │ │ │ ├── rainbow.jpg │ │ │ └── universe.png │ │ ├── empty-posts.png │ │ ├── empty.svg │ │ ├── favicon.png │ │ ├── fonts │ │ │ └── Inter.woff2 │ │ ├── happy-dev.jpg │ │ ├── light-rust.svg │ │ ├── login-bg.png │ │ ├── login-bg.svg │ │ ├── logo.svg │ │ ├── logo1.png │ │ ├── not-found.png │ │ ├── play.datav.io │ │ │ ├── go-runtime.json │ │ │ ├── home-dashboard.json │ │ │ ├── host-metrics.json │ │ │ ├── logs.json │ │ │ └── traces.json │ │ ├── plugins │ │ │ └── panel │ │ │ │ └── geomap │ │ │ │ ├── .gitignore │ │ │ │ ├── cities.json │ │ │ │ ├── countries.json │ │ │ │ └── countryNames.json │ │ ├── pokeman.svg │ │ ├── rocket.svg │ │ ├── scripts │ │ │ ├── bmap.min.js │ │ │ ├── echarts.common.min.js │ │ │ ├── echarts.min.js │ │ │ ├── mapbox-gl.css │ │ │ ├── mapbox-gl.js │ │ │ └── mapbox-gl.js.map │ │ ├── useful-but-not-use-yet │ │ │ └── v0zA0b2ci.png │ │ └── wechat.jpg │ ├── src │ │ ├── App.tsx │ │ ├── analytics │ │ │ ├── ga-script.tsx │ │ │ └── track-event.ts │ │ ├── components │ │ │ ├── AntdWrapper.tsx │ │ │ ├── BackToTop.tsx │ │ │ ├── BaiduMap.tsx │ │ │ ├── BarGauge │ │ │ │ └── BarGauge.tsx │ │ │ ├── Card.tsx │ │ │ ├── ClickOutside.tsx │ │ │ ├── CodeEditor │ │ │ │ ├── CodeEditor.css │ │ │ │ ├── CodeEditor.tsx │ │ │ │ ├── CodeEditorModal.tsx │ │ │ │ └── useMonacoWorker.ts │ │ │ ├── ColorKV.tsx │ │ │ ├── ColorModeSwitcher.tsx │ │ │ ├── ColorPalette.tsx │ │ │ ├── ColorPicker.tsx │ │ │ ├── ColorTag.tsx │ │ │ ├── Container.tsx │ │ │ ├── CopyToClipboard.tsx │ │ │ ├── CustomScrollbar │ │ │ │ ├── CustomScrollbar.tsx │ │ │ │ └── ScrollIndicators.tsx │ │ │ ├── DatePicker │ │ │ │ ├── DatePicker.tsx │ │ │ │ ├── TimePicker.tsx │ │ │ │ └── store.ts │ │ │ ├── DetailAlert.tsx │ │ │ ├── Empty.tsx │ │ │ ├── ErrorBoudary.tsx │ │ │ ├── ExternalLinks.tsx │ │ │ ├── Fullscreen.tsx │ │ │ ├── Help.tsx │ │ │ ├── LabelList.tsx │ │ │ ├── LazyLoader.tsx │ │ │ ├── Logo.tsx │ │ │ ├── MultiRadioButtons.tsx │ │ │ ├── PageTransition.tsx │ │ │ ├── PopoverTooltip.tsx │ │ │ ├── RadioButtons.tsx │ │ │ ├── TagsFilter.tsx │ │ │ ├── Toc │ │ │ │ └── Toc.tsx │ │ │ ├── VerticalResizer │ │ │ │ ├── VerticalResizer.css │ │ │ │ └── VerticalResizer.tsx │ │ │ ├── button │ │ │ │ └── IconButton.tsx │ │ │ ├── cards │ │ │ │ └── CardSelect.tsx │ │ │ ├── charts │ │ │ │ └── Chart.tsx │ │ │ ├── configloader │ │ │ │ ├── BasicConfig.tsx │ │ │ │ └── CommonConfig.tsx │ │ │ ├── datasource │ │ │ │ └── Select.tsx │ │ │ ├── editor │ │ │ │ └── EditorItem.tsx │ │ │ ├── form │ │ │ │ ├── Form.tsx │ │ │ │ └── Item.tsx │ │ │ ├── grid │ │ │ │ ├── AutoGrid.tsx │ │ │ │ └── utils.ts │ │ │ ├── icons │ │ │ │ ├── Collapse.tsx │ │ │ │ └── PanelAdd.tsx │ │ │ ├── input │ │ │ │ ├── InputWithTips.tsx │ │ │ │ └── SearchInput.tsx │ │ │ ├── largescreen │ │ │ │ ├── autoResize.ts │ │ │ │ ├── border │ │ │ │ │ ├── Border1.tsx │ │ │ │ │ ├── Border10.tsx │ │ │ │ │ ├── Border11.tsx │ │ │ │ │ ├── Border12.tsx │ │ │ │ │ ├── Border13.tsx │ │ │ │ │ ├── Border2.tsx │ │ │ │ │ ├── Border3.tsx │ │ │ │ │ ├── Border4.tsx │ │ │ │ │ ├── Border5.tsx │ │ │ │ │ ├── Border6.tsx │ │ │ │ │ ├── Border7.tsx │ │ │ │ │ ├── Border8.tsx │ │ │ │ │ └── Border9.tsx │ │ │ │ ├── components │ │ │ │ │ ├── Border.tsx │ │ │ │ │ ├── BorderSelect.tsx │ │ │ │ │ ├── Decoration.tsx │ │ │ │ │ ├── DecorationSelect.tsx │ │ │ │ │ └── TitleDecoration.tsx │ │ │ │ ├── decoration │ │ │ │ │ ├── Decoration1.tsx │ │ │ │ │ ├── Decoration10.tsx │ │ │ │ │ ├── Decoration11.tsx │ │ │ │ │ ├── Decoration12.tsx │ │ │ │ │ ├── Decoration2.tsx │ │ │ │ │ ├── Decoration3.tsx │ │ │ │ │ ├── Decoration4.tsx │ │ │ │ │ ├── Decoration5.tsx │ │ │ │ │ ├── Decoration6.tsx │ │ │ │ │ ├── Decoration7.tsx │ │ │ │ │ ├── Decoration8.tsx │ │ │ │ │ └── Decoration9.tsx │ │ │ │ ├── styles │ │ │ │ │ └── decoration.css │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── loading │ │ │ │ └── Loading.tsx │ │ │ ├── markdown │ │ │ │ └── MarkdownRender.tsx │ │ │ ├── portal │ │ │ │ └── Portal.tsx │ │ │ ├── select │ │ │ │ ├── AntdSelect.tsx │ │ │ │ ├── ChakraMultiSelect.tsx │ │ │ │ ├── ChakraSelect.tsx │ │ │ │ ├── InputSelect.tsx │ │ │ │ └── PopoverSelect.tsx │ │ │ ├── spinner │ │ │ │ └── modal-spinner.tsx │ │ │ ├── table │ │ │ │ └── ColumnResizableTable.tsx │ │ │ ├── uPlot │ │ │ │ ├── UplotReact.tsx │ │ │ │ └── colorManipulator.ts │ │ │ └── user │ │ │ │ ├── SelectUserTeam.tsx │ │ │ │ ├── SelectUserTenant.tsx │ │ │ │ └── UserMenu.tsx │ │ ├── data │ │ │ ├── bus-events.ts │ │ │ ├── configs │ │ │ │ └── config.ts │ │ │ ├── constants.ts │ │ │ ├── dashboard.ts │ │ │ ├── panel │ │ │ │ ├── initPanel.ts │ │ │ │ ├── initPlugins.ts │ │ │ │ └── initStyles.ts │ │ │ ├── reserve-urls.ts │ │ │ ├── storage-keys.ts │ │ │ ├── theme │ │ │ │ ├── dark.json │ │ │ │ └── light.json │ │ │ └── variable.ts │ │ ├── hooks │ │ │ ├── use-copy.ts │ │ │ ├── use-data.ts │ │ │ ├── use-fetch.ts │ │ │ ├── use-route-changed.ts │ │ │ ├── use-session.ts │ │ │ ├── useDedupEvent.ts │ │ │ ├── useEmbed.ts │ │ │ ├── useExtraTheme.ts │ │ │ ├── useFadeIn.ts │ │ │ ├── useFullscreen.ts │ │ │ ├── useIntersectionObserver.ts │ │ │ ├── useKeyEvent.ts │ │ │ ├── useLandscapeMode.ts │ │ │ ├── useLeavePage.ts │ │ │ ├── useMiniMode.ts │ │ │ └── usePageLeave.ts │ │ ├── i18n │ │ │ ├── i18n.ts │ │ │ ├── locales │ │ │ │ ├── en.ts │ │ │ │ └── zh.json │ │ │ └── ui.json │ │ ├── index.tsx │ │ ├── layouts │ │ │ ├── PageContainer.tsx │ │ │ ├── footer.tsx │ │ │ ├── footer │ │ │ │ └── copyright.tsx │ │ │ └── page │ │ │ │ └── Page.tsx │ │ ├── pages │ │ │ ├── GithubLogin.tsx │ │ │ ├── Login.tsx │ │ │ ├── NotFound.tsx │ │ │ ├── Test.tsx │ │ │ ├── account │ │ │ │ ├── Setting.tsx │ │ │ │ └── links.tsx │ │ │ ├── admin │ │ │ │ ├── AccessTokens.tsx │ │ │ │ ├── AuditLogs.tsx │ │ │ │ ├── Templates.tsx │ │ │ │ ├── Tenants.tsx │ │ │ │ ├── Users.tsx │ │ │ │ └── links.tsx │ │ │ ├── dashboard │ │ │ │ ├── Trace.tsx │ │ │ │ └── index.tsx │ │ │ ├── examples │ │ │ │ └── Iframe.tsx │ │ │ ├── new │ │ │ │ ├── Dashboard.tsx │ │ │ │ ├── Datasource.tsx │ │ │ │ ├── Import.tsx │ │ │ │ ├── Template.tsx │ │ │ │ └── links.tsx │ │ │ ├── team │ │ │ │ ├── Dashboards.tsx │ │ │ │ ├── Datasources.tsx │ │ │ │ ├── Members.tsx │ │ │ │ ├── Setting.tsx │ │ │ │ ├── Sidemenu.tsx │ │ │ │ ├── Templates.tsx │ │ │ │ ├── Variables.tsx │ │ │ │ └── components │ │ │ │ │ └── Layout.tsx │ │ │ ├── template │ │ │ │ └── index.tsx │ │ │ └── tenant │ │ │ │ ├── TenantSetting.tsx │ │ │ │ ├── TenantTeams.tsx │ │ │ │ ├── TenantTemplates.tsx │ │ │ │ ├── TenantUsers.tsx │ │ │ │ └── links.tsx │ │ ├── routes.tsx │ │ ├── theme │ │ │ ├── colors.js │ │ │ ├── common.styles.tsx │ │ │ ├── css │ │ │ │ ├── echarts.css │ │ │ │ └── react-grid.css │ │ │ ├── custom-classes.ts │ │ │ ├── layer-styles.js │ │ │ ├── markdown-render.ts │ │ │ ├── override-colors.ts │ │ │ ├── override-components.ts │ │ │ └── text-styles.ts │ │ ├── types │ │ │ ├── accesstoken.ts │ │ │ ├── admin.ts │ │ │ ├── alert.ts │ │ │ ├── annotation.ts │ │ │ ├── dashboard.ts │ │ │ ├── datasource.ts │ │ │ ├── format.ts │ │ │ ├── layout.ts │ │ │ ├── misc.ts │ │ │ ├── panel │ │ │ │ ├── plugins.ts │ │ │ │ └── styles.ts │ │ │ ├── plugin.ts │ │ │ ├── role.ts │ │ │ ├── route.ts │ │ │ ├── scope.ts │ │ │ ├── seriesData.ts │ │ │ ├── styles.ts │ │ │ ├── teams.ts │ │ │ ├── template.ts │ │ │ ├── tenant.ts │ │ │ ├── threshold.ts │ │ │ ├── time.ts │ │ │ ├── user.ts │ │ │ ├── value.ts │ │ │ └── variable.ts │ │ ├── utils │ │ │ ├── DraggableManager │ │ │ │ ├── DraggableManager.ts │ │ │ │ ├── EUpdateTypes.ts │ │ │ │ ├── README.md │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── async.ts │ │ │ ├── axios │ │ │ │ ├── api.ts │ │ │ │ ├── config.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── createError.ts │ │ │ │ ├── getToken.ts │ │ │ │ ├── interceptors.ts │ │ │ │ ├── request.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── colorGenerator.ts │ │ │ ├── colors.ts │ │ │ ├── dashboard │ │ │ │ ├── dashboard.ts │ │ │ │ ├── dynamicCall.ts │ │ │ │ └── panel.ts │ │ │ ├── datasource.ts │ │ │ ├── date.ts │ │ │ ├── datetime │ │ │ │ ├── formats.ts │ │ │ │ ├── formatter.ts │ │ │ │ └── range.ts │ │ │ ├── diff.ts │ │ │ ├── emitter.ts │ │ │ ├── events.ts │ │ │ ├── format.ts │ │ │ ├── is.ts │ │ │ ├── localStorage.ts │ │ │ ├── measureText.ts │ │ │ ├── numbers.ts │ │ │ ├── paletteGenerator.ts │ │ │ ├── plugins.ts │ │ │ ├── scope.ts │ │ │ ├── seriesData.ts │ │ │ ├── string.ts │ │ │ ├── template.ts │ │ │ ├── tenant.ts │ │ │ ├── theme.ts │ │ │ ├── toQueryStr.ts │ │ │ ├── treeNode.ts │ │ │ ├── url.ts │ │ │ ├── validate.ts │ │ │ ├── valueMapping.ts │ │ │ └── variable.ts │ │ └── views │ │ │ ├── Annotation │ │ │ ├── AnnotationEditor.tsx │ │ │ ├── AnnotationMarker.tsx │ │ │ ├── Annotations.tsx │ │ │ ├── EventsCanvas.tsx │ │ │ ├── Marker.tsx │ │ │ └── XYCanvas.tsx │ │ │ ├── accesstoken │ │ │ ├── AccessTokenManage.tsx │ │ │ └── store.ts │ │ │ ├── dashboard │ │ │ ├── AddPanel.tsx │ │ │ ├── Dashboard.tsx │ │ │ ├── DashboardAnnotations.tsx │ │ │ ├── DashboardHeader.tsx │ │ │ ├── DashboardRefresh.tsx │ │ │ ├── DashboardSave.tsx │ │ │ ├── DashboardShare.tsx │ │ │ ├── components │ │ │ │ ├── DashboardCard.tsx │ │ │ │ ├── DashboardStar.tsx │ │ │ │ ├── PanelDatePicker.tsx │ │ │ │ └── PanelNoData.tsx │ │ │ ├── edit-panel │ │ │ │ ├── Accordion.tsx │ │ │ │ ├── Alert.tsx │ │ │ │ ├── DatasourceQuery.tsx │ │ │ │ ├── EditPanel.tsx │ │ │ │ ├── PanelEditItem.tsx │ │ │ │ ├── PanelOverrides.tsx │ │ │ │ ├── PanelSettings.tsx │ │ │ │ ├── PanelStyles.tsx │ │ │ │ ├── PanelVariables.tsx │ │ │ │ ├── Transform.tsx │ │ │ │ └── components │ │ │ │ │ └── ClickActionsEditor.tsx │ │ │ ├── grid │ │ │ │ ├── DashboardGrid.tsx │ │ │ │ └── PanelGrid │ │ │ │ │ ├── DebugPanel.tsx │ │ │ │ │ ├── PanelGrid.tsx │ │ │ │ │ ├── PanelHeader.tsx │ │ │ │ │ └── RowPanel.tsx │ │ │ ├── plugins │ │ │ │ ├── built-in │ │ │ │ │ ├── datasource │ │ │ │ │ │ ├── clickhouse │ │ │ │ │ │ │ ├── DatasourceEditor.tsx │ │ │ │ │ │ │ ├── QueryEditor.tsx │ │ │ │ │ │ │ ├── VariableEditor.tsx │ │ │ │ │ │ │ ├── docs.ts │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── query_runner.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ ├── DatasourceEditor.tsx │ │ │ │ │ │ │ ├── QueryEditor.tsx │ │ │ │ │ │ │ ├── VariableEditor.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── query_runner.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── jaeger │ │ │ │ │ │ │ ├── DatasourceEditor.tsx │ │ │ │ │ │ │ ├── QueryEditor.tsx │ │ │ │ │ │ │ ├── VariableEditor.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── query_runner.ts │ │ │ │ │ │ │ ├── transformData.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── loki │ │ │ │ │ │ │ ├── DatasourceEditor.tsx │ │ │ │ │ │ │ ├── QueryEditor.tsx │ │ │ │ │ │ │ ├── VariableEdtitor.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── query_runner.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── mysql │ │ │ │ │ │ │ ├── DatasourceEditor.tsx │ │ │ │ │ │ │ ├── QueryEditor.tsx │ │ │ │ │ │ │ ├── VariableEditor.tsx │ │ │ │ │ │ │ ├── docs.ts │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── query_runner.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ ├── postgresql │ │ │ │ │ │ │ ├── DatasourceEditor.tsx │ │ │ │ │ │ │ ├── QueryEditor.tsx │ │ │ │ │ │ │ ├── VariableEditor.tsx │ │ │ │ │ │ │ ├── docs.ts │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── query_runner.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ ├── prometheus │ │ │ │ │ │ │ ├── DatasourceEditor.tsx │ │ │ │ │ │ │ ├── QueryEditor.tsx │ │ │ │ │ │ │ ├── VariableEditor.tsx │ │ │ │ │ │ │ ├── docs.ts │ │ │ │ │ │ │ ├── docs │ │ │ │ │ │ │ │ ├── basic.md │ │ │ │ │ │ │ │ ├── examples.md │ │ │ │ │ │ │ │ ├── functions.md │ │ │ │ │ │ │ │ └── operators.md │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── mocks │ │ │ │ │ │ │ │ └── metricsList.js │ │ │ │ │ │ │ ├── query_runner.ts │ │ │ │ │ │ │ ├── transformData.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── testdata │ │ │ │ │ │ │ ├── DatasourceEditor.tsx │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── mocks │ │ │ │ │ │ │ │ ├── alerts.ts │ │ │ │ │ │ │ │ ├── echarts.ts │ │ │ │ │ │ │ │ └── geomapSchema.json │ │ │ │ │ │ │ ├── query_runner.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── victoriaMetrics │ │ │ │ │ │ │ ├── DatasourceEditor.tsx │ │ │ │ │ │ │ ├── QueryEditor.tsx │ │ │ │ │ │ │ ├── TraceQuery │ │ │ │ │ │ │ │ ├── NestedNav.tsx │ │ │ │ │ │ │ │ ├── TraceQuery.tsx │ │ │ │ │ │ │ │ ├── mockData.json │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ ├── VariableEditor.tsx │ │ │ │ │ │ │ ├── docs.ts │ │ │ │ │ │ │ ├── docs │ │ │ │ │ │ │ │ ├── examples.md │ │ │ │ │ │ │ │ ├── functions.md │ │ │ │ │ │ │ │ ├── metricsQL.md │ │ │ │ │ │ │ │ └── motivation.md │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── query_runner.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ └── xobserve │ │ │ │ │ │ │ ├── DatasourceEditor.tsx │ │ │ │ │ │ │ ├── QueryEditor.tsx │ │ │ │ │ │ │ ├── VariableEditor.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── query_runner.ts │ │ │ │ │ │ │ ├── store.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── panel │ │ │ │ │ │ ├── alert │ │ │ │ │ │ │ ├── Alert.tsx │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── OverridesEditor.tsx │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── AlertRuleItem.tsx │ │ │ │ │ │ │ │ ├── AlertStatView.tsx │ │ │ │ │ │ │ │ ├── AlertToolbar.tsx │ │ │ │ │ │ │ │ ├── Chart.tsx │ │ │ │ │ │ │ │ ├── Icons.tsx │ │ │ │ │ │ │ │ ├── alert │ │ │ │ │ │ │ │ │ ├── firing.svg │ │ │ │ │ │ │ │ │ └── pending.svg │ │ │ │ │ │ │ │ └── test.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── bar │ │ │ │ │ │ │ ├── Bar.tsx │ │ │ │ │ │ │ ├── BarChart.tsx │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── OverridesEditor.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── mockData.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── barGauge │ │ │ │ │ │ │ ├── BarGauge.tsx │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── OverrideEditor.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── mockData.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── candlestick │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── OverrideEditor.tsx │ │ │ │ │ │ │ ├── Panel.tsx │ │ │ │ │ │ │ ├── buildOptions.ts │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── mockData.json │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── echarts │ │ │ │ │ │ │ ├── Echarts.tsx │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── mockData.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── gauge │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── Gauge.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── mockData.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── geomap │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── GeoMap.tsx │ │ │ │ │ │ │ ├── OverridesEditor.tsx │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── Overlay.tsx │ │ │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ │ │ └── TooltipView.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── layers │ │ │ │ │ │ │ │ ├── basemap │ │ │ │ │ │ │ │ │ └── baseMap.ts │ │ │ │ │ │ │ │ ├── dataLayer │ │ │ │ │ │ │ │ │ ├── heatmap.ts │ │ │ │ │ │ │ │ │ └── markers.ts │ │ │ │ │ │ │ │ └── vectorSource.ts │ │ │ │ │ │ │ ├── mocks │ │ │ │ │ │ │ │ ├── geomapSeriesData.json │ │ │ │ │ │ │ │ └── mockData.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── graph │ │ │ │ │ │ │ ├── ContextMenu │ │ │ │ │ │ │ │ └── ContextMenu.tsx │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── Graph.tsx │ │ │ │ │ │ │ ├── GraphLayout.tsx │ │ │ │ │ │ │ ├── OverridesEditor.tsx │ │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ │ ├── Tooltip │ │ │ │ │ │ │ │ ├── SeriesTable.tsx │ │ │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ │ ├── gradientFill.ts │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── mockData.ts │ │ │ │ │ │ │ ├── options.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── uplot-plugins │ │ │ │ │ │ │ │ ├── ThresholdsPlugin.tsx │ │ │ │ │ │ │ │ ├── ZoomPlugin.tsx │ │ │ │ │ │ │ │ ├── points-as-star.ts │ │ │ │ │ │ │ │ ├── render-stats.ts │ │ │ │ │ │ │ │ ├── series-median.ts │ │ │ │ │ │ │ │ └── stack.js │ │ │ │ │ │ ├── log │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── Log.tsx │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── Chart.tsx │ │ │ │ │ │ │ │ ├── LogItem.tsx │ │ │ │ │ │ │ │ └── Toolbar.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── mocks │ │ │ │ │ │ │ │ ├── logs.ts │ │ │ │ │ │ │ │ └── mockData.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ ├── nodeGraph │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── HiddenItem.tsx │ │ │ │ │ │ │ ├── NodeGraph.tsx │ │ │ │ │ │ │ ├── Toolbar.tsx │ │ │ │ │ │ │ ├── customNode.ts │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ └── help.ts │ │ │ │ │ │ │ ├── default-styles.ts │ │ │ │ │ │ │ ├── filter │ │ │ │ │ │ │ │ ├── Filter.tsx │ │ │ │ │ │ │ │ ├── filterData.ts │ │ │ │ │ │ │ │ └── filterNodes.ts │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── mocks │ │ │ │ │ │ │ │ ├── mockData.ts │ │ │ │ │ │ │ │ └── node_graph.ts │ │ │ │ │ │ │ ├── plugins │ │ │ │ │ │ │ │ ├── legend.ts │ │ │ │ │ │ │ │ ├── tooltip.ts │ │ │ │ │ │ │ │ └── useContextMenu.ts │ │ │ │ │ │ │ ├── transformData.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ ├── pie │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── OverridesEditor.tsx │ │ │ │ │ │ │ ├── Pie.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── mockData.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── stat │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── OverridesEditor.tsx │ │ │ │ │ │ │ ├── Stat.tsx │ │ │ │ │ │ │ ├── StatGraph.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── mockData.ts │ │ │ │ │ │ │ ├── options.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── uplot-plugins │ │ │ │ │ │ │ │ ├── points-as-star.ts │ │ │ │ │ │ │ │ ├── render-stats.ts │ │ │ │ │ │ │ │ └── series-median.ts │ │ │ │ │ │ ├── table │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── OverridesEditor.tsx │ │ │ │ │ │ │ ├── Table.tsx │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ └── ComplexTable │ │ │ │ │ │ │ │ │ ├── ComplexTable.tsx │ │ │ │ │ │ │ │ │ └── TableFilter.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── makeData.js │ │ │ │ │ │ │ ├── mockData.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── text │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── Panel.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── trace │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── Trace.tsx │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── SearchPanel.tsx │ │ │ │ │ │ │ │ ├── SearchResult.tsx │ │ │ │ │ │ │ │ ├── SearchResultPlot.tsx │ │ │ │ │ │ │ │ ├── TraceCard.tsx │ │ │ │ │ │ │ │ ├── TraceCompare │ │ │ │ │ │ │ │ │ ├── TraceCompare.tsx │ │ │ │ │ │ │ │ │ ├── TraceCompareGraph.tsx │ │ │ │ │ │ │ │ │ ├── renderNode.css │ │ │ │ │ │ │ │ │ ├── renderNode.tsx │ │ │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ │ │ ├── TraceDetail │ │ │ │ │ │ │ │ │ ├── SpanGraph │ │ │ │ │ │ │ │ │ │ ├── CanvasSpanGraph.test.js │ │ │ │ │ │ │ │ │ │ ├── CanvasSpanGraph.tsx │ │ │ │ │ │ │ │ │ │ ├── GraphTicks.test.js │ │ │ │ │ │ │ │ │ │ ├── GraphTicks.tsx │ │ │ │ │ │ │ │ │ │ ├── Scrubber.css │ │ │ │ │ │ │ │ │ │ ├── Scrubber.test.js │ │ │ │ │ │ │ │ │ │ ├── Scrubber.tsx │ │ │ │ │ │ │ │ │ │ ├── TickLabels.test.js │ │ │ │ │ │ │ │ │ │ ├── TickLabels.tsx │ │ │ │ │ │ │ │ │ │ ├── ViewingLayer.css │ │ │ │ │ │ │ │ │ │ ├── ViewingLayer.tsx │ │ │ │ │ │ │ │ │ │ ├── index.test.js │ │ │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ │ │ └── render-into-canvas.ts │ │ │ │ │ │ │ │ │ ├── TraceDetail.tsx │ │ │ │ │ │ │ │ │ ├── TraceDetailWrapper.tsx │ │ │ │ │ │ │ │ │ ├── TraceFlameGraph │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── TraceGraph │ │ │ │ │ │ │ │ │ │ ├── OpNode.css │ │ │ │ │ │ │ │ │ │ ├── OpNode.tsx │ │ │ │ │ │ │ │ │ │ ├── TraceGraph.css │ │ │ │ │ │ │ │ │ │ ├── TraceGraph.tsx │ │ │ │ │ │ │ │ │ │ ├── calculateTraceDageEV.ts │ │ │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ │ │ ├── TraceHeader.tsx │ │ │ │ │ │ │ │ │ ├── TraceJSON.tsx │ │ │ │ │ │ │ │ │ ├── TraceSpanTable │ │ │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ │ │ ├── TraceStats │ │ │ │ │ │ │ │ │ │ ├── PopupSql.css │ │ │ │ │ │ │ │ │ │ ├── PopupSql.tsx │ │ │ │ │ │ │ │ │ │ ├── TraceStatsHeader.css │ │ │ │ │ │ │ │ │ │ ├── TraceStatsHeader.tsx │ │ │ │ │ │ │ │ │ │ ├── generateColor.ts │ │ │ │ │ │ │ │ │ │ ├── generateDropdownValue.ts │ │ │ │ │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ │ │ ├── tableValues.ts │ │ │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ │ │ ├── TraceTimeline │ │ │ │ │ │ │ │ │ │ ├── Header │ │ │ │ │ │ │ │ │ │ │ ├── TimelineCollapser.tsx │ │ │ │ │ │ │ │ │ │ │ ├── TimelineHeader.css │ │ │ │ │ │ │ │ │ │ │ ├── TimelineHeader.tsx │ │ │ │ │ │ │ │ │ │ │ ├── TimelineLayer.css │ │ │ │ │ │ │ │ │ │ │ └── TimelineLayer.tsx │ │ │ │ │ │ │ │ │ │ ├── ListView │ │ │ │ │ │ │ │ │ │ │ ├── ListView.tsx │ │ │ │ │ │ │ │ │ │ │ └── Positions.ts │ │ │ │ │ │ │ │ │ │ ├── SpanRow │ │ │ │ │ │ │ │ │ │ │ ├── ReferencesButton.tsx │ │ │ │ │ │ │ │ │ │ │ ├── SpanBar.css │ │ │ │ │ │ │ │ │ │ │ ├── SpanBar.tsx │ │ │ │ │ │ │ │ │ │ │ ├── SpanBarRow.css │ │ │ │ │ │ │ │ │ │ │ ├── SpanBarRow.tsx │ │ │ │ │ │ │ │ │ │ │ ├── SpanDetail │ │ │ │ │ │ │ │ │ │ │ │ ├── AccordianKeyValues.css │ │ │ │ │ │ │ │ │ │ │ │ ├── AccordianKeyValues.markers.ts │ │ │ │ │ │ │ │ │ │ │ │ ├── AccordianKeyValues.tsx │ │ │ │ │ │ │ │ │ │ │ │ ├── AccordianLogs.css │ │ │ │ │ │ │ │ │ │ │ │ ├── AccordianLogs.tsx │ │ │ │ │ │ │ │ │ │ │ │ ├── AccordianReferences.css │ │ │ │ │ │ │ │ │ │ │ │ ├── AccordianReferences.tsx │ │ │ │ │ │ │ │ │ │ │ │ ├── AccordianText.tsx │ │ │ │ │ │ │ │ │ │ │ │ ├── DetailState.ts │ │ │ │ │ │ │ │ │ │ │ │ ├── KeyValuesTable.css │ │ │ │ │ │ │ │ │ │ │ │ ├── KeyValuesTable.tsx │ │ │ │ │ │ │ │ │ │ │ │ ├── TextList.css │ │ │ │ │ │ │ │ │ │ │ │ ├── TextList.test.js │ │ │ │ │ │ │ │ │ │ │ │ ├── TextList.tsx │ │ │ │ │ │ │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ │ │ │ │ └── jsonMarkup.js │ │ │ │ │ │ │ │ │ │ │ ├── SpanDetailRow.css │ │ │ │ │ │ │ │ │ │ │ ├── SpanDetailRow.tsx │ │ │ │ │ │ │ │ │ │ │ ├── SpanTreeOffset.css │ │ │ │ │ │ │ │ │ │ │ └── SpanTreeOffset.tsx │ │ │ │ │ │ │ │ │ │ ├── SpanRows.tsx │ │ │ │ │ │ │ │ │ │ ├── Ticks.tsx │ │ │ │ │ │ │ │ │ │ ├── TimelineRow.css │ │ │ │ │ │ │ │ │ │ ├── TimelineRow.tsx │ │ │ │ │ │ │ │ │ │ ├── TraceTimeline.tsx │ │ │ │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ │ │ │ ├── scroll │ │ │ │ │ │ │ │ │ │ ├── scrollManager.ts │ │ │ │ │ │ │ │ │ │ ├── scrollPage.ts │ │ │ │ │ │ │ │ │ │ └── tween.ts │ │ │ │ │ │ │ │ │ └── url │ │ │ │ │ │ │ │ │ │ ├── ReferenceLink.tsx │ │ │ │ │ │ │ │ │ │ └── url.ts │ │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ │ ├── BreakableText.tsx │ │ │ │ │ │ │ │ │ ├── EmphasizedNode.css │ │ │ │ │ │ │ │ │ ├── EmphasizedNode.tsx │ │ │ │ │ │ │ │ │ ├── FilteredList │ │ │ │ │ │ │ │ │ │ ├── ListItem.css │ │ │ │ │ │ │ │ │ │ ├── ListItem.tsx │ │ │ │ │ │ │ │ │ │ ├── highlightMatches.tsx │ │ │ │ │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── NameSelector.css │ │ │ │ │ │ │ │ │ └── NameSelector.tsx │ │ │ │ │ │ │ │ └── plexus │ │ │ │ │ │ │ │ │ ├── Digraph │ │ │ │ │ │ │ │ │ ├── HtmlLayer.tsx │ │ │ │ │ │ │ │ │ ├── HtmlLayersGroup.tsx │ │ │ │ │ │ │ │ │ ├── MeasurableNode.tsx │ │ │ │ │ │ │ │ │ ├── MeasurableNodes.tsx │ │ │ │ │ │ │ │ │ ├── MeasurableNodesLayer.tsx │ │ │ │ │ │ │ │ │ ├── Node.tsx │ │ │ │ │ │ │ │ │ ├── Nodes.tsx │ │ │ │ │ │ │ │ │ ├── NodesLayer.tsx │ │ │ │ │ │ │ │ │ ├── SvgDefEntry.tsx │ │ │ │ │ │ │ │ │ ├── SvgEdge.tsx │ │ │ │ │ │ │ │ │ ├── SvgEdges.tsx │ │ │ │ │ │ │ │ │ ├── SvgEdgesLayer.tsx │ │ │ │ │ │ │ │ │ ├── SvgLayer.tsx │ │ │ │ │ │ │ │ │ ├── SvgLayersGroup.tsx │ │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ │ ├── props-factories.ts │ │ │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ │ │ │ ├── DirectedGraph │ │ │ │ │ │ │ │ │ ├── DirectedGraph.tsx │ │ │ │ │ │ │ │ │ ├── builtins │ │ │ │ │ │ │ │ │ │ ├── EdgeArrow.tsx │ │ │ │ │ │ │ │ │ │ ├── EdgeArrowDef.tsx │ │ │ │ │ │ │ │ │ │ ├── EdgePath.tsx │ │ │ │ │ │ │ │ │ │ ├── EdgesContainer.tsx │ │ │ │ │ │ │ │ │ │ ├── Node.tsx │ │ │ │ │ │ │ │ │ │ ├── PureEdges.tsx │ │ │ │ │ │ │ │ │ │ └── PureNodes.tsx │ │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ │ ├── prop-factories │ │ │ │ │ │ │ │ │ │ ├── classNameIsSmall.ts │ │ │ │ │ │ │ │ │ │ ├── mergePropSetters.ts │ │ │ │ │ │ │ │ │ │ └── scaledStrokeWidth.ts │ │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ │ │ ├── LayoutManager │ │ │ │ │ │ │ │ │ ├── Coordinator.ts │ │ │ │ │ │ │ │ │ ├── LayoutManager.ts │ │ │ │ │ │ │ │ │ ├── convInputs.ts │ │ │ │ │ │ │ │ │ ├── dot │ │ │ │ │ │ │ │ │ │ ├── conv-coord.ts │ │ │ │ │ │ │ │ │ │ ├── convPlain.ts │ │ │ │ │ │ │ │ │ │ └── toDot.ts │ │ │ │ │ │ │ │ │ ├── getLayout.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── layout.worker.bundled.d.ts │ │ │ │ │ │ │ │ │ ├── layout.worker.bundled.js │ │ │ │ │ │ │ │ │ ├── layout.worker.ts │ │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ │ │ ├── cacheAs.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── input.fixture.tsx │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ ├── Digraph │ │ │ │ │ │ │ │ │ │ ├── HtmlLayer.d.ts │ │ │ │ │ │ │ │ │ │ ├── HtmlLayer.js │ │ │ │ │ │ │ │ │ │ ├── HtmlLayersGroup.d.ts │ │ │ │ │ │ │ │ │ │ ├── HtmlLayersGroup.js │ │ │ │ │ │ │ │ │ │ ├── MeasurableNode.d.ts │ │ │ │ │ │ │ │ │ │ ├── MeasurableNode.js │ │ │ │ │ │ │ │ │ │ ├── MeasurableNodes.d.ts │ │ │ │ │ │ │ │ │ │ ├── MeasurableNodes.js │ │ │ │ │ │ │ │ │ │ ├── MeasurableNodesLayer.d.ts │ │ │ │ │ │ │ │ │ │ ├── MeasurableNodesLayer.js │ │ │ │ │ │ │ │ │ │ ├── Node.d.ts │ │ │ │ │ │ │ │ │ │ ├── Node.js │ │ │ │ │ │ │ │ │ │ ├── Nodes.d.ts │ │ │ │ │ │ │ │ │ │ ├── Nodes.js │ │ │ │ │ │ │ │ │ │ ├── NodesLayer.d.ts │ │ │ │ │ │ │ │ │ │ ├── NodesLayer.js │ │ │ │ │ │ │ │ │ │ ├── SvgDefEntry.d.ts │ │ │ │ │ │ │ │ │ │ ├── SvgDefEntry.js │ │ │ │ │ │ │ │ │ │ ├── SvgEdge.d.ts │ │ │ │ │ │ │ │ │ │ ├── SvgEdge.js │ │ │ │ │ │ │ │ │ │ ├── SvgEdges.d.ts │ │ │ │ │ │ │ │ │ │ ├── SvgEdges.js │ │ │ │ │ │ │ │ │ │ ├── SvgEdgesLayer.d.ts │ │ │ │ │ │ │ │ │ │ ├── SvgEdgesLayer.js │ │ │ │ │ │ │ │ │ │ ├── SvgLayer.d.ts │ │ │ │ │ │ │ │ │ │ ├── SvgLayer.js │ │ │ │ │ │ │ │ │ │ ├── SvgLayersGroup.d.ts │ │ │ │ │ │ │ │ │ │ ├── SvgLayersGroup.js │ │ │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ ├── props-factories.d.ts │ │ │ │ │ │ │ │ │ │ ├── props-factories.js │ │ │ │ │ │ │ │ │ │ ├── types.d.ts │ │ │ │ │ │ │ │ │ │ ├── types.js │ │ │ │ │ │ │ │ │ │ ├── utils.d.ts │ │ │ │ │ │ │ │ │ │ └── utils.js │ │ │ │ │ │ │ │ │ ├── DirectedGraph │ │ │ │ │ │ │ │ │ │ ├── DirectedGraph.d.ts │ │ │ │ │ │ │ │ │ │ ├── DirectedGraph.js │ │ │ │ │ │ │ │ │ │ ├── builtins │ │ │ │ │ │ │ │ │ │ │ ├── EdgeArrow.d.ts │ │ │ │ │ │ │ │ │ │ │ ├── EdgeArrow.js │ │ │ │ │ │ │ │ │ │ │ ├── EdgeArrowDef.d.ts │ │ │ │ │ │ │ │ │ │ │ ├── EdgeArrowDef.js │ │ │ │ │ │ │ │ │ │ │ ├── EdgePath.d.ts │ │ │ │ │ │ │ │ │ │ │ ├── EdgePath.js │ │ │ │ │ │ │ │ │ │ │ ├── EdgesContainer.d.ts │ │ │ │ │ │ │ │ │ │ │ ├── EdgesContainer.js │ │ │ │ │ │ │ │ │ │ │ ├── Node.d.ts │ │ │ │ │ │ │ │ │ │ │ ├── Node.js │ │ │ │ │ │ │ │ │ │ │ ├── PureEdges.d.ts │ │ │ │ │ │ │ │ │ │ │ ├── PureEdges.js │ │ │ │ │ │ │ │ │ │ │ ├── PureNodes.d.ts │ │ │ │ │ │ │ │ │ │ │ └── PureNodes.js │ │ │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ ├── prop-factories │ │ │ │ │ │ │ │ │ │ │ ├── classNameIsSmall.d.ts │ │ │ │ │ │ │ │ │ │ │ ├── classNameIsSmall.js │ │ │ │ │ │ │ │ │ │ │ ├── mergePropSetters.d.ts │ │ │ │ │ │ │ │ │ │ │ ├── mergePropSetters.js │ │ │ │ │ │ │ │ │ │ │ ├── scaledStrokeWidth.d.ts │ │ │ │ │ │ │ │ │ │ │ └── scaledStrokeWidth.js │ │ │ │ │ │ │ │ │ │ ├── types.d.ts │ │ │ │ │ │ │ │ │ │ └── types.js │ │ │ │ │ │ │ │ │ ├── LayoutManager │ │ │ │ │ │ │ │ │ │ ├── Coordinator.d.ts │ │ │ │ │ │ │ │ │ │ ├── Coordinator.js │ │ │ │ │ │ │ │ │ │ ├── LayoutManager.d.ts │ │ │ │ │ │ │ │ │ │ ├── LayoutManager.js │ │ │ │ │ │ │ │ │ │ ├── convInputs.d.ts │ │ │ │ │ │ │ │ │ │ ├── convInputs.js │ │ │ │ │ │ │ │ │ │ ├── dot │ │ │ │ │ │ │ │ │ │ │ ├── conv-coord.d.ts │ │ │ │ │ │ │ │ │ │ │ ├── conv-coord.js │ │ │ │ │ │ │ │ │ │ │ ├── convPlain.d.ts │ │ │ │ │ │ │ │ │ │ │ ├── convPlain.js │ │ │ │ │ │ │ │ │ │ │ ├── toDot.d.ts │ │ │ │ │ │ │ │ │ │ │ └── toDot.js │ │ │ │ │ │ │ │ │ │ ├── getLayout.d.ts │ │ │ │ │ │ │ │ │ │ ├── getLayout.js │ │ │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ ├── layout.worker.bundled.js │ │ │ │ │ │ │ │ │ │ ├── layout.worker.d.ts │ │ │ │ │ │ │ │ │ │ ├── layout.worker.js │ │ │ │ │ │ │ │ │ │ ├── types.d.ts │ │ │ │ │ │ │ │ │ │ └── types.js │ │ │ │ │ │ │ │ │ ├── cacheAs.d.ts │ │ │ │ │ │ │ │ │ ├── cacheAs.js │ │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── input.fixture.d.ts │ │ │ │ │ │ │ │ │ ├── input.fixture.js │ │ │ │ │ │ │ │ │ ├── types │ │ │ │ │ │ │ │ │ │ ├── TNonEmptyArray.d.ts │ │ │ │ │ │ │ │ │ │ ├── TNonEmptyArray.js │ │ │ │ │ │ │ │ │ │ ├── TOneOf.d.ts │ │ │ │ │ │ │ │ │ │ ├── TOneOf.js │ │ │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ └── zoom │ │ │ │ │ │ │ │ │ │ ├── MiniMap.d.ts │ │ │ │ │ │ │ │ │ │ ├── MiniMap.js │ │ │ │ │ │ │ │ │ │ ├── ZoomManager.d.ts │ │ │ │ │ │ │ │ │ │ ├── ZoomManager.js │ │ │ │ │ │ │ │ │ │ ├── resetZoomIcon.d.ts │ │ │ │ │ │ │ │ │ │ ├── resetZoomIcon.js │ │ │ │ │ │ │ │ │ │ ├── utils.d.ts │ │ │ │ │ │ │ │ │ │ └── utils.js │ │ │ │ │ │ │ │ │ ├── types │ │ │ │ │ │ │ │ │ ├── TNonEmptyArray.ts │ │ │ │ │ │ │ │ │ ├── TOneOf.ts │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ │ └── zoom │ │ │ │ │ │ │ │ │ ├── MiniMap.tsx │ │ │ │ │ │ │ │ │ ├── ZoomManager.ts │ │ │ │ │ │ │ │ │ ├── resetZoomIcon.tsx │ │ │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ │ │ ├── default-config.ts │ │ │ │ │ │ │ │ └── get-config.ts │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── mocks │ │ │ │ │ │ │ │ ├── mockData.ts │ │ │ │ │ │ │ │ └── traces.json │ │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ │ ├── link-patterns.ts │ │ │ │ │ │ │ │ ├── span.ts │ │ │ │ │ │ │ │ └── trace-dag │ │ │ │ │ │ │ │ │ ├── DenseTrace.ts │ │ │ │ │ │ │ │ │ ├── TraceDag.ts │ │ │ │ │ │ │ │ │ ├── convPlexus.ts │ │ │ │ │ │ │ │ │ ├── denseTransforms.ts │ │ │ │ │ │ │ │ │ ├── id-factories.ts │ │ │ │ │ │ │ │ │ └── types │ │ │ │ │ │ │ │ │ ├── TDagNode.ts │ │ │ │ │ │ │ │ │ ├── TDagPlexusVertex.ts │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ ├── types │ │ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ │ │ ├── misc.ts │ │ │ │ │ │ │ │ ├── path-agnostic-decorations.ts │ │ │ │ │ │ │ │ ├── trace.ts │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── filter-spans.ts │ │ │ │ │ │ │ │ ├── get-target.ts │ │ │ │ │ │ │ │ ├── get-trace-spanid-tree.js │ │ │ │ │ │ │ │ ├── number.ts │ │ │ │ │ │ │ │ ├── prefix-url.ts │ │ │ │ │ │ │ │ ├── site-prefix.ts │ │ │ │ │ │ │ │ ├── stringSupplant.ts │ │ │ │ │ │ │ │ ├── trace-viewer.ts │ │ │ │ │ │ │ │ ├── trace.ts │ │ │ │ │ │ │ │ └── transform-trace-data.ts │ │ │ │ │ │ ├── xobserveLog │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── LogDetail.tsx │ │ │ │ │ │ │ ├── Panel.tsx │ │ │ │ │ │ │ ├── Search.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── mocks │ │ │ │ │ │ │ │ ├── chart.json │ │ │ │ │ │ │ │ ├── logs.json │ │ │ │ │ │ │ │ └── mockData.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ └── xobserveTrace │ │ │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ │ │ ├── Panel.tsx │ │ │ │ │ │ │ ├── Trace.tsx │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── mocks │ │ │ │ │ │ │ └── mockData.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── plugins.ts │ │ │ │ ├── components │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ ├── StringColorMapping.tsx │ │ │ │ │ ├── Threshold │ │ │ │ │ │ ├── ThresholdEditor.tsx │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── UnitPicker.tsx │ │ │ │ │ ├── ValueCalculation.tsx │ │ │ │ │ ├── ValueMapping │ │ │ │ │ │ └── ValueMapping.tsx │ │ │ │ │ ├── charts │ │ │ │ │ │ └── ErrorOkChart.tsx │ │ │ │ │ └── query-edtitor │ │ │ │ │ │ ├── ExpandTimeline.tsx │ │ │ │ │ │ └── SelectDataFormat.tsx │ │ │ │ ├── external │ │ │ │ │ ├── README.md │ │ │ │ │ └── plugins.ts │ │ │ │ ├── types │ │ │ │ │ └── opentelemetry.ts │ │ │ │ └── utils │ │ │ │ │ └── opentelemetry.ts │ │ │ ├── settings │ │ │ │ ├── AccessToken.tsx │ │ │ │ ├── Annotation.tsx │ │ │ │ ├── DashboardSettings.tsx │ │ │ │ ├── General.tsx │ │ │ │ ├── MetaSetting.tsx │ │ │ │ ├── Styles.tsx │ │ │ │ └── Variables.tsx │ │ │ ├── store │ │ │ │ ├── annotation.ts │ │ │ │ ├── dashboard.ts │ │ │ │ └── panelRealtime.ts │ │ │ └── utils │ │ │ │ ├── overrides.ts │ │ │ │ └── prometheus.ts │ │ │ ├── datasource │ │ │ ├── Editor.tsx │ │ │ └── store.ts │ │ │ ├── search │ │ │ ├── ListView.tsx │ │ │ ├── Search.tsx │ │ │ ├── TagsView.tsx │ │ │ ├── TeamsFilter.tsx │ │ │ └── TeamsView.tsx │ │ │ ├── team │ │ │ └── store.ts │ │ │ ├── template │ │ │ ├── CreateFromTemplate.tsx │ │ │ ├── TemplateApply.tsx │ │ │ ├── TemplateBadge.tsx │ │ │ ├── TemplateCard.tsx │ │ │ ├── TemplateEditor.tsx │ │ │ ├── TemplateExport.tsx │ │ │ └── TemplateList.tsx │ │ │ └── variables │ │ │ ├── Loader.tsx │ │ │ ├── store.ts │ │ │ ├── useLoadVars.ts │ │ │ └── utils.ts │ ├── theme.ts │ ├── tsconfig.json │ ├── vercel.json │ ├── vite-plugin-markdown.js │ ├── vite.config.js │ └── yarn.lock ├── plugins │ ├── README.md │ ├── buildPlugins.go │ ├── releasePlugins.go │ └── removePlugins.go └── query │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── cmd │ └── root.go │ ├── data │ ├── .gitignore │ ├── datav.sql │ ├── provisioning │ │ ├── dashboard │ │ │ └── node_detail_example.json │ │ └── datasource │ │ │ └── prometheus_example.json │ └── xo_template.json │ ├── datav.yaml │ ├── go.mod │ ├── go.sum │ ├── internal │ ├── accesstoken │ │ ├── manage.go │ │ ├── token.go │ │ └── view.go │ ├── acl │ │ ├── acl.go │ │ ├── dashboard.go │ │ ├── scope.go │ │ ├── team.go │ │ ├── tenant.go │ │ └── website.go │ ├── admin │ │ ├── admin.go │ │ ├── audit.go │ │ └── users.go │ ├── annotation │ │ └── annotation.go │ ├── cache │ │ └── cache.go │ ├── dashboard │ │ ├── dashboard.go │ │ ├── history.go │ │ └── import.go │ ├── datasource │ │ ├── datasource.go │ │ └── import.go │ ├── opentelemetry │ │ └── opentelemetry.go │ ├── plugins │ │ ├── builtin │ │ │ ├── clickhouse │ │ │ │ └── clickhouse.go │ │ │ ├── mysql │ │ │ │ └── mysql.go │ │ │ ├── plugins.go │ │ │ ├── postgresql │ │ │ │ └── postgresql.go │ │ │ └── xobserve │ │ │ │ ├── api │ │ │ │ ├── api.go │ │ │ │ ├── environment.go │ │ │ │ ├── logs.go │ │ │ │ ├── service.go │ │ │ │ ├── serviceGraph.go │ │ │ │ └── traces.go │ │ │ │ ├── models │ │ │ │ ├── models.go │ │ │ │ └── trace.go │ │ │ │ ├── utils │ │ │ │ ├── params.go │ │ │ │ ├── queryBuild.go │ │ │ │ └── service.go │ │ │ │ └── xobserve.go │ │ ├── external │ │ │ └── plugins.go │ │ └── utils │ │ │ └── clickhouse.go │ ├── proxy │ │ ├── datasource.go │ │ ├── proxy.go │ │ └── xo.go │ ├── server.go │ ├── storage │ │ ├── data │ │ │ ├── alertDatashboard.go │ │ │ ├── homeDashboard.go │ │ │ └── sqliteSql.go │ │ ├── provisioning │ │ │ └── provisioning.go │ │ ├── storage.go │ │ └── updateToCurrentVersion.go │ ├── task │ │ └── task.go │ ├── teams │ │ ├── sidemenu.go │ │ └── teams.go │ ├── template │ │ ├── content.go │ │ ├── disable.go │ │ ├── template.go │ │ └── use.go │ ├── tenant │ │ └── tenant.go │ ├── uiconfig │ │ ├── dashboard.go │ │ └── uiConfig.go │ ├── user │ │ ├── api.go │ │ ├── login.go │ │ ├── session.go │ │ └── user.go │ └── variables │ │ └── variables.go │ ├── main.go │ ├── pkg │ ├── colorlog │ │ └── log.go │ ├── common │ │ ├── const.go │ │ └── response.go │ ├── config │ │ └── config.go │ ├── db │ │ └── db.go │ ├── e │ │ ├── err_check.go │ │ └── err_code.go │ ├── log │ │ ├── factory.go │ │ ├── logger.go │ │ └── spanlogger.go │ ├── models │ │ ├── accesstoken.go │ │ ├── admin.go │ │ ├── annotation.go │ │ ├── dashboard.go │ │ ├── datasource.go │ │ ├── history.go │ │ ├── import.go │ │ ├── plugin.go │ │ ├── role.go │ │ ├── scope.go │ │ ├── teams.go │ │ ├── template.go │ │ ├── tenant.go │ │ ├── user.go │ │ └── variable.go │ └── utils │ │ ├── compress.go │ │ ├── encode.go │ │ ├── encoding.go │ │ ├── file.go │ │ ├── id.go │ │ ├── shortid.go │ │ ├── simplejson │ │ └── simplejson.go │ │ ├── slug.go │ │ └── time.go │ └── provisioning │ └── dashboard │ └── node_detail_example.json ├── deploy ├── .gitignore ├── Readme.md ├── clickhouse-conf │ ├── clickhouse-cluster.xml │ ├── clickhouse-config.xml │ ├── clickhouse-function.xml │ └── clickhouse-users.xml ├── compose-clickhouse.yaml ├── compose-hotrod.yaml ├── compose-prometheus.yaml ├── docker-compose-all-in-one.yaml ├── docker-compose-dev-deps.yaml ├── release │ └── docker-all.sh └── scripts │ ├── clickhouse-user-scripts │ ├── histogramQuantile │ └── histogramQuantile.go │ ├── locust-scripts │ ├── __pycache__ │ │ └── locustfile.cpython-39.pyc │ └── locustfile.py │ ├── nginx-config.conf │ └── prometheus.yml ├── examples └── hotrod │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── cmd │ ├── all.go │ ├── customer.go │ ├── driver.go │ ├── empty_test.go │ ├── flags.go │ ├── frontend.go │ ├── root.go │ └── route.go │ ├── go.mod │ ├── go.sum │ ├── kubernetes │ ├── README.md │ ├── base │ │ ├── hotrod │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ └── service.yaml │ │ └── jaeger-all-in-one │ │ │ ├── kustomization.yaml │ │ │ └── service.yaml │ ├── kustomization.yaml │ └── namespace.yaml │ ├── main.go │ ├── pkg │ ├── delay │ │ ├── delay.go │ │ └── empty_test.go │ ├── httperr │ │ ├── empty_test.go │ │ └── httperr.go │ ├── jaegerclientenv2otel │ │ └── envvars.go │ ├── log │ │ ├── empty_test.go │ │ ├── factory.go │ │ ├── logger.go │ │ └── spanlogger.go │ ├── metrics │ │ ├── expvar │ │ │ ├── cache.go │ │ │ ├── cache_test.go │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── metrics.go │ │ │ ├── metrics_test.go │ │ │ └── package_test.go │ │ ├── fork │ │ │ ├── fork.go │ │ │ └── fork_test.go │ │ ├── metricsbuilder │ │ │ ├── builder.go │ │ │ └── builder_test.go │ │ └── prometheus │ │ │ ├── cache.go │ │ │ ├── factory.go │ │ │ └── factory_test.go │ ├── metricstest │ │ ├── keys.go │ │ ├── local.go │ │ ├── local_test.go │ │ ├── metricstest.go │ │ ├── metricstest_test.go │ │ └── package_test.go │ ├── otel │ │ └── metrics.go │ ├── pool │ │ ├── empty_test.go │ │ └── pool.go │ └── tracing │ │ ├── baggage.go │ │ ├── empty_test.go │ │ ├── http.go │ │ ├── init.go │ │ ├── mutex.go │ │ ├── mux.go │ │ └── rpcmetrics │ │ ├── README.md │ │ ├── endpoints.go │ │ ├── endpoints_test.go │ │ ├── metrics.go │ │ ├── metrics_test.go │ │ ├── normalizer.go │ │ ├── normalizer_test.go │ │ ├── observer.go │ │ ├── observer_test.go │ │ └── package_test.go │ ├── services │ ├── config │ │ ├── config.go │ │ └── empty_test.go │ ├── customer │ │ ├── client.go │ │ ├── database.go │ │ ├── empty_test.go │ │ ├── interface.go │ │ └── server.go │ ├── driver │ │ ├── client.go │ │ ├── driver.pb.go │ │ ├── driver.proto │ │ ├── empty_test.go │ │ ├── interface.go │ │ ├── redis.go │ │ └── server.go │ ├── frontend │ │ ├── best_eta.go │ │ ├── empty_test.go │ │ ├── server.go │ │ └── web_assets │ │ │ ├── code.jquery.com_jquery-3.7.0.min.js │ │ │ ├── favicon.ico │ │ │ └── index.html │ └── route │ │ ├── client.go │ │ ├── empty_test.go │ │ ├── interface.go │ │ ├── server.go │ │ └── stats.go │ └── start.sh └── otel-collector ├── .gitignore ├── DockerfileAgent ├── DockerfileCollector ├── README.md ├── cmd ├── migrate.go └── root.go ├── components └── components.go ├── config ├── agent.yaml └── collector.yaml ├── exporter ├── clickhouselogsexporter │ ├── README.md │ ├── config.go │ ├── config_test.go │ ├── example │ │ ├── README.md │ │ ├── docker-compose.yml │ │ └── otel-collector-config.yml │ ├── exporter.go │ ├── factory.go │ ├── factory_test.go │ ├── options.go │ ├── testdata │ │ └── config.yaml │ └── usage.go ├── clickhousemetricsexporter │ ├── base │ │ └── base.go │ ├── clickhouse.go │ ├── config.go │ ├── config_test.go │ ├── exporter.go │ ├── exporter_test.go │ ├── factory.go │ ├── factory_test.go │ ├── helper.go │ ├── helper_test.go │ ├── json.go │ ├── testdata │ │ ├── common.go │ │ ├── config.yaml │ │ ├── disabled_queue.yaml │ │ ├── metric.go │ │ ├── negative_num_consumers.yaml │ │ ├── negative_queue_size.yaml │ │ ├── resource.go │ │ └── trace.go │ ├── testutil_test.go │ ├── usage.go │ └── utils │ │ ├── gofuzz │ │ ├── gofuzz_disabled.go │ │ └── gofuzz_enabled.go │ │ └── timeseries │ │ ├── fingerprint.go │ │ └── timeseries.go └── clickhousetracesexporter │ ├── README.md │ ├── clickhouse_exporter.go │ ├── clickhouse_factory.go │ ├── config.go │ ├── factory.go │ ├── options.go │ ├── schema-signoz.go │ ├── usage.go │ └── writer.go ├── featuregate └── flag.go ├── go.mod ├── go.sum ├── internal ├── collector │ ├── collector.go │ └── collector_test.go ├── migrationmanager │ ├── manager.go │ └── migrators │ │ ├── basemigrator │ │ └── migrator.go │ │ ├── logs │ │ └── migrator.go │ │ ├── metrics │ │ └── migrator.go │ │ ├── migrators.go │ │ └── traces │ │ └── migrator.go ├── opamp │ ├── client.go │ ├── config.go │ ├── config_manager.go │ ├── config_manager_test.go │ ├── config_test.go │ ├── helpers.go │ ├── mockserver.go │ ├── server_client.go │ ├── server_client_test.go │ ├── simple_client.go │ ├── simple_client_test.go │ └── testdata │ │ ├── agent-id.yaml │ │ ├── coll-config-path-changed.yaml │ │ ├── coll-config-path.yaml │ │ ├── config.yaml │ │ ├── invalid.yaml │ │ ├── manager-config.yaml │ │ ├── service-instance-id.yaml │ │ └── simple │ │ └── config.yaml └── service │ └── service.go ├── main.go ├── migrations ├── logs │ ├── 000001_init_db.down.sql │ └── 000001_init_db.up.sql ├── metrics │ ├── 000001_init_db.down.sql │ └── 000001_init_db.up.sql └── traces │ ├── 000001_init_traces.down.sql │ ├── 000001_init_traces.up.sql │ ├── 000002_init_dependency.down.sql │ └── 000002_init_dependency.up.sql ├── pkg ├── config │ ├── container.go │ ├── factory.go │ ├── featuregate.go │ └── flag.go ├── constants │ ├── attributes.go │ └── os_utils.go ├── logger │ └── logger.go ├── parser │ └── grok │ │ ├── cache.go │ │ ├── cache_test.go │ │ ├── config_test.go │ │ ├── grok.go │ │ ├── grok_test.go │ │ └── testdata │ │ └── config.yaml ├── usage │ ├── common.go │ └── usage.go └── utils │ └── utils.go ├── processor ├── xobservespanmetricsprocessor │ ├── README.md │ ├── config.go │ ├── config_test.go │ ├── factory.go │ ├── factory_test.go │ ├── internal │ │ └── cache │ │ │ ├── cache.go │ │ │ └── cache_test.go │ ├── mocks │ │ ├── Host.go │ │ ├── MetricsExporter.go │ │ └── TracesConsumer.go │ ├── processor.go │ ├── processor_test.go │ └── testdata │ │ ├── config-2-pipelines.yaml │ │ ├── config-3-pipelines.yaml │ │ ├── config-exporter-not-found.yaml │ │ ├── config-full.yaml │ │ ├── config-prometheusremotewrite.yaml │ │ └── config-simplest.yaml └── xobservetailsampler │ ├── Makefile │ ├── README.md │ ├── config.go │ ├── config_test.go │ ├── evaluator.go │ ├── evaluator_test.go │ ├── factory.go │ ├── factory_test.go │ ├── internal │ ├── idbatcher │ │ ├── id_batcher.go │ │ └── id_batcher_test.go │ ├── sampling │ │ ├── always_sample.go │ │ ├── always_sample_test.go │ │ ├── and.go │ │ ├── and_test.go │ │ ├── composite.go │ │ ├── composite_test.go │ │ ├── doc.go │ │ ├── latency.go │ │ ├── latency_test.go │ │ ├── never_sample.go │ │ ├── never_sample_test.go │ │ ├── numeric_tag_filter.go │ │ ├── numeric_tag_filter_test.go │ │ ├── policy.go │ │ ├── probabilistic.go │ │ ├── probabilistic_test.go │ │ ├── rate_limiting.go │ │ ├── rate_limiting_test.go │ │ ├── span_count_sampler.go │ │ ├── span_count_sampler_test.go │ │ ├── status_code.go │ │ ├── status_code_test.go │ │ ├── string_tag_filter.go │ │ ├── string_tag_filter_test.go │ │ ├── time_provider.go │ │ ├── time_provider_test.go │ │ ├── trace_state_filter.go │ │ ├── trace_state_filter_test.go │ │ └── util.go │ └── timeutils │ │ └── ticker.go │ ├── metrics.go │ ├── processor.go │ ├── processor_test.go │ └── testdata │ └── tail_sampling_config.yaml ├── receiver └── httpreceiver │ ├── bodyparser │ ├── default.go │ ├── default_test.go │ ├── google.go │ ├── heroku.go │ ├── heroku_test.go │ └── logs.go │ ├── config.go │ ├── config_test.go │ ├── httpsreceiver.go │ ├── httpsreceiver_test.go │ ├── internal │ └── metadata │ │ └── generated_status.go │ ├── metadata.yaml │ └── testdata │ └── config.yaml └── start-agent.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/README_CN.md -------------------------------------------------------------------------------- /datav/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datav/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/Dockerfile -------------------------------------------------------------------------------- /datav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/README.md -------------------------------------------------------------------------------- /datav/frontend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/.dockerignore -------------------------------------------------------------------------------- /datav/frontend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/.env -------------------------------------------------------------------------------- /datav/frontend/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | build 4 | src -------------------------------------------------------------------------------- /datav/frontend/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/.eslintrc -------------------------------------------------------------------------------- /datav/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/.gitignore -------------------------------------------------------------------------------- /datav/frontend/.nvmrc: -------------------------------------------------------------------------------- 1 | 16.x 2 | -------------------------------------------------------------------------------- /datav/frontend/.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | .next 4 | build 5 | -------------------------------------------------------------------------------- /datav/frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/.prettierrc -------------------------------------------------------------------------------- /datav/frontend/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/404.html -------------------------------------------------------------------------------- /datav/frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/Dockerfile -------------------------------------------------------------------------------- /datav/frontend/README.md: -------------------------------------------------------------------------------- 1 | # Datav frontend 2 | 3 | -------------------------------------------------------------------------------- /datav/frontend/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/deploy.sh -------------------------------------------------------------------------------- /datav/frontend/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/index.d.ts -------------------------------------------------------------------------------- /datav/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/index.html -------------------------------------------------------------------------------- /datav/frontend/nginx.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/nginx.template -------------------------------------------------------------------------------- /datav/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/package.json -------------------------------------------------------------------------------- /datav/frontend/public/dashboard/dark-rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/dashboard/dark-rainbow.png -------------------------------------------------------------------------------- /datav/frontend/public/dashboard/rainbow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/dashboard/rainbow.jpg -------------------------------------------------------------------------------- /datav/frontend/public/dashboard/universe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/dashboard/universe.png -------------------------------------------------------------------------------- /datav/frontend/public/empty-posts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/empty-posts.png -------------------------------------------------------------------------------- /datav/frontend/public/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/empty.svg -------------------------------------------------------------------------------- /datav/frontend/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/favicon.png -------------------------------------------------------------------------------- /datav/frontend/public/fonts/Inter.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/fonts/Inter.woff2 -------------------------------------------------------------------------------- /datav/frontend/public/happy-dev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/happy-dev.jpg -------------------------------------------------------------------------------- /datav/frontend/public/light-rust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/light-rust.svg -------------------------------------------------------------------------------- /datav/frontend/public/login-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/login-bg.png -------------------------------------------------------------------------------- /datav/frontend/public/login-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/login-bg.svg -------------------------------------------------------------------------------- /datav/frontend/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/logo.svg -------------------------------------------------------------------------------- /datav/frontend/public/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/logo1.png -------------------------------------------------------------------------------- /datav/frontend/public/not-found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/not-found.png -------------------------------------------------------------------------------- /datav/frontend/public/play.datav.io/go-runtime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/play.datav.io/go-runtime.json -------------------------------------------------------------------------------- /datav/frontend/public/play.datav.io/home-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/play.datav.io/home-dashboard.json -------------------------------------------------------------------------------- /datav/frontend/public/play.datav.io/host-metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/play.datav.io/host-metrics.json -------------------------------------------------------------------------------- /datav/frontend/public/play.datav.io/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/play.datav.io/logs.json -------------------------------------------------------------------------------- /datav/frontend/public/play.datav.io/traces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/play.datav.io/traces.json -------------------------------------------------------------------------------- /datav/frontend/public/plugins/panel/geomap/.gitignore: -------------------------------------------------------------------------------- 1 | worldCities.json 2 | -------------------------------------------------------------------------------- /datav/frontend/public/plugins/panel/geomap/cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/plugins/panel/geomap/cities.json -------------------------------------------------------------------------------- /datav/frontend/public/plugins/panel/geomap/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/plugins/panel/geomap/countries.json -------------------------------------------------------------------------------- /datav/frontend/public/plugins/panel/geomap/countryNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/plugins/panel/geomap/countryNames.json -------------------------------------------------------------------------------- /datav/frontend/public/pokeman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/pokeman.svg -------------------------------------------------------------------------------- /datav/frontend/public/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/rocket.svg -------------------------------------------------------------------------------- /datav/frontend/public/scripts/bmap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/scripts/bmap.min.js -------------------------------------------------------------------------------- /datav/frontend/public/scripts/echarts.common.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/scripts/echarts.common.min.js -------------------------------------------------------------------------------- /datav/frontend/public/scripts/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/scripts/echarts.min.js -------------------------------------------------------------------------------- /datav/frontend/public/scripts/mapbox-gl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/scripts/mapbox-gl.css -------------------------------------------------------------------------------- /datav/frontend/public/scripts/mapbox-gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/scripts/mapbox-gl.js -------------------------------------------------------------------------------- /datav/frontend/public/scripts/mapbox-gl.js.map: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datav/frontend/public/useful-but-not-use-yet/v0zA0b2ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/useful-but-not-use-yet/v0zA0b2ci.png -------------------------------------------------------------------------------- /datav/frontend/public/wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/public/wechat.jpg -------------------------------------------------------------------------------- /datav/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/App.tsx -------------------------------------------------------------------------------- /datav/frontend/src/analytics/ga-script.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/analytics/ga-script.tsx -------------------------------------------------------------------------------- /datav/frontend/src/analytics/track-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/analytics/track-event.ts -------------------------------------------------------------------------------- /datav/frontend/src/components/AntdWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/AntdWrapper.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/BackToTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/BackToTop.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/BaiduMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/BaiduMap.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/BarGauge/BarGauge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/BarGauge/BarGauge.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/Card.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/ClickOutside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/ClickOutside.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/CodeEditor/CodeEditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/CodeEditor/CodeEditor.css -------------------------------------------------------------------------------- /datav/frontend/src/components/CodeEditor/CodeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/CodeEditor/CodeEditor.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/CodeEditor/CodeEditorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/CodeEditor/CodeEditorModal.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/CodeEditor/useMonacoWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/CodeEditor/useMonacoWorker.ts -------------------------------------------------------------------------------- /datav/frontend/src/components/ColorKV.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/ColorKV.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/ColorModeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/ColorModeSwitcher.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/ColorPalette.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/ColorPalette.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/ColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/ColorPicker.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/ColorTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/ColorTag.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/Container.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/CopyToClipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/CopyToClipboard.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/CustomScrollbar/CustomScrollbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/CustomScrollbar/CustomScrollbar.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/CustomScrollbar/ScrollIndicators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/CustomScrollbar/ScrollIndicators.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/DatePicker/DatePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/DatePicker/DatePicker.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/DatePicker/TimePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/DatePicker/TimePicker.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/DatePicker/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/DatePicker/store.ts -------------------------------------------------------------------------------- /datav/frontend/src/components/DetailAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/DetailAlert.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/Empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/Empty.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/ErrorBoudary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/ErrorBoudary.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/ExternalLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/ExternalLinks.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/Fullscreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/Fullscreen.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/Help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/Help.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/LabelList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/LabelList.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/LazyLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/LazyLoader.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/Logo.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/MultiRadioButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/MultiRadioButtons.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/PageTransition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/PageTransition.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/PopoverTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/PopoverTooltip.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/RadioButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/RadioButtons.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/TagsFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/TagsFilter.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/Toc/Toc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/Toc/Toc.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/VerticalResizer/VerticalResizer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/VerticalResizer/VerticalResizer.css -------------------------------------------------------------------------------- /datav/frontend/src/components/VerticalResizer/VerticalResizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/VerticalResizer/VerticalResizer.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/button/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/button/IconButton.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/cards/CardSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/cards/CardSelect.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/charts/Chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/charts/Chart.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/configloader/BasicConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/configloader/BasicConfig.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/configloader/CommonConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/configloader/CommonConfig.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/datasource/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/datasource/Select.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/editor/EditorItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/editor/EditorItem.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/form/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/form/Form.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/form/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/form/Item.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/grid/AutoGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/grid/AutoGrid.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/grid/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/grid/utils.ts -------------------------------------------------------------------------------- /datav/frontend/src/components/icons/Collapse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/icons/Collapse.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/icons/PanelAdd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/icons/PanelAdd.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/input/InputWithTips.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/input/InputWithTips.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/input/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/input/SearchInput.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/autoResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/autoResize.ts -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/border/Border1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/border/Border1.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/border/Border10.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/border/Border10.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/border/Border11.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/border/Border11.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/border/Border12.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/border/Border12.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/border/Border13.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/border/Border13.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/border/Border2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/border/Border2.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/border/Border3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/border/Border3.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/border/Border4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/border/Border4.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/border/Border5.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/border/Border5.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/border/Border6.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/border/Border6.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/border/Border7.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/border/Border7.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/border/Border8.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/border/Border8.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/border/Border9.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/border/Border9.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/components/Border.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/components/Border.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/components/BorderSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/components/BorderSelect.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/components/Decoration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/components/Decoration.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/components/TitleDecoration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/components/TitleDecoration.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/decoration/Decoration1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/decoration/Decoration1.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/decoration/Decoration10.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/decoration/Decoration10.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/decoration/Decoration11.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/decoration/Decoration11.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/decoration/Decoration12.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/decoration/Decoration12.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/decoration/Decoration2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/decoration/Decoration2.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/decoration/Decoration3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/decoration/Decoration3.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/decoration/Decoration4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/decoration/Decoration4.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/decoration/Decoration5.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/decoration/Decoration5.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/decoration/Decoration6.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/decoration/Decoration6.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/decoration/Decoration7.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/decoration/Decoration7.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/decoration/Decoration8.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/decoration/Decoration8.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/decoration/Decoration9.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/decoration/Decoration9.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/styles/decoration.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/styles/decoration.css -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/types.ts -------------------------------------------------------------------------------- /datav/frontend/src/components/largescreen/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/largescreen/utils.ts -------------------------------------------------------------------------------- /datav/frontend/src/components/loading/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/loading/Loading.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/markdown/MarkdownRender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/markdown/MarkdownRender.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/portal/Portal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/portal/Portal.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/select/AntdSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/select/AntdSelect.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/select/ChakraMultiSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/select/ChakraMultiSelect.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/select/ChakraSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/select/ChakraSelect.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/select/InputSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/select/InputSelect.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/select/PopoverSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/select/PopoverSelect.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/spinner/modal-spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/spinner/modal-spinner.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/table/ColumnResizableTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/table/ColumnResizableTable.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/uPlot/UplotReact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/uPlot/UplotReact.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/uPlot/colorManipulator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/uPlot/colorManipulator.ts -------------------------------------------------------------------------------- /datav/frontend/src/components/user/SelectUserTeam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/user/SelectUserTeam.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/user/SelectUserTenant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/user/SelectUserTenant.tsx -------------------------------------------------------------------------------- /datav/frontend/src/components/user/UserMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/components/user/UserMenu.tsx -------------------------------------------------------------------------------- /datav/frontend/src/data/bus-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/data/bus-events.ts -------------------------------------------------------------------------------- /datav/frontend/src/data/configs/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/data/configs/config.ts -------------------------------------------------------------------------------- /datav/frontend/src/data/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/data/constants.ts -------------------------------------------------------------------------------- /datav/frontend/src/data/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/data/dashboard.ts -------------------------------------------------------------------------------- /datav/frontend/src/data/panel/initPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/data/panel/initPanel.ts -------------------------------------------------------------------------------- /datav/frontend/src/data/panel/initPlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/data/panel/initPlugins.ts -------------------------------------------------------------------------------- /datav/frontend/src/data/panel/initStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/data/panel/initStyles.ts -------------------------------------------------------------------------------- /datav/frontend/src/data/reserve-urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/data/reserve-urls.ts -------------------------------------------------------------------------------- /datav/frontend/src/data/storage-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/data/storage-keys.ts -------------------------------------------------------------------------------- /datav/frontend/src/data/theme/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/data/theme/dark.json -------------------------------------------------------------------------------- /datav/frontend/src/data/theme/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/data/theme/light.json -------------------------------------------------------------------------------- /datav/frontend/src/data/variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/data/variable.ts -------------------------------------------------------------------------------- /datav/frontend/src/hooks/use-copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/hooks/use-copy.ts -------------------------------------------------------------------------------- /datav/frontend/src/hooks/use-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/hooks/use-data.ts -------------------------------------------------------------------------------- /datav/frontend/src/hooks/use-fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/hooks/use-fetch.ts -------------------------------------------------------------------------------- /datav/frontend/src/hooks/use-route-changed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/hooks/use-route-changed.ts -------------------------------------------------------------------------------- /datav/frontend/src/hooks/use-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/hooks/use-session.ts -------------------------------------------------------------------------------- /datav/frontend/src/hooks/useDedupEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/hooks/useDedupEvent.ts -------------------------------------------------------------------------------- /datav/frontend/src/hooks/useEmbed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/hooks/useEmbed.ts -------------------------------------------------------------------------------- /datav/frontend/src/hooks/useExtraTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/hooks/useExtraTheme.ts -------------------------------------------------------------------------------- /datav/frontend/src/hooks/useFadeIn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/hooks/useFadeIn.ts -------------------------------------------------------------------------------- /datav/frontend/src/hooks/useFullscreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/hooks/useFullscreen.ts -------------------------------------------------------------------------------- /datav/frontend/src/hooks/useIntersectionObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/hooks/useIntersectionObserver.ts -------------------------------------------------------------------------------- /datav/frontend/src/hooks/useKeyEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/hooks/useKeyEvent.ts -------------------------------------------------------------------------------- /datav/frontend/src/hooks/useLandscapeMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/hooks/useLandscapeMode.ts -------------------------------------------------------------------------------- /datav/frontend/src/hooks/useLeavePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/hooks/useLeavePage.ts -------------------------------------------------------------------------------- /datav/frontend/src/hooks/useMiniMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/hooks/useMiniMode.ts -------------------------------------------------------------------------------- /datav/frontend/src/hooks/usePageLeave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/hooks/usePageLeave.ts -------------------------------------------------------------------------------- /datav/frontend/src/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/i18n/i18n.ts -------------------------------------------------------------------------------- /datav/frontend/src/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/i18n/locales/en.ts -------------------------------------------------------------------------------- /datav/frontend/src/i18n/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/i18n/locales/zh.json -------------------------------------------------------------------------------- /datav/frontend/src/i18n/ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/i18n/ui.json -------------------------------------------------------------------------------- /datav/frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/index.tsx -------------------------------------------------------------------------------- /datav/frontend/src/layouts/PageContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/layouts/PageContainer.tsx -------------------------------------------------------------------------------- /datav/frontend/src/layouts/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/layouts/footer.tsx -------------------------------------------------------------------------------- /datav/frontend/src/layouts/footer/copyright.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/layouts/footer/copyright.tsx -------------------------------------------------------------------------------- /datav/frontend/src/layouts/page/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/layouts/page/Page.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/GithubLogin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/GithubLogin.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/Login.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/NotFound.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/Test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/Test.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/account/Setting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/account/Setting.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/account/links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/account/links.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/admin/AccessTokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/admin/AccessTokens.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/admin/AuditLogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/admin/AuditLogs.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/admin/Templates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/admin/Templates.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/admin/Tenants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/admin/Tenants.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/admin/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/admin/Users.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/admin/links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/admin/links.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/dashboard/Trace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/dashboard/Trace.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/dashboard/index.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/examples/Iframe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/examples/Iframe.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/new/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/new/Dashboard.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/new/Datasource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/new/Datasource.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/new/Import.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/new/Import.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/new/Template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/new/Template.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/new/links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/new/links.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/team/Dashboards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/team/Dashboards.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/team/Datasources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/team/Datasources.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/team/Members.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/team/Members.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/team/Setting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/team/Setting.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/team/Sidemenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/team/Sidemenu.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/team/Templates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/team/Templates.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/team/Variables.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/team/Variables.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/team/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/team/components/Layout.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/template/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/template/index.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/tenant/TenantSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/tenant/TenantSetting.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/tenant/TenantTeams.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/tenant/TenantTeams.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/tenant/TenantTemplates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/tenant/TenantTemplates.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/tenant/TenantUsers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/tenant/TenantUsers.tsx -------------------------------------------------------------------------------- /datav/frontend/src/pages/tenant/links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/pages/tenant/links.tsx -------------------------------------------------------------------------------- /datav/frontend/src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/routes.tsx -------------------------------------------------------------------------------- /datav/frontend/src/theme/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/theme/colors.js -------------------------------------------------------------------------------- /datav/frontend/src/theme/common.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/theme/common.styles.tsx -------------------------------------------------------------------------------- /datav/frontend/src/theme/css/echarts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/theme/css/echarts.css -------------------------------------------------------------------------------- /datav/frontend/src/theme/css/react-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/theme/css/react-grid.css -------------------------------------------------------------------------------- /datav/frontend/src/theme/custom-classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/theme/custom-classes.ts -------------------------------------------------------------------------------- /datav/frontend/src/theme/layer-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/theme/layer-styles.js -------------------------------------------------------------------------------- /datav/frontend/src/theme/markdown-render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/theme/markdown-render.ts -------------------------------------------------------------------------------- /datav/frontend/src/theme/override-colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/theme/override-colors.ts -------------------------------------------------------------------------------- /datav/frontend/src/theme/override-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/theme/override-components.ts -------------------------------------------------------------------------------- /datav/frontend/src/theme/text-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/theme/text-styles.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/accesstoken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/accesstoken.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/admin.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/alert.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/annotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/annotation.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/dashboard.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/datasource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/datasource.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/format.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/layout.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/misc.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/panel/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/panel/plugins.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/panel/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/panel/styles.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/plugin.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/role.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/route.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/scope.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/seriesData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/seriesData.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/styles.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/teams.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/template.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/tenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/tenant.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/threshold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/threshold.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/time.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/user.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/value.ts -------------------------------------------------------------------------------- /datav/frontend/src/types/variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/types/variable.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/DraggableManager/DraggableManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/DraggableManager/DraggableManager.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/DraggableManager/EUpdateTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/DraggableManager/EUpdateTypes.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/DraggableManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/DraggableManager/README.md -------------------------------------------------------------------------------- /datav/frontend/src/utils/DraggableManager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/DraggableManager/index.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/DraggableManager/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/DraggableManager/types.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/async.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/axios/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/axios/api.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/axios/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/axios/config.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/axios/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/axios/constants.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/axios/createError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/axios/createError.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/axios/getToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/axios/getToken.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/axios/interceptors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/axios/interceptors.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/axios/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/axios/request.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/axios/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/axios/types.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/axios/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/axios/utils.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/colorGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/colorGenerator.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/colors.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/dashboard/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/dashboard/dashboard.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/dashboard/dynamicCall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/dashboard/dynamicCall.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/dashboard/panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/dashboard/panel.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/datasource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/datasource.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/date.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/datetime/formats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/datetime/formats.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/datetime/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/datetime/formatter.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/datetime/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/datetime/range.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/diff.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/emitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/emitter.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/events.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/format.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/is.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/is.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/localStorage.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/measureText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/measureText.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/numbers.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/paletteGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/paletteGenerator.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/plugins.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/scope.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/seriesData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/seriesData.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/string.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/template.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/tenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/tenant.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/theme.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/toQueryStr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/toQueryStr.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/treeNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/treeNode.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/url.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/validate.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/valueMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/valueMapping.ts -------------------------------------------------------------------------------- /datav/frontend/src/utils/variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/utils/variable.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/Annotation/AnnotationEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/Annotation/AnnotationEditor.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/Annotation/AnnotationMarker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/Annotation/AnnotationMarker.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/Annotation/Annotations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/Annotation/Annotations.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/Annotation/EventsCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/Annotation/EventsCanvas.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/Annotation/Marker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/Annotation/Marker.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/Annotation/XYCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/Annotation/XYCanvas.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/accesstoken/AccessTokenManage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/accesstoken/AccessTokenManage.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/accesstoken/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/accesstoken/store.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/AddPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/AddPanel.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/Dashboard.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/DashboardAnnotations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/DashboardAnnotations.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/DashboardHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/DashboardHeader.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/DashboardRefresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/DashboardRefresh.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/DashboardSave.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/DashboardSave.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/DashboardShare.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/DashboardShare.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/components/DashboardCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/components/DashboardCard.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/components/DashboardStar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/components/DashboardStar.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/components/PanelDatePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/components/PanelDatePicker.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/components/PanelNoData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/components/PanelNoData.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/edit-panel/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/edit-panel/Accordion.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/edit-panel/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/edit-panel/Alert.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/edit-panel/DatasourceQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/edit-panel/DatasourceQuery.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/edit-panel/EditPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/edit-panel/EditPanel.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/edit-panel/PanelEditItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/edit-panel/PanelEditItem.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/edit-panel/PanelOverrides.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/edit-panel/PanelOverrides.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/edit-panel/PanelSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/edit-panel/PanelSettings.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/edit-panel/PanelStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/edit-panel/PanelStyles.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/edit-panel/PanelVariables.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/edit-panel/PanelVariables.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/edit-panel/Transform.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/edit-panel/Transform.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/grid/DashboardGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/grid/DashboardGrid.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/grid/PanelGrid/DebugPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/grid/PanelGrid/DebugPanel.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/grid/PanelGrid/PanelGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/grid/PanelGrid/PanelGrid.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/grid/PanelGrid/PanelHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/grid/PanelGrid/PanelHeader.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/grid/PanelGrid/RowPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/grid/PanelGrid/RowPanel.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/datasource/clickhouse/types.ts: -------------------------------------------------------------------------------- 1 | export const DatasourceTypeVM = "clickhouse" 2 | 3 | -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/datasource/http/types.ts: -------------------------------------------------------------------------------- 1 | export const DatasourceTypeHttp = "http" -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/datasource/loki/types.ts: -------------------------------------------------------------------------------- 1 | export const DatasourceTypeLoki = "loki" -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/datasource/mysql/types.ts: -------------------------------------------------------------------------------- 1 | export const DatasourceTypeVM = "mysql" 2 | 3 | -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/datasource/postgresql/types.ts: -------------------------------------------------------------------------------- 1 | export const DatasourceTypeVM = "postgresql" 2 | 3 | -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/datasource/victoriaMetrics/types.ts: -------------------------------------------------------------------------------- 1 | export const DatasourceTypeVM = "victoriaMetrics" -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/alert/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/alert/icon.svg -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/alert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/alert/index.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/alert/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/alert/types.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/bar/Bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/bar/Bar.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/bar/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/bar/Editor.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/bar/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/bar/icon.svg -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/bar/index.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/bar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/bar/types.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/gauge/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/gauge/icon.svg -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/gauge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/gauge/index.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/gauge/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/gauge/types.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/graph/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/graph/icon.svg -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/graph/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/graph/index.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/graph/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/graph/types.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/log/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/log/Editor.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/log/Log.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/log/Log.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/log/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/log/icon.svg -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/log/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/log/index.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/log/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/log/types.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/log/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/log/utils.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/pie/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/pie/Editor.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/pie/Pie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/panel/pie/Pie.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/trace/components/TraceDetail/TraceStats/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/trace/components/plexus/lib/DirectedGraph/types.js: -------------------------------------------------------------------------------- 1 | export {}; -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/trace/components/plexus/lib/LayoutManager/layout.worker.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/trace/components/plexus/lib/types/TNonEmptyArray.js: -------------------------------------------------------------------------------- 1 | export {}; -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/trace/components/plexus/lib/types/TOneOf.js: -------------------------------------------------------------------------------- 1 | export {}; -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/trace/components/plexus/lib/types/index.js: -------------------------------------------------------------------------------- 1 | export {}; -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/panel/trace/types/misc.ts: -------------------------------------------------------------------------------- 1 | export type TNil = null | undefined; 2 | -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/built-in/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/built-in/plugins.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/components/Legend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/components/Legend.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/components/UnitPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/components/UnitPicker.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/external/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/external/README.md -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/external/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/external/plugins.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/types/opentelemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/types/opentelemetry.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/plugins/utils/opentelemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/plugins/utils/opentelemetry.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/settings/AccessToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/settings/AccessToken.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/settings/Annotation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/settings/Annotation.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/settings/DashboardSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/settings/DashboardSettings.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/settings/General.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/settings/General.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/settings/MetaSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/settings/MetaSetting.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/settings/Styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/settings/Styles.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/settings/Variables.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/settings/Variables.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/store/annotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/store/annotation.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/store/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/store/dashboard.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/store/panelRealtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/store/panelRealtime.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/utils/overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/utils/overrides.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/dashboard/utils/prometheus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/dashboard/utils/prometheus.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/datasource/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/datasource/Editor.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/datasource/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/datasource/store.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/search/ListView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/search/ListView.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/search/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/search/Search.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/search/TagsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/search/TagsView.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/search/TeamsFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/search/TeamsFilter.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/search/TeamsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/search/TeamsView.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/team/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/team/store.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/template/CreateFromTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/template/CreateFromTemplate.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/template/TemplateApply.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/template/TemplateApply.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/template/TemplateBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/template/TemplateBadge.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/template/TemplateCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/template/TemplateCard.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/template/TemplateEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/template/TemplateEditor.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/template/TemplateExport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/template/TemplateExport.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/template/TemplateList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/template/TemplateList.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/variables/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/variables/Loader.tsx -------------------------------------------------------------------------------- /datav/frontend/src/views/variables/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/variables/store.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/variables/useLoadVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/variables/useLoadVars.ts -------------------------------------------------------------------------------- /datav/frontend/src/views/variables/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/src/views/variables/utils.ts -------------------------------------------------------------------------------- /datav/frontend/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/theme.ts -------------------------------------------------------------------------------- /datav/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/tsconfig.json -------------------------------------------------------------------------------- /datav/frontend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/vercel.json -------------------------------------------------------------------------------- /datav/frontend/vite-plugin-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/vite-plugin-markdown.js -------------------------------------------------------------------------------- /datav/frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/vite.config.js -------------------------------------------------------------------------------- /datav/frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/frontend/yarn.lock -------------------------------------------------------------------------------- /datav/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/plugins/README.md -------------------------------------------------------------------------------- /datav/plugins/buildPlugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/plugins/buildPlugins.go -------------------------------------------------------------------------------- /datav/plugins/releasePlugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/plugins/releasePlugins.go -------------------------------------------------------------------------------- /datav/plugins/removePlugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/plugins/removePlugins.go -------------------------------------------------------------------------------- /datav/query/.dockerignore: -------------------------------------------------------------------------------- 1 | datav.db 2 | data -------------------------------------------------------------------------------- /datav/query/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/.gitignore -------------------------------------------------------------------------------- /datav/query/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/Dockerfile -------------------------------------------------------------------------------- /datav/query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/README.md -------------------------------------------------------------------------------- /datav/query/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/cmd/root.go -------------------------------------------------------------------------------- /datav/query/data/.gitignore: -------------------------------------------------------------------------------- 1 | datav.db -------------------------------------------------------------------------------- /datav/query/data/datav.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/data/datav.sql -------------------------------------------------------------------------------- /datav/query/data/provisioning/dashboard/node_detail_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/data/provisioning/dashboard/node_detail_example.json -------------------------------------------------------------------------------- /datav/query/data/provisioning/datasource/prometheus_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/data/provisioning/datasource/prometheus_example.json -------------------------------------------------------------------------------- /datav/query/data/xo_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/data/xo_template.json -------------------------------------------------------------------------------- /datav/query/datav.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/datav.yaml -------------------------------------------------------------------------------- /datav/query/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/go.mod -------------------------------------------------------------------------------- /datav/query/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/go.sum -------------------------------------------------------------------------------- /datav/query/internal/accesstoken/manage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/accesstoken/manage.go -------------------------------------------------------------------------------- /datav/query/internal/accesstoken/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/accesstoken/token.go -------------------------------------------------------------------------------- /datav/query/internal/accesstoken/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/accesstoken/view.go -------------------------------------------------------------------------------- /datav/query/internal/acl/acl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/acl/acl.go -------------------------------------------------------------------------------- /datav/query/internal/acl/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/acl/dashboard.go -------------------------------------------------------------------------------- /datav/query/internal/acl/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/acl/scope.go -------------------------------------------------------------------------------- /datav/query/internal/acl/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/acl/team.go -------------------------------------------------------------------------------- /datav/query/internal/acl/tenant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/acl/tenant.go -------------------------------------------------------------------------------- /datav/query/internal/acl/website.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/acl/website.go -------------------------------------------------------------------------------- /datav/query/internal/admin/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/admin/admin.go -------------------------------------------------------------------------------- /datav/query/internal/admin/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/admin/audit.go -------------------------------------------------------------------------------- /datav/query/internal/admin/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/admin/users.go -------------------------------------------------------------------------------- /datav/query/internal/annotation/annotation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/annotation/annotation.go -------------------------------------------------------------------------------- /datav/query/internal/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/cache/cache.go -------------------------------------------------------------------------------- /datav/query/internal/dashboard/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/dashboard/dashboard.go -------------------------------------------------------------------------------- /datav/query/internal/dashboard/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/dashboard/history.go -------------------------------------------------------------------------------- /datav/query/internal/dashboard/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/dashboard/import.go -------------------------------------------------------------------------------- /datav/query/internal/datasource/datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/datasource/datasource.go -------------------------------------------------------------------------------- /datav/query/internal/datasource/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/datasource/import.go -------------------------------------------------------------------------------- /datav/query/internal/opentelemetry/opentelemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/opentelemetry/opentelemetry.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/builtin/clickhouse/clickhouse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/builtin/clickhouse/clickhouse.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/builtin/mysql/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/builtin/mysql/mysql.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/builtin/plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/builtin/plugins.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/builtin/postgresql/postgresql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/builtin/postgresql/postgresql.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/builtin/xobserve/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/builtin/xobserve/api/api.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/builtin/xobserve/api/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/builtin/xobserve/api/environment.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/builtin/xobserve/api/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/builtin/xobserve/api/logs.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/builtin/xobserve/api/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/builtin/xobserve/api/service.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/builtin/xobserve/api/serviceGraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/builtin/xobserve/api/serviceGraph.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/builtin/xobserve/api/traces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/builtin/xobserve/api/traces.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/builtin/xobserve/models/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/builtin/xobserve/models/models.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/builtin/xobserve/models/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/builtin/xobserve/models/trace.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/builtin/xobserve/utils/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/builtin/xobserve/utils/params.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/builtin/xobserve/utils/queryBuild.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/builtin/xobserve/utils/queryBuild.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/builtin/xobserve/utils/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/builtin/xobserve/utils/service.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/builtin/xobserve/xobserve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/builtin/xobserve/xobserve.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/external/plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/external/plugins.go -------------------------------------------------------------------------------- /datav/query/internal/plugins/utils/clickhouse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/plugins/utils/clickhouse.go -------------------------------------------------------------------------------- /datav/query/internal/proxy/datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/proxy/datasource.go -------------------------------------------------------------------------------- /datav/query/internal/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/proxy/proxy.go -------------------------------------------------------------------------------- /datav/query/internal/proxy/xo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/proxy/xo.go -------------------------------------------------------------------------------- /datav/query/internal/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/server.go -------------------------------------------------------------------------------- /datav/query/internal/storage/data/alertDatashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/storage/data/alertDatashboard.go -------------------------------------------------------------------------------- /datav/query/internal/storage/data/homeDashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/storage/data/homeDashboard.go -------------------------------------------------------------------------------- /datav/query/internal/storage/data/sqliteSql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/storage/data/sqliteSql.go -------------------------------------------------------------------------------- /datav/query/internal/storage/provisioning/provisioning.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/storage/provisioning/provisioning.go -------------------------------------------------------------------------------- /datav/query/internal/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/storage/storage.go -------------------------------------------------------------------------------- /datav/query/internal/storage/updateToCurrentVersion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/storage/updateToCurrentVersion.go -------------------------------------------------------------------------------- /datav/query/internal/task/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/task/task.go -------------------------------------------------------------------------------- /datav/query/internal/teams/sidemenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/teams/sidemenu.go -------------------------------------------------------------------------------- /datav/query/internal/teams/teams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/teams/teams.go -------------------------------------------------------------------------------- /datav/query/internal/template/content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/template/content.go -------------------------------------------------------------------------------- /datav/query/internal/template/disable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/template/disable.go -------------------------------------------------------------------------------- /datav/query/internal/template/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/template/template.go -------------------------------------------------------------------------------- /datav/query/internal/template/use.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/template/use.go -------------------------------------------------------------------------------- /datav/query/internal/tenant/tenant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/tenant/tenant.go -------------------------------------------------------------------------------- /datav/query/internal/uiconfig/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/uiconfig/dashboard.go -------------------------------------------------------------------------------- /datav/query/internal/uiconfig/uiConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/uiconfig/uiConfig.go -------------------------------------------------------------------------------- /datav/query/internal/user/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/user/api.go -------------------------------------------------------------------------------- /datav/query/internal/user/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/user/login.go -------------------------------------------------------------------------------- /datav/query/internal/user/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/user/session.go -------------------------------------------------------------------------------- /datav/query/internal/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/user/user.go -------------------------------------------------------------------------------- /datav/query/internal/variables/variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/internal/variables/variables.go -------------------------------------------------------------------------------- /datav/query/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/main.go -------------------------------------------------------------------------------- /datav/query/pkg/colorlog/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/colorlog/log.go -------------------------------------------------------------------------------- /datav/query/pkg/common/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/common/const.go -------------------------------------------------------------------------------- /datav/query/pkg/common/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/common/response.go -------------------------------------------------------------------------------- /datav/query/pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/config/config.go -------------------------------------------------------------------------------- /datav/query/pkg/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/db/db.go -------------------------------------------------------------------------------- /datav/query/pkg/e/err_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/e/err_check.go -------------------------------------------------------------------------------- /datav/query/pkg/e/err_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/e/err_code.go -------------------------------------------------------------------------------- /datav/query/pkg/log/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/log/factory.go -------------------------------------------------------------------------------- /datav/query/pkg/log/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/log/logger.go -------------------------------------------------------------------------------- /datav/query/pkg/log/spanlogger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/log/spanlogger.go -------------------------------------------------------------------------------- /datav/query/pkg/models/accesstoken.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/models/accesstoken.go -------------------------------------------------------------------------------- /datav/query/pkg/models/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/models/admin.go -------------------------------------------------------------------------------- /datav/query/pkg/models/annotation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/models/annotation.go -------------------------------------------------------------------------------- /datav/query/pkg/models/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/models/dashboard.go -------------------------------------------------------------------------------- /datav/query/pkg/models/datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/models/datasource.go -------------------------------------------------------------------------------- /datav/query/pkg/models/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/models/history.go -------------------------------------------------------------------------------- /datav/query/pkg/models/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/models/import.go -------------------------------------------------------------------------------- /datav/query/pkg/models/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/models/plugin.go -------------------------------------------------------------------------------- /datav/query/pkg/models/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/models/role.go -------------------------------------------------------------------------------- /datav/query/pkg/models/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/models/scope.go -------------------------------------------------------------------------------- /datav/query/pkg/models/teams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/models/teams.go -------------------------------------------------------------------------------- /datav/query/pkg/models/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/models/template.go -------------------------------------------------------------------------------- /datav/query/pkg/models/tenant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/models/tenant.go -------------------------------------------------------------------------------- /datav/query/pkg/models/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/models/user.go -------------------------------------------------------------------------------- /datav/query/pkg/models/variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/models/variable.go -------------------------------------------------------------------------------- /datav/query/pkg/utils/compress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/utils/compress.go -------------------------------------------------------------------------------- /datav/query/pkg/utils/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/utils/encode.go -------------------------------------------------------------------------------- /datav/query/pkg/utils/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/utils/encoding.go -------------------------------------------------------------------------------- /datav/query/pkg/utils/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/utils/file.go -------------------------------------------------------------------------------- /datav/query/pkg/utils/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/utils/id.go -------------------------------------------------------------------------------- /datav/query/pkg/utils/shortid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/utils/shortid.go -------------------------------------------------------------------------------- /datav/query/pkg/utils/simplejson/simplejson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/utils/simplejson/simplejson.go -------------------------------------------------------------------------------- /datav/query/pkg/utils/slug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/utils/slug.go -------------------------------------------------------------------------------- /datav/query/pkg/utils/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/pkg/utils/time.go -------------------------------------------------------------------------------- /datav/query/provisioning/dashboard/node_detail_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/datav/query/provisioning/dashboard/node_detail_example.json -------------------------------------------------------------------------------- /deploy/.gitignore: -------------------------------------------------------------------------------- 1 | data -------------------------------------------------------------------------------- /deploy/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/Readme.md -------------------------------------------------------------------------------- /deploy/clickhouse-conf/clickhouse-cluster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/clickhouse-conf/clickhouse-cluster.xml -------------------------------------------------------------------------------- /deploy/clickhouse-conf/clickhouse-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/clickhouse-conf/clickhouse-config.xml -------------------------------------------------------------------------------- /deploy/clickhouse-conf/clickhouse-function.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/clickhouse-conf/clickhouse-function.xml -------------------------------------------------------------------------------- /deploy/clickhouse-conf/clickhouse-users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/clickhouse-conf/clickhouse-users.xml -------------------------------------------------------------------------------- /deploy/compose-clickhouse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/compose-clickhouse.yaml -------------------------------------------------------------------------------- /deploy/compose-hotrod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/compose-hotrod.yaml -------------------------------------------------------------------------------- /deploy/compose-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/compose-prometheus.yaml -------------------------------------------------------------------------------- /deploy/docker-compose-all-in-one.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/docker-compose-all-in-one.yaml -------------------------------------------------------------------------------- /deploy/docker-compose-dev-deps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/docker-compose-dev-deps.yaml -------------------------------------------------------------------------------- /deploy/release/docker-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/release/docker-all.sh -------------------------------------------------------------------------------- /deploy/scripts/clickhouse-user-scripts/histogramQuantile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/scripts/clickhouse-user-scripts/histogramQuantile -------------------------------------------------------------------------------- /deploy/scripts/clickhouse-user-scripts/histogramQuantile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/scripts/clickhouse-user-scripts/histogramQuantile.go -------------------------------------------------------------------------------- /deploy/scripts/locust-scripts/__pycache__/locustfile.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/scripts/locust-scripts/__pycache__/locustfile.cpython-39.pyc -------------------------------------------------------------------------------- /deploy/scripts/locust-scripts/locustfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/scripts/locust-scripts/locustfile.py -------------------------------------------------------------------------------- /deploy/scripts/nginx-config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/scripts/nginx-config.conf -------------------------------------------------------------------------------- /deploy/scripts/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/deploy/scripts/prometheus.yml -------------------------------------------------------------------------------- /examples/hotrod/.gitignore: -------------------------------------------------------------------------------- 1 | hotrod-linux 2 | -------------------------------------------------------------------------------- /examples/hotrod/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/Dockerfile -------------------------------------------------------------------------------- /examples/hotrod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/README.md -------------------------------------------------------------------------------- /examples/hotrod/cmd/all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/cmd/all.go -------------------------------------------------------------------------------- /examples/hotrod/cmd/customer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/cmd/customer.go -------------------------------------------------------------------------------- /examples/hotrod/cmd/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/cmd/driver.go -------------------------------------------------------------------------------- /examples/hotrod/cmd/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/cmd/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/cmd/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/cmd/flags.go -------------------------------------------------------------------------------- /examples/hotrod/cmd/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/cmd/frontend.go -------------------------------------------------------------------------------- /examples/hotrod/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/cmd/root.go -------------------------------------------------------------------------------- /examples/hotrod/cmd/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/cmd/route.go -------------------------------------------------------------------------------- /examples/hotrod/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/go.mod -------------------------------------------------------------------------------- /examples/hotrod/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/go.sum -------------------------------------------------------------------------------- /examples/hotrod/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/kubernetes/README.md -------------------------------------------------------------------------------- /examples/hotrod/kubernetes/base/hotrod/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/kubernetes/base/hotrod/deployment.yaml -------------------------------------------------------------------------------- /examples/hotrod/kubernetes/base/hotrod/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/kubernetes/base/hotrod/kustomization.yaml -------------------------------------------------------------------------------- /examples/hotrod/kubernetes/base/hotrod/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/kubernetes/base/hotrod/service.yaml -------------------------------------------------------------------------------- /examples/hotrod/kubernetes/base/jaeger-all-in-one/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/kubernetes/base/jaeger-all-in-one/kustomization.yaml -------------------------------------------------------------------------------- /examples/hotrod/kubernetes/base/jaeger-all-in-one/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/kubernetes/base/jaeger-all-in-one/service.yaml -------------------------------------------------------------------------------- /examples/hotrod/kubernetes/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/kubernetes/kustomization.yaml -------------------------------------------------------------------------------- /examples/hotrod/kubernetes/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: example-hotrod 5 | -------------------------------------------------------------------------------- /examples/hotrod/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/main.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/delay/delay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/delay/delay.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/delay/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/delay/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/httperr/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/httperr/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/httperr/httperr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/httperr/httperr.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/jaegerclientenv2otel/envvars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/jaegerclientenv2otel/envvars.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/log/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/log/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/log/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/log/factory.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/log/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/log/logger.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/log/spanlogger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/log/spanlogger.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metrics/expvar/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metrics/expvar/cache.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metrics/expvar/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metrics/expvar/cache_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metrics/expvar/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metrics/expvar/factory.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metrics/expvar/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metrics/expvar/factory_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metrics/expvar/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metrics/expvar/metrics.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metrics/expvar/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metrics/expvar/metrics_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metrics/expvar/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metrics/expvar/package_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metrics/fork/fork.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metrics/fork/fork.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metrics/fork/fork_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metrics/fork/fork_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metrics/metricsbuilder/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metrics/metricsbuilder/builder.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metrics/metricsbuilder/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metrics/metricsbuilder/builder_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metrics/prometheus/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metrics/prometheus/cache.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metrics/prometheus/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metrics/prometheus/factory.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metrics/prometheus/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metrics/prometheus/factory_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metricstest/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metricstest/keys.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metricstest/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metricstest/local.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metricstest/local_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metricstest/local_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metricstest/metricstest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metricstest/metricstest.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metricstest/metricstest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metricstest/metricstest_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/metricstest/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/metricstest/package_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/otel/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/otel/metrics.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/pool/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/pool/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/pool/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/pool/pool.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/baggage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/tracing/baggage.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/tracing/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/tracing/http.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/tracing/init.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/mutex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/tracing/mutex.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/tracing/mux.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/rpcmetrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/tracing/rpcmetrics/README.md -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/rpcmetrics/endpoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/tracing/rpcmetrics/endpoints.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/rpcmetrics/endpoints_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/tracing/rpcmetrics/endpoints_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/rpcmetrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/tracing/rpcmetrics/metrics.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/rpcmetrics/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/tracing/rpcmetrics/metrics_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/rpcmetrics/normalizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/tracing/rpcmetrics/normalizer.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/rpcmetrics/normalizer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/tracing/rpcmetrics/normalizer_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/rpcmetrics/observer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/tracing/rpcmetrics/observer.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/rpcmetrics/observer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/tracing/rpcmetrics/observer_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/rpcmetrics/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/pkg/tracing/rpcmetrics/package_test.go -------------------------------------------------------------------------------- /examples/hotrod/services/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/config/config.go -------------------------------------------------------------------------------- /examples/hotrod/services/config/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/config/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/services/customer/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/customer/client.go -------------------------------------------------------------------------------- /examples/hotrod/services/customer/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/customer/database.go -------------------------------------------------------------------------------- /examples/hotrod/services/customer/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/customer/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/services/customer/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/customer/interface.go -------------------------------------------------------------------------------- /examples/hotrod/services/customer/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/customer/server.go -------------------------------------------------------------------------------- /examples/hotrod/services/driver/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/driver/client.go -------------------------------------------------------------------------------- /examples/hotrod/services/driver/driver.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/driver/driver.pb.go -------------------------------------------------------------------------------- /examples/hotrod/services/driver/driver.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/driver/driver.proto -------------------------------------------------------------------------------- /examples/hotrod/services/driver/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/driver/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/services/driver/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/driver/interface.go -------------------------------------------------------------------------------- /examples/hotrod/services/driver/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/driver/redis.go -------------------------------------------------------------------------------- /examples/hotrod/services/driver/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/driver/server.go -------------------------------------------------------------------------------- /examples/hotrod/services/frontend/best_eta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/frontend/best_eta.go -------------------------------------------------------------------------------- /examples/hotrod/services/frontend/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/frontend/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/services/frontend/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/frontend/server.go -------------------------------------------------------------------------------- /examples/hotrod/services/frontend/web_assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/frontend/web_assets/favicon.ico -------------------------------------------------------------------------------- /examples/hotrod/services/frontend/web_assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/frontend/web_assets/index.html -------------------------------------------------------------------------------- /examples/hotrod/services/route/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/route/client.go -------------------------------------------------------------------------------- /examples/hotrod/services/route/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/route/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/services/route/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/route/interface.go -------------------------------------------------------------------------------- /examples/hotrod/services/route/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/route/server.go -------------------------------------------------------------------------------- /examples/hotrod/services/route/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/services/route/stats.go -------------------------------------------------------------------------------- /examples/hotrod/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/examples/hotrod/start.sh -------------------------------------------------------------------------------- /otel-collector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/.gitignore -------------------------------------------------------------------------------- /otel-collector/DockerfileAgent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/DockerfileAgent -------------------------------------------------------------------------------- /otel-collector/DockerfileCollector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/DockerfileCollector -------------------------------------------------------------------------------- /otel-collector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/README.md -------------------------------------------------------------------------------- /otel-collector/cmd/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/cmd/migrate.go -------------------------------------------------------------------------------- /otel-collector/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/cmd/root.go -------------------------------------------------------------------------------- /otel-collector/components/components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/components/components.go -------------------------------------------------------------------------------- /otel-collector/config/agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/config/agent.yaml -------------------------------------------------------------------------------- /otel-collector/config/collector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/config/collector.yaml -------------------------------------------------------------------------------- /otel-collector/exporter/clickhouselogsexporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhouselogsexporter/README.md -------------------------------------------------------------------------------- /otel-collector/exporter/clickhouselogsexporter/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhouselogsexporter/config.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhouselogsexporter/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhouselogsexporter/config_test.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhouselogsexporter/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhouselogsexporter/example/README.md -------------------------------------------------------------------------------- /otel-collector/exporter/clickhouselogsexporter/exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhouselogsexporter/exporter.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhouselogsexporter/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhouselogsexporter/factory.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhouselogsexporter/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhouselogsexporter/factory_test.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhouselogsexporter/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhouselogsexporter/options.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhouselogsexporter/testdata/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhouselogsexporter/testdata/config.yaml -------------------------------------------------------------------------------- /otel-collector/exporter/clickhouselogsexporter/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhouselogsexporter/usage.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousemetricsexporter/base/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousemetricsexporter/base/base.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousemetricsexporter/clickhouse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousemetricsexporter/clickhouse.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousemetricsexporter/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousemetricsexporter/config.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousemetricsexporter/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousemetricsexporter/config_test.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousemetricsexporter/exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousemetricsexporter/exporter.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousemetricsexporter/exporter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousemetricsexporter/exporter_test.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousemetricsexporter/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousemetricsexporter/factory.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousemetricsexporter/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousemetricsexporter/factory_test.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousemetricsexporter/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousemetricsexporter/helper.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousemetricsexporter/helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousemetricsexporter/helper_test.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousemetricsexporter/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousemetricsexporter/json.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousemetricsexporter/testdata/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousemetricsexporter/testdata/common.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousemetricsexporter/testdata/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousemetricsexporter/testdata/metric.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousemetricsexporter/testdata/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousemetricsexporter/testdata/trace.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousemetricsexporter/testutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousemetricsexporter/testutil_test.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousemetricsexporter/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousemetricsexporter/usage.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousetracesexporter/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousetracesexporter/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousetracesexporter/config.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousetracesexporter/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousetracesexporter/factory.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousetracesexporter/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousetracesexporter/options.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousetracesexporter/schema-signoz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousetracesexporter/schema-signoz.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousetracesexporter/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousetracesexporter/usage.go -------------------------------------------------------------------------------- /otel-collector/exporter/clickhousetracesexporter/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/exporter/clickhousetracesexporter/writer.go -------------------------------------------------------------------------------- /otel-collector/featuregate/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/featuregate/flag.go -------------------------------------------------------------------------------- /otel-collector/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/go.mod -------------------------------------------------------------------------------- /otel-collector/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/go.sum -------------------------------------------------------------------------------- /otel-collector/internal/collector/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/collector/collector.go -------------------------------------------------------------------------------- /otel-collector/internal/collector/collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/collector/collector_test.go -------------------------------------------------------------------------------- /otel-collector/internal/migrationmanager/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/migrationmanager/manager.go -------------------------------------------------------------------------------- /otel-collector/internal/migrationmanager/migrators/logs/migrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/migrationmanager/migrators/logs/migrator.go -------------------------------------------------------------------------------- /otel-collector/internal/migrationmanager/migrators/migrators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/migrationmanager/migrators/migrators.go -------------------------------------------------------------------------------- /otel-collector/internal/migrationmanager/migrators/traces/migrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/migrationmanager/migrators/traces/migrator.go -------------------------------------------------------------------------------- /otel-collector/internal/opamp/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/client.go -------------------------------------------------------------------------------- /otel-collector/internal/opamp/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/config.go -------------------------------------------------------------------------------- /otel-collector/internal/opamp/config_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/config_manager.go -------------------------------------------------------------------------------- /otel-collector/internal/opamp/config_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/config_manager_test.go -------------------------------------------------------------------------------- /otel-collector/internal/opamp/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/config_test.go -------------------------------------------------------------------------------- /otel-collector/internal/opamp/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/helpers.go -------------------------------------------------------------------------------- /otel-collector/internal/opamp/mockserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/mockserver.go -------------------------------------------------------------------------------- /otel-collector/internal/opamp/server_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/server_client.go -------------------------------------------------------------------------------- /otel-collector/internal/opamp/server_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/server_client_test.go -------------------------------------------------------------------------------- /otel-collector/internal/opamp/simple_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/simple_client.go -------------------------------------------------------------------------------- /otel-collector/internal/opamp/simple_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/simple_client_test.go -------------------------------------------------------------------------------- /otel-collector/internal/opamp/testdata/agent-id.yaml: -------------------------------------------------------------------------------- 1 | server_endpoint: dummy -------------------------------------------------------------------------------- /otel-collector/internal/opamp/testdata/coll-config-path-changed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/testdata/coll-config-path-changed.yaml -------------------------------------------------------------------------------- /otel-collector/internal/opamp/testdata/coll-config-path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/testdata/coll-config-path.yaml -------------------------------------------------------------------------------- /otel-collector/internal/opamp/testdata/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/testdata/config.yaml -------------------------------------------------------------------------------- /otel-collector/internal/opamp/testdata/invalid.yaml: -------------------------------------------------------------------------------- 1 | sever_endpoint: -------------------------------------------------------------------------------- /otel-collector/internal/opamp/testdata/manager-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/testdata/manager-config.yaml -------------------------------------------------------------------------------- /otel-collector/internal/opamp/testdata/service-instance-id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/testdata/service-instance-id.yaml -------------------------------------------------------------------------------- /otel-collector/internal/opamp/testdata/simple/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/opamp/testdata/simple/config.yaml -------------------------------------------------------------------------------- /otel-collector/internal/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/internal/service/service.go -------------------------------------------------------------------------------- /otel-collector/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/main.go -------------------------------------------------------------------------------- /otel-collector/migrations/logs/000001_init_db.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/migrations/logs/000001_init_db.down.sql -------------------------------------------------------------------------------- /otel-collector/migrations/logs/000001_init_db.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/migrations/logs/000001_init_db.up.sql -------------------------------------------------------------------------------- /otel-collector/migrations/metrics/000001_init_db.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/migrations/metrics/000001_init_db.down.sql -------------------------------------------------------------------------------- /otel-collector/migrations/metrics/000001_init_db.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/migrations/metrics/000001_init_db.up.sql -------------------------------------------------------------------------------- /otel-collector/migrations/traces/000001_init_traces.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/migrations/traces/000001_init_traces.down.sql -------------------------------------------------------------------------------- /otel-collector/migrations/traces/000001_init_traces.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/migrations/traces/000001_init_traces.up.sql -------------------------------------------------------------------------------- /otel-collector/migrations/traces/000002_init_dependency.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/migrations/traces/000002_init_dependency.down.sql -------------------------------------------------------------------------------- /otel-collector/migrations/traces/000002_init_dependency.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/migrations/traces/000002_init_dependency.up.sql -------------------------------------------------------------------------------- /otel-collector/pkg/config/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/pkg/config/container.go -------------------------------------------------------------------------------- /otel-collector/pkg/config/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/pkg/config/factory.go -------------------------------------------------------------------------------- /otel-collector/pkg/config/featuregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/pkg/config/featuregate.go -------------------------------------------------------------------------------- /otel-collector/pkg/config/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/pkg/config/flag.go -------------------------------------------------------------------------------- /otel-collector/pkg/constants/attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/pkg/constants/attributes.go -------------------------------------------------------------------------------- /otel-collector/pkg/constants/os_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/pkg/constants/os_utils.go -------------------------------------------------------------------------------- /otel-collector/pkg/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/pkg/logger/logger.go -------------------------------------------------------------------------------- /otel-collector/pkg/parser/grok/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/pkg/parser/grok/cache.go -------------------------------------------------------------------------------- /otel-collector/pkg/parser/grok/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/pkg/parser/grok/cache_test.go -------------------------------------------------------------------------------- /otel-collector/pkg/parser/grok/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/pkg/parser/grok/config_test.go -------------------------------------------------------------------------------- /otel-collector/pkg/parser/grok/grok.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/pkg/parser/grok/grok.go -------------------------------------------------------------------------------- /otel-collector/pkg/parser/grok/grok_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/pkg/parser/grok/grok_test.go -------------------------------------------------------------------------------- /otel-collector/pkg/parser/grok/testdata/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/pkg/parser/grok/testdata/config.yaml -------------------------------------------------------------------------------- /otel-collector/pkg/usage/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/pkg/usage/common.go -------------------------------------------------------------------------------- /otel-collector/pkg/usage/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/pkg/usage/usage.go -------------------------------------------------------------------------------- /otel-collector/pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/pkg/utils/utils.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservespanmetricsprocessor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservespanmetricsprocessor/README.md -------------------------------------------------------------------------------- /otel-collector/processor/xobservespanmetricsprocessor/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservespanmetricsprocessor/config.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservespanmetricsprocessor/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservespanmetricsprocessor/config_test.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservespanmetricsprocessor/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservespanmetricsprocessor/factory.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservespanmetricsprocessor/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservespanmetricsprocessor/factory_test.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservespanmetricsprocessor/mocks/Host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservespanmetricsprocessor/mocks/Host.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservespanmetricsprocessor/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservespanmetricsprocessor/processor.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservetailsampler/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.Common -------------------------------------------------------------------------------- /otel-collector/processor/xobservetailsampler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservetailsampler/README.md -------------------------------------------------------------------------------- /otel-collector/processor/xobservetailsampler/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservetailsampler/config.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservetailsampler/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservetailsampler/config_test.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservetailsampler/evaluator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservetailsampler/evaluator.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservetailsampler/evaluator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservetailsampler/evaluator_test.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservetailsampler/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservetailsampler/factory.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservetailsampler/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservetailsampler/factory_test.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservetailsampler/internal/sampling/and.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservetailsampler/internal/sampling/and.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservetailsampler/internal/sampling/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservetailsampler/internal/sampling/doc.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservetailsampler/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservetailsampler/metrics.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservetailsampler/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservetailsampler/processor.go -------------------------------------------------------------------------------- /otel-collector/processor/xobservetailsampler/processor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/processor/xobservetailsampler/processor_test.go -------------------------------------------------------------------------------- /otel-collector/receiver/httpreceiver/bodyparser/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/receiver/httpreceiver/bodyparser/default.go -------------------------------------------------------------------------------- /otel-collector/receiver/httpreceiver/bodyparser/default_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/receiver/httpreceiver/bodyparser/default_test.go -------------------------------------------------------------------------------- /otel-collector/receiver/httpreceiver/bodyparser/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/receiver/httpreceiver/bodyparser/google.go -------------------------------------------------------------------------------- /otel-collector/receiver/httpreceiver/bodyparser/heroku.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/receiver/httpreceiver/bodyparser/heroku.go -------------------------------------------------------------------------------- /otel-collector/receiver/httpreceiver/bodyparser/heroku_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/receiver/httpreceiver/bodyparser/heroku_test.go -------------------------------------------------------------------------------- /otel-collector/receiver/httpreceiver/bodyparser/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/receiver/httpreceiver/bodyparser/logs.go -------------------------------------------------------------------------------- /otel-collector/receiver/httpreceiver/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/receiver/httpreceiver/config.go -------------------------------------------------------------------------------- /otel-collector/receiver/httpreceiver/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/receiver/httpreceiver/config_test.go -------------------------------------------------------------------------------- /otel-collector/receiver/httpreceiver/httpsreceiver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/receiver/httpreceiver/httpsreceiver.go -------------------------------------------------------------------------------- /otel-collector/receiver/httpreceiver/httpsreceiver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/receiver/httpreceiver/httpsreceiver_test.go -------------------------------------------------------------------------------- /otel-collector/receiver/httpreceiver/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/receiver/httpreceiver/metadata.yaml -------------------------------------------------------------------------------- /otel-collector/receiver/httpreceiver/testdata/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/receiver/httpreceiver/testdata/config.yaml -------------------------------------------------------------------------------- /otel-collector/start-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepops-ai/deepops/HEAD/otel-collector/start-agent.sh --------------------------------------------------------------------------------