Date: Wed, 1 Jan 2025 11:01:19 GMT From: Rene Ladan <rene@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 3a479465e642 - main - www/grafana9: Remove expired port Message-ID: <202501011101.501B1JHc029398@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by rene: URL: https://cgit.FreeBSD.org/ports/commit/?id=3a479465e6426f11c4cf6d444737222213ee292a commit 3a479465e6426f11c4cf6d444737222213ee292a Author: Rene Ladan <rene@FreeBSD.org> AuthorDate: 2025-01-01 11:01:14 +0000 Commit: Rene Ladan <rene@FreeBSD.org> CommitDate: 2025-01-01 11:01:14 +0000 www/grafana9: Remove expired port 2024-12-31 www/grafana9: EOLed upstream --- MOVED | 1 + www/Makefile | 1 - www/grafana9/Makefile | 111 - www/grafana9/distinfo | 7 - www/grafana9/files/grafana.in | 78 - www/grafana9/pkg-descr | 3 - www/grafana9/pkg-message | 11 - www/grafana9/pkg-plist | 6926 ----------------------------------------- 8 files changed, 1 insertion(+), 7137 deletions(-) diff --git a/MOVED b/MOVED index ae53e7dcd058..30322548c325 100644 --- a/MOVED +++ b/MOVED @@ -3812,3 +3812,4 @@ www/webtrees20|www/webtrees21|2025-01-01|Has expired: Uses obsolete PHP version; dns/py-idna_ssl||2025-01-01|Has expired: Upstream repository has been archived on Oct 22, 2020 science/py-nilearn||2025-01-01|Has expired: Depends on expired devel/py-codecov biology/ncbi-vdb||2025-01-01|Has expired: Very outdated, unmaintained and unsupported upstream +www/grafana9|www/grafana|2025-01-01|Has expired: EOLed upstream diff --git a/www/Makefile b/www/Makefile index b60c40cde48f..cd1693e7c004 100644 --- a/www/Makefile +++ b/www/Makefile @@ -232,7 +232,6 @@ SUBDIR += gotty SUBDIR += gpx2map SUBDIR += grafana - SUBDIR += grafana9 SUBDIR += grails SUBDIR += gregarius SUBDIR += groupoffice diff --git a/www/grafana9/Makefile b/www/grafana9/Makefile deleted file mode 100644 index 39d6b5181b08..000000000000 --- a/www/grafana9/Makefile +++ /dev/null @@ -1,111 +0,0 @@ -PORTNAME= grafana -DISTVERSIONPREFIX= v -DISTVERSION= 9.5.20 -PORTREVISION= 1 -CATEGORIES= www -MASTER_SITES= https://dl.grafana.com/oss/release/:public \ - https://raw.githubusercontent.com/${GH_ACCOUNT}/${GH_PROJECT}/${DISTVERSIONFULL}/:gomod -PKGNAMESUFFIX= ${DISTVERSION:C/([0-9]).*/\1/1} -DISTFILES= ${GRAFANA_PREBUILT}:public \ - go.mod:gomod - -MAINTAINER= drtr0jan@yandex.ru -COMMENT= Dashboard and graph editor for multiple data stores -WWW= https://github.com/grafana/grafana - -LICENSE= AGPLv3 -LICENSE_FILE= ${WRKSRC}/LICENSE - -DEPRECATED= EOLed upstream -EXPIRATION_DATE= 2024-12-31 - -ONLY_FOR_ARCHS= aarch64 amd64 i386 riscv64 - -BUILD_DEPENDS= wire:devel/go-wire -RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss - -USES= cpe go:modules - -USE_GITHUB= yes - -USE_RC_SUBR= grafana -TAG= 1ba5cd9 - -GO_MODULE= github.com/grafana/grafana -GO_TARGET= ./pkg/cmd/grafana \ - ./pkg/cmd/grafana-server \ - ./pkg/cmd/grafana-cli -GO_BUILDFLAGS= -ldflags="-w -X main.version=${PORTVERSION} -X main.commit=${TAG}" - -CONFLICTS_INSTALL= grafana* - -SUB_LIST= GRAFANA_USER=${GRAFANA_USER} \ - GRAFANA_GROUP=${GRAFANA_GROUP} \ - GRAFANA_DATADIR=${GRAFANA_DATADIR} \ - GRAFANA_HOMEDIR=${GRAFANA_HOMEDIR} \ - GRAFANA_LOGDIR=${GRAFANA_LOGDIR} \ - GRAFANA_PLUGINDIR=${GRAFANA_PLUGINDIR} \ - GRAFANA_PROVISIONINGDIR=${GRAFANA_PROVISIONINGDIR} - -GRAFANA_USER?= grafana -GRAFANA_GROUP?= grafana - -USERS= ${GRAFANA_USER} -GROUPS= ${GRAFANA_GROUP} - -PLIST_SUB= ${SUB_LIST} - -GRAFANA_PREBUILT= grafana-${DISTVERSION}.linux-amd64${EXTRACT_SUFX} -GRAFANA_DATADIR?= /var/db/${PORTNAME} -GRAFANA_HOMEDIR?= ${DATADIR} -GRAFANA_LOGDIR?= /var/log/${PORTNAME} -GRAFANA_PLUGINDIR?= ${GRAFANA_DATADIR}/plugins -GRAFANA_PROVISIONINGDIR?= ${ETCDIR}/provisioning - -do-extract: ${EXTRACT_WRKDIR} - @if ! (cd ${EXTRACT_WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${DISTFILE_DEFAULT} ${EXTRACT_AFTER_ARGS});\ - then \ - ${ECHO_MSG} "===> Failed to extract \"${_DISTDIR}/${GRAFANA_SOURCES}\"."; \ - exit 1; \ - fi; - @if ! (cd ${EXTRACT_WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${GRAFANA_PREBUILT} ${EXTRACT_AFTER_ARGS});\ - then \ - ${ECHO_MSG} "===> Failed to extract \"${_DISTDIR}/${GRAFANA_PREBUILT}\"."; \ - exit 1; \ - fi - @if [ ${UID} = 0 ]; then \ - ${CHMOD} -R ug-s ${WRKDIR}; \ - ${CHOWN} -R 0:0 ${WRKDIR}; \ - fi - -post-patch: - @${REINPLACE_CMD} \ - -e 's|;data = /var/lib/grafana|data = ${GRAFANA_DATADIR}|g' \ - -e 's|;logs = /var/log/grafana|logs = ${GRAFANA_LOGDIR}|g' \ - -e 's|;plugins = /var/lib/grafana/plugins|plugins = ${GRAFANA_PLUGINDIR}|g' \ - -e 's|;provisioning = conf/provisioning|provisioning = ${GRAFANA_PROVISIONINGDIR}|g' \ - ${WRKSRC}/conf/sample.ini - -pre-build: - @(cd ${GO_WRKSRC}; \ - ${ECHO_MSG} "===> Generating wire_gen.go"; \ - ${SETENV} ${MAKE_ENV} ${GO_ENV} wire gen -tags "oss" ./pkg/server ) - -post-install: - ${MKDIR} ${STAGEDIR}${GRAFANA_HOMEDIR} - ${MKDIR} ${STAGEDIR}${GRAFANA_HOMEDIR}/conf - ${MKDIR} ${STAGEDIR}${GRAFANA_DATADIR} - ${MKDIR} ${STAGEDIR}${GRAFANA_PLUGINDIR} -.for dir in access-control alerting dashboards datasources notifiers plugins - ${MKDIR} ${STAGEDIR}${GRAFANA_PROVISIONINGDIR}/${dir} -.endfor - ${MKDIR} ${STAGEDIR}${GRAFANA_LOGDIR} - ( cd ${WRKDIR}/${PORTNAME}-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX} && ${COPYTREE_SHARE} public ${STAGEDIR}${GRAFANA_HOMEDIR} ) -.for dir in input-datasource - ${MKDIR} ${STAGEDIR}${GRAFANA_HOMEDIR}/plugins-bundled/internal/${dir} - ( cd ${WRKDIR}/${PORTNAME}-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX}/plugins-bundled/internal/${dir}/dist && ${COPYTREE_SHARE} . ${STAGEDIR}${GRAFANA_HOMEDIR}/plugins-bundled/internal/${dir} ) -.endfor - ${INSTALL_DATA} ${WRKSRC}/conf/defaults.ini ${STAGEDIR}${GRAFANA_HOMEDIR}/conf/defaults.ini - ${INSTALL_DATA} ${WRKSRC}/conf/sample.ini ${STAGEDIR}${ETCDIR}/grafana.ini.sample - -.include <bsd.port.mk> diff --git a/www/grafana9/distinfo b/www/grafana9/distinfo deleted file mode 100644 index 69bd6964d550..000000000000 --- a/www/grafana9/distinfo +++ /dev/null @@ -1,7 +0,0 @@ -TIMESTAMP = 1720812577 -SHA256 (go/www_grafana9/grafana-grafana-v9.5.20_GH0/grafana-9.5.20.linux-amd64.tar.gz) = 1127253cf64e7f911c07ff605e8afbaa950bde826d3ef534dae3fcfcbf8d8d39 -SIZE (go/www_grafana9/grafana-grafana-v9.5.20_GH0/grafana-9.5.20.linux-amd64.tar.gz) = 87672983 -SHA256 (go/www_grafana9/grafana-grafana-v9.5.20_GH0/go.mod) = b0efefd1ad6626c438ec2d3e3089be1a623779cc2269a1da43df94fdf7f101f8 -SIZE (go/www_grafana9/grafana-grafana-v9.5.20_GH0/go.mod) = 20981 -SHA256 (go/www_grafana9/grafana-grafana-v9.5.20_GH0/grafana-grafana-v9.5.20_GH0.tar.gz) = 034156b29b3baacf2af642886e296bd884819f8914348d54af0d722856a849a5 -SIZE (go/www_grafana9/grafana-grafana-v9.5.20_GH0/grafana-grafana-v9.5.20_GH0.tar.gz) = 26501307 diff --git a/www/grafana9/files/grafana.in b/www/grafana9/files/grafana.in deleted file mode 100644 index 8f13bdaf969b..000000000000 --- a/www/grafana9/files/grafana.in +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/sh - -# PROVIDE: grafana -# REQUIRE: LOGIN -# KEYWORD: shutdown - -# Add the following lines to /etc/rc.conf to enable grafana -# grafana_enable="YES" -# -# grafana_enable (bool): -# Set it to YES to enable grafana -# Set to NO by default -# grafana_user (string): -# Set user that grafana will run under -# Default is "%%GRAFANA_USER%%" -# grafana_group (string): -# Set group that own grafana files -# Default is "%%GRAFANA_GROUP%%" -# grafana_config (string) -# Set full path to config file -# Default is "%%ETCDIR%%/grafana.ini" -# grafana_homepath (string) -# Set full path to homepath dir -# Default is "%%GRAFANA_HOMEDIR%%" -# grafana_syslog_output_enable (bool) -# Set it to YES to enable stdout/stderr syslog output -# Set to NO by default -# grafana_syslog_output_tag (str) -# Set syslog tag if syslog enabled -# Default is "grafana" -# grafana_args (string) -# Set additional command line arguments -# Default is "" - -. /etc/rc.subr - -name=grafana -rcvar=grafana_enable - -load_rc_config $name - -: ${grafana_enable:="NO"} -: ${grafana_user:="%%GRAFANA_USER%%"} -: ${grafana_group:="%%GRAFANA_GROUP%%"} -: ${grafana_config:="%%ETCDIR%%/grafana.ini"} -: ${grafana_homepath:="%%GRAFANA_HOMEDIR%%"} -: ${grafana_syslog_output_enable:="NO"} - -if checkyesno grafana_syslog_output_enable; then - if [ -n "${grafana_syslog_output_tag}" ]; then - grafana_syslog_output_flags="-T ${grafana_syslog_output_tag}" - else - grafana_syslog_output_flags="-T ${name}" - fi -fi - -pidfile="/var/run/${name}/${name}.pid" -required_files="${grafana_config}" - -procname="%%PREFIX%%/bin/grafana" -command="/usr/sbin/daemon" -command_args="-f ${grafana_syslog_output_flags} -p ${pidfile} -t ${name} \ - /usr/bin/env ${grafana_env} ${procname} server \ - -config=${grafana_config} \ - -homepath=${grafana_homepath} \ - ${grafana_args}" -grafana_chdir="${grafana_homepath}" - -start_precmd="grafana_start_precmd" - -grafana_start_precmd() -{ - if [ ! -d "/var/run/${name}" ]; then - install -d -m 0750 -o ${grafana_user} -g ${grafana_group} "/var/run/${name}" - fi -} - -run_rc_command "$1" diff --git a/www/grafana9/pkg-descr b/www/grafana9/pkg-descr deleted file mode 100644 index f3c0ebf71117..000000000000 --- a/www/grafana9/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Grafana is an open source and composable observability and data visualization -platform. Visualize metrics, logs, and traces from multiple sources like -Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more. diff --git a/www/grafana9/pkg-message b/www/grafana9/pkg-message deleted file mode 100644 index cbc9028e8329..000000000000 --- a/www/grafana9/pkg-message +++ /dev/null @@ -1,11 +0,0 @@ -[ -{ - type: upgrade - maximum_version: "8.0" - message: <<EOM -- rc-script: grafana_conf renamed to grafana_config; -- grafana.conf moved to etc/grafana/grafana.ini; -- provisioning dir moved to etc/grafana/provisioning. -EOM -} -] diff --git a/www/grafana9/pkg-plist b/www/grafana9/pkg-plist deleted file mode 100644 index 3d6524d2830f..000000000000 --- a/www/grafana9/pkg-plist +++ /dev/null @@ -1,6926 +0,0 @@ -bin/grafana -bin/grafana-cli -bin/grafana-server -@sample %%ETCDIR%%/grafana.ini.sample -%%DATADIR%%/conf/defaults.ini -%%DATADIR%%/plugins-bundled/internal/input-datasource/README.md -%%DATADIR%%/plugins-bundled/internal/input-datasource/img/input.svg -%%DATADIR%%/plugins-bundled/internal/input-datasource/module.js -%%DATADIR%%/plugins-bundled/internal/input-datasource/module.js.map -%%DATADIR%%/plugins-bundled/internal/input-datasource/plugin.json -%%DATADIR%%/public/api-merged.json -%%DATADIR%%/public/app/AppWrapper.tsx -%%DATADIR%%/public/app/angular/AngularApp.ts -%%DATADIR%%/public/app/angular/AngularLocationWrapper.test.ts -%%DATADIR%%/public/app/angular/AngularLocationWrapper.ts -%%DATADIR%%/public/app/angular/AngularRoot.tsx -%%DATADIR%%/public/app/angular/GrafanaCtrl.ts -%%DATADIR%%/public/app/angular/angular_wrappers.ts -%%DATADIR%%/public/app/angular/array_join.ts -%%DATADIR%%/public/app/angular/autofill_event_fix.ts -%%DATADIR%%/public/app/angular/bridgeReactAngularRouting.ts -%%DATADIR%%/public/app/angular/bsTooltip.ts -%%DATADIR%%/public/app/angular/bsTypeahead.ts -%%DATADIR%%/public/app/angular/components/HttpSettingsCtrl.ts -%%DATADIR%%/public/app/angular/components/TlsAuthSettingsCtrl.ts -%%DATADIR%%/public/app/angular/components/code_editor/brace.d.ts -%%DATADIR%%/public/app/angular/components/code_editor/code_editor.ts -%%DATADIR%%/public/app/angular/components/code_editor/theme-grafana-dark.js -%%DATADIR%%/public/app/angular/components/form_dropdown/form_dropdown.ts -%%DATADIR%%/public/app/angular/components/info_popover.ts -%%DATADIR%%/public/app/angular/components/jsontree.ts -%%DATADIR%%/public/app/angular/components/plugin_component.test.ts -%%DATADIR%%/public/app/angular/components/plugin_component.ts -%%DATADIR%%/public/app/angular/components/query_part_editor.ts -%%DATADIR%%/public/app/angular/components/scroll.ts -%%DATADIR%%/public/app/angular/components/spectrum_picker.ts -%%DATADIR%%/public/app/angular/components/sql_part/sql_part.ts -%%DATADIR%%/public/app/angular/components/sql_part/sql_part_editor.ts -%%DATADIR%%/public/app/angular/components/switch.ts -%%DATADIR%%/public/app/angular/core_module.ts -%%DATADIR%%/public/app/angular/diff-view.ts -%%DATADIR%%/public/app/angular/dropdown_typeahead.ts -%%DATADIR%%/public/app/angular/filters/filters.ts -%%DATADIR%%/public/app/angular/give_focus.ts -%%DATADIR%%/public/app/angular/index.ts -%%DATADIR%%/public/app/angular/injectorMonkeyPatch.ts -%%DATADIR%%/public/app/angular/jquery_extended.ts -%%DATADIR%%/public/app/angular/lazyBootAngular.ts -%%DATADIR%%/public/app/angular/loadAndInitAngularIfEnabled.ts -%%DATADIR%%/public/app/angular/metric_segment.ts -%%DATADIR%%/public/app/angular/misc.ts -%%DATADIR%%/public/app/angular/ng_model_on_blur.ts -%%DATADIR%%/public/app/angular/panel/all.ts -%%DATADIR%%/public/app/angular/panel/metrics_panel_ctrl.ts -%%DATADIR%%/public/app/angular/panel/panel_ctrl.ts -%%DATADIR%%/public/app/angular/panel/panel_directive.ts -%%DATADIR%%/public/app/angular/panel/panel_editor_tab.ts -%%DATADIR%%/public/app/angular/panel/partials/query_editor_row.html -%%DATADIR%%/public/app/angular/panel/query_ctrl.ts -%%DATADIR%%/public/app/angular/panel/query_editor_row.ts -%%DATADIR%%/public/app/angular/panel/specs/metrics_panel_ctrl.test.ts -%%DATADIR%%/public/app/angular/partials.ts -%%DATADIR%%/public/app/angular/partials/http_settings_next.html -%%DATADIR%%/public/app/angular/partials/tls_auth_settings.html -%%DATADIR%%/public/app/angular/promiseToDigest.test.ts -%%DATADIR%%/public/app/angular/promiseToDigest.ts -%%DATADIR%%/public/app/angular/react2angular.ts -%%DATADIR%%/public/app/angular/rebuild_on_change.ts -%%DATADIR%%/public/app/angular/registerComponents.ts -%%DATADIR%%/public/app/angular/services/AngularLoader.ts -%%DATADIR%%/public/app/angular/services/UtilSrv.ts -%%DATADIR%%/public/app/angular/services/alert_srv.ts -%%DATADIR%%/public/app/angular/services/annotations_srv.ts -%%DATADIR%%/public/app/angular/services/dynamic_directive_srv.ts -%%DATADIR%%/public/app/angular/services/nav_model_srv.ts -%%DATADIR%%/public/app/angular/services/ng_react.ts -%%DATADIR%%/public/app/angular/services/popover_srv.ts -%%DATADIR%%/public/app/angular/services/segment_srv.ts -%%DATADIR%%/public/app/angular/services/timer.ts -%%DATADIR%%/public/app/angular/tags.ts -%%DATADIR%%/public/app/app.ts -%%DATADIR%%/public/app/core/TableModel.ts -%%DATADIR%%/public/app/core/actions/cleanUp.ts -%%DATADIR%%/public/app/core/actions/index.ts -%%DATADIR%%/public/app/core/app_events.ts -%%DATADIR%%/public/app/core/components/AccessControl/AddPermission.tsx -%%DATADIR%%/public/app/core/components/AccessControl/PermissionList.tsx -%%DATADIR%%/public/app/core/components/AccessControl/PermissionListItem.tsx -%%DATADIR%%/public/app/core/components/AccessControl/Permissions.tsx -%%DATADIR%%/public/app/core/components/AccessControl/index.ts -%%DATADIR%%/public/app/core/components/AccessControl/types.ts -%%DATADIR%%/public/app/core/components/Animations/FadeIn.tsx -%%DATADIR%%/public/app/core/components/Animations/SlideDown.tsx -%%DATADIR%%/public/app/core/components/AppChrome/AppChrome.tsx -%%DATADIR%%/public/app/core/components/AppChrome/AppChromeService.test.tsx -%%DATADIR%%/public/app/core/components/AppChrome/AppChromeService.tsx -%%DATADIR%%/public/app/core/components/AppChrome/AppChromeUpdate.tsx -%%DATADIR%%/public/app/core/components/AppChrome/NavLandingPage.test.tsx -%%DATADIR%%/public/app/core/components/AppChrome/NavLandingPage.tsx -%%DATADIR%%/public/app/core/components/AppChrome/NavLandingPageCard.test.tsx -%%DATADIR%%/public/app/core/components/AppChrome/NavLandingPageCard.tsx -%%DATADIR%%/public/app/core/components/AppChrome/NavToolbar.tsx -%%DATADIR%%/public/app/core/components/AppChrome/NavToolbarSeparator.tsx -%%DATADIR%%/public/app/core/components/AppChrome/News/NewsContainer.test.tsx -%%DATADIR%%/public/app/core/components/AppChrome/News/NewsContainer.tsx -%%DATADIR%%/public/app/core/components/AppChrome/News/NewsWrapper.tsx -%%DATADIR%%/public/app/core/components/AppChrome/News/fixtures/news.xml -%%DATADIR%%/public/app/core/components/AppChrome/Organization/OrganizationPicker.tsx -%%DATADIR%%/public/app/core/components/AppChrome/Organization/OrganizationSelect.tsx -%%DATADIR%%/public/app/core/components/AppChrome/Organization/OrganizationSwitcher.test.tsx -%%DATADIR%%/public/app/core/components/AppChrome/Organization/OrganizationSwitcher.tsx -%%DATADIR%%/public/app/core/components/AppChrome/Organization/types.ts -%%DATADIR%%/public/app/core/components/AppChrome/QuickAdd/QuickAdd.test.tsx -%%DATADIR%%/public/app/core/components/AppChrome/QuickAdd/QuickAdd.tsx -%%DATADIR%%/public/app/core/components/AppChrome/QuickAdd/utils.ts -%%DATADIR%%/public/app/core/components/AppChrome/TopBar/SignInLink.tsx -%%DATADIR%%/public/app/core/components/AppChrome/TopBar/TopNavBarMenu.tsx -%%DATADIR%%/public/app/core/components/AppChrome/TopBar/TopSearchBarSection.test.tsx -%%DATADIR%%/public/app/core/components/AppChrome/TopBar/TopSearchBarSection.tsx -%%DATADIR%%/public/app/core/components/AppChrome/TopSearchBar.tsx -%%DATADIR%%/public/app/core/components/AppChrome/TopSearchBarCommandPaletteTrigger.tsx -%%DATADIR%%/public/app/core/components/AppChrome/types.ts -%%DATADIR%%/public/app/core/components/AppNotifications/AppNotificationItem.tsx -%%DATADIR%%/public/app/core/components/AppNotifications/AppNotificationList.tsx -%%DATADIR%%/public/app/core/components/AppNotifications/StoredNotificationItem.tsx -%%DATADIR%%/public/app/core/components/Branding/Branding.tsx -%%DATADIR%%/public/app/core/components/Branding/types.ts -%%DATADIR%%/public/app/core/components/Breadcrumbs/BreadcrumbItem.tsx -%%DATADIR%%/public/app/core/components/Breadcrumbs/Breadcrumbs.test.tsx -%%DATADIR%%/public/app/core/components/Breadcrumbs/Breadcrumbs.tsx -%%DATADIR%%/public/app/core/components/Breadcrumbs/types.ts -%%DATADIR%%/public/app/core/components/Breadcrumbs/utils.test.ts -%%DATADIR%%/public/app/core/components/Breadcrumbs/utils.ts -%%DATADIR%%/public/app/core/components/CardButton.tsx -%%DATADIR%%/public/app/core/components/CloseButton/CloseButton.tsx -%%DATADIR%%/public/app/core/components/ColorScale/ColorScale.tsx -%%DATADIR%%/public/app/core/components/DynamicImports/SafeDynamicImport.tsx -%%DATADIR%%/public/app/core/components/EmptyListCTA/EmptyListCTA.test.tsx -%%DATADIR%%/public/app/core/components/EmptyListCTA/EmptyListCTA.tsx -%%DATADIR%%/public/app/core/components/ErrorPage/ErrorPage.tsx -%%DATADIR%%/public/app/core/components/FolderFilter/FolderFilter.tsx -%%DATADIR%%/public/app/core/components/Footer/Footer.tsx -%%DATADIR%%/public/app/core/components/ForgottenPassword/ChangePassword.tsx -%%DATADIR%%/public/app/core/components/ForgottenPassword/ChangePasswordPage.test.tsx -%%DATADIR%%/public/app/core/components/ForgottenPassword/ChangePasswordPage.tsx -%%DATADIR%%/public/app/core/components/ForgottenPassword/ForgottenPassword.tsx -%%DATADIR%%/public/app/core/components/ForgottenPassword/SendResetMailPage.test.tsx -%%DATADIR%%/public/app/core/components/ForgottenPassword/SendResetMailPage.tsx -%%DATADIR%%/public/app/core/components/Layers/AddLayerButton.test.tsx -%%DATADIR%%/public/app/core/components/Layers/AddLayerButton.tsx -%%DATADIR%%/public/app/core/components/Layers/LayerDragDropList.test.tsx -%%DATADIR%%/public/app/core/components/Layers/LayerDragDropList.tsx -%%DATADIR%%/public/app/core/components/Layers/LayerName.test.tsx -%%DATADIR%%/public/app/core/components/Layers/LayerName.tsx -%%DATADIR%%/public/app/core/components/Layers/types.ts -%%DATADIR%%/public/app/core/components/LocalStorageValueProvider/LocalStorageValueProvider.tsx -%%DATADIR%%/public/app/core/components/LocalStorageValueProvider/index.tsx -%%DATADIR%%/public/app/core/components/Login/LoginCtrl.tsx -%%DATADIR%%/public/app/core/components/Login/LoginForm.tsx -%%DATADIR%%/public/app/core/components/Login/LoginLayout.tsx -%%DATADIR%%/public/app/core/components/Login/LoginPage.test.tsx -%%DATADIR%%/public/app/core/components/Login/LoginPage.tsx -%%DATADIR%%/public/app/core/components/Login/LoginServiceButtons.tsx -%%DATADIR%%/public/app/core/components/Login/UserSignup.tsx -%%DATADIR%%/public/app/core/components/MegaMenu/MegaMenu.test.tsx -%%DATADIR%%/public/app/core/components/MegaMenu/MegaMenu.tsx -%%DATADIR%%/public/app/core/components/MegaMenu/NavBarMenu.tsx -%%DATADIR%%/public/app/core/components/MegaMenu/NavBarMenuItem.tsx -%%DATADIR%%/public/app/core/components/MegaMenu/NavBarMenuItemWrapper.tsx -%%DATADIR%%/public/app/core/components/MegaMenu/NavBarMenuSection.tsx -%%DATADIR%%/public/app/core/components/NavBar/NavBar.test.tsx -%%DATADIR%%/public/app/core/components/NavBar/NavBar.tsx -%%DATADIR%%/public/app/core/components/NavBar/NavBarItem.test.tsx -%%DATADIR%%/public/app/core/components/NavBar/NavBarItem.tsx -%%DATADIR%%/public/app/core/components/NavBar/NavBarItemIcon.tsx -%%DATADIR%%/public/app/core/components/NavBar/NavBarItemMenu.tsx -%%DATADIR%%/public/app/core/components/NavBar/NavBarItemMenuItem.tsx -%%DATADIR%%/public/app/core/components/NavBar/NavBarItemMenuTrigger.tsx -%%DATADIR%%/public/app/core/components/NavBar/NavBarItemWithoutMenu.tsx -%%DATADIR%%/public/app/core/components/NavBar/NavBarMenu.test.tsx -%%DATADIR%%/public/app/core/components/NavBar/NavBarMenu.tsx -%%DATADIR%%/public/app/core/components/NavBar/NavBarMenuItem.test.tsx -%%DATADIR%%/public/app/core/components/NavBar/NavBarMenuItem.tsx -%%DATADIR%%/public/app/core/components/NavBar/NavBarMenuPortalContainer.tsx -%%DATADIR%%/public/app/core/components/NavBar/NavBarToggle.tsx -%%DATADIR%%/public/app/core/components/NavBar/NavFeatureHighlight.tsx -%%DATADIR%%/public/app/core/components/NavBar/context.tsx -%%DATADIR%%/public/app/core/components/NavBar/navBarItem-translations.ts -%%DATADIR%%/public/app/core/components/NavBar/utils.test.ts -%%DATADIR%%/public/app/core/components/NavBar/utils.ts -%%DATADIR%%/public/app/core/components/NodeGraphSettings.tsx -%%DATADIR%%/public/app/core/components/OptionsUI/DashboardPicker.tsx -%%DATADIR%%/public/app/core/components/OptionsUI/DashboardPickerByID.tsx -%%DATADIR%%/public/app/core/components/OptionsUI/NumberInput.test.tsx -%%DATADIR%%/public/app/core/components/OptionsUI/NumberInput.tsx -%%DATADIR%%/public/app/core/components/OptionsUI/color.tsx -%%DATADIR%%/public/app/core/components/OptionsUI/fieldColor.tsx -%%DATADIR%%/public/app/core/components/OptionsUI/links.tsx -%%DATADIR%%/public/app/core/components/OptionsUI/multiSelect.tsx -%%DATADIR%%/public/app/core/components/OptionsUI/number.tsx -%%DATADIR%%/public/app/core/components/OptionsUI/registry.tsx -%%DATADIR%%/public/app/core/components/OptionsUI/select.tsx -%%DATADIR%%/public/app/core/components/OptionsUI/slider.tsx -%%DATADIR%%/public/app/core/components/OptionsUI/stats.tsx -%%DATADIR%%/public/app/core/components/OptionsUI/string.tsx -%%DATADIR%%/public/app/core/components/OptionsUI/strings.tsx -%%DATADIR%%/public/app/core/components/OptionsUI/units.tsx -%%DATADIR%%/public/app/core/components/OrgSwitcher.tsx -%%DATADIR%%/public/app/core/components/Page/OldNavOnly.tsx -%%DATADIR%%/public/app/core/components/Page/Page.test.tsx -%%DATADIR%%/public/app/core/components/Page/Page.tsx -%%DATADIR%%/public/app/core/components/Page/PageContents.tsx -%%DATADIR%%/public/app/core/components/Page/types.ts -%%DATADIR%%/public/app/core/components/Page/usePageNav.ts -%%DATADIR%%/public/app/core/components/Page/usePageTitle.ts -%%DATADIR%%/public/app/core/components/PageActionBar/PageActionBar.test.tsx -%%DATADIR%%/public/app/core/components/PageActionBar/PageActionBar.tsx -%%DATADIR%%/public/app/core/components/PageHeader/PageHeader.test.tsx -%%DATADIR%%/public/app/core/components/PageHeader/PageHeader.tsx -%%DATADIR%%/public/app/core/components/PageInfo/PageInfo.test.tsx -%%DATADIR%%/public/app/core/components/PageInfo/PageInfo.tsx -%%DATADIR%%/public/app/core/components/PageLoader/PageLoader.tsx -%%DATADIR%%/public/app/core/components/PageNew/Page.test.tsx -%%DATADIR%%/public/app/core/components/PageNew/Page.tsx -%%DATADIR%%/public/app/core/components/PageNew/PageContents.tsx -%%DATADIR%%/public/app/core/components/PageNew/PageHeader.tsx -%%DATADIR%%/public/app/core/components/PageNew/PageTabs.tsx -%%DATADIR%%/public/app/core/components/PageNew/PluginPage.tsx -%%DATADIR%%/public/app/core/components/PageNew/SectionNav.tsx -%%DATADIR%%/public/app/core/components/PageNew/SectionNavItem.test.tsx -%%DATADIR%%/public/app/core/components/PageNew/SectionNavItem.tsx -%%DATADIR%%/public/app/core/components/PageNew/SectionNavToggle.tsx -%%DATADIR%%/public/app/core/components/PanelTypeFilter/PanelTypeFilter.tsx -%%DATADIR%%/public/app/core/components/PasswordField/PasswordField.test.tsx -%%DATADIR%%/public/app/core/components/PasswordField/PasswordField.tsx -%%DATADIR%%/public/app/core/components/PermissionList/AddPermission.tsx -%%DATADIR%%/public/app/core/components/PermissionList/DisabledPermissionListItem.tsx -%%DATADIR%%/public/app/core/components/PermissionList/PermissionList.tsx -%%DATADIR%%/public/app/core/components/PermissionList/PermissionListItem.tsx -%%DATADIR%%/public/app/core/components/PermissionList/PermissionsInfo.tsx -%%DATADIR%%/public/app/core/components/PluginHelp/PluginHelp.tsx -%%DATADIR%%/public/app/core/components/QueryOperationRow/OperationRowHelp.tsx -%%DATADIR%%/public/app/core/components/QueryOperationRow/QueryOperationAction.test.tsx -%%DATADIR%%/public/app/core/components/QueryOperationRow/QueryOperationAction.tsx -%%DATADIR%%/public/app/core/components/QueryOperationRow/QueryOperationRow.test.tsx -%%DATADIR%%/public/app/core/components/QueryOperationRow/QueryOperationRow.tsx -%%DATADIR%%/public/app/core/components/QueryOperationRow/QueryOperationRowHeader.tsx -%%DATADIR%%/public/app/core/components/RolePicker/RoleMenuGroupOption.tsx -%%DATADIR%%/public/app/core/components/RolePicker/RoleMenuGroupsSection.tsx -%%DATADIR%%/public/app/core/components/RolePicker/RoleMenuOption.tsx -%%DATADIR%%/public/app/core/components/RolePicker/RolePicker.tsx -%%DATADIR%%/public/app/core/components/RolePicker/RolePickerInput.tsx -%%DATADIR%%/public/app/core/components/RolePicker/RolePickerMenu.tsx -%%DATADIR%%/public/app/core/components/RolePicker/RolePickerSubMenu.tsx -%%DATADIR%%/public/app/core/components/RolePicker/TeamRolePicker.tsx -%%DATADIR%%/public/app/core/components/RolePicker/UserRolePicker.tsx -%%DATADIR%%/public/app/core/components/RolePicker/ValueContainer.tsx -%%DATADIR%%/public/app/core/components/RolePicker/api.ts -%%DATADIR%%/public/app/core/components/RolePicker/constants.ts -%%DATADIR%%/public/app/core/components/RolePicker/hooks.ts -%%DATADIR%%/public/app/core/components/RolePicker/styles.ts -%%DATADIR%%/public/app/core/components/RolePicker/utils.ts -%%DATADIR%%/public/app/core/components/SVG/SanitizedSVG.tsx -%%DATADIR%%/public/app/core/components/Select/DashboardPicker.tsx -%%DATADIR%%/public/app/core/components/Select/FolderPicker.test.tsx -%%DATADIR%%/public/app/core/components/Select/FolderPicker.tsx -%%DATADIR%%/public/app/core/components/Select/MetricSelect.test.tsx -%%DATADIR%%/public/app/core/components/Select/MetricSelect.tsx -%%DATADIR%%/public/app/core/components/Select/OrgPicker.tsx -%%DATADIR%%/public/app/core/components/Select/ReadonlyFolderPicker/ReadonlyFolderPicker.test.tsx -%%DATADIR%%/public/app/core/components/Select/ReadonlyFolderPicker/ReadonlyFolderPicker.tsx -%%DATADIR%%/public/app/core/components/Select/ReadonlyFolderPicker/api.test.ts -%%DATADIR%%/public/app/core/components/Select/ReadonlyFolderPicker/api.ts -%%DATADIR%%/public/app/core/components/Select/ReadonlyFolderPicker/types.ts -%%DATADIR%%/public/app/core/components/Select/SortPicker.tsx -%%DATADIR%%/public/app/core/components/Select/TeamPicker.test.tsx -%%DATADIR%%/public/app/core/components/Select/TeamPicker.tsx -%%DATADIR%%/public/app/core/components/Select/UserPicker.test.tsx -%%DATADIR%%/public/app/core/components/Select/UserPicker.tsx -%%DATADIR%%/public/app/core/components/SharedPreferences/SharedPreferences.test.tsx -%%DATADIR%%/public/app/core/components/SharedPreferences/SharedPreferences.tsx -%%DATADIR%%/public/app/core/components/Signup/SignupPage.test.tsx -%%DATADIR%%/public/app/core/components/Signup/SignupPage.tsx -%%DATADIR%%/public/app/core/components/Signup/VerifyEmail.tsx -%%DATADIR%%/public/app/core/components/Signup/VerifyEmailPage.test.tsx -%%DATADIR%%/public/app/core/components/Signup/VerifyEmailPage.tsx -%%DATADIR%%/public/app/core/components/SplitPaneWrapper/SplitPaneWrapper.tsx -%%DATADIR%%/public/app/core/components/TagFilter/TagBadge.tsx -%%DATADIR%%/public/app/core/components/TagFilter/TagFilter.tsx -%%DATADIR%%/public/app/core/components/TagFilter/TagOption.tsx -%%DATADIR%%/public/app/core/components/TimePicker/TimePickerWithHistory.test.tsx -%%DATADIR%%/public/app/core/components/TimePicker/TimePickerWithHistory.tsx -%%DATADIR%%/public/app/core/components/TimelineChart/TimelineChart.tsx -%%DATADIR%%/public/app/core/components/TimelineChart/timeline.ts -%%DATADIR%%/public/app/core/components/TimelineChart/utils.test.ts -%%DATADIR%%/public/app/core/components/TimelineChart/utils.ts -%%DATADIR%%/public/app/core/components/TraceToLogs/TagMappingInput.tsx -%%DATADIR%%/public/app/core/components/TraceToLogs/TraceToLogsSettings.test.tsx -%%DATADIR%%/public/app/core/components/TraceToLogs/TraceToLogsSettings.tsx -%%DATADIR%%/public/app/core/components/TraceToMetrics/TraceToMetricsSettings.tsx -%%DATADIR%%/public/app/core/components/Upgrade/ProBadge.tsx -%%DATADIR%%/public/app/core/components/Upgrade/UpgradeBox.tsx -%%DATADIR%%/public/app/core/components/WithFeatureToggle.tsx -%%DATADIR%%/public/app/core/components/connectWithCleanUp.tsx -%%DATADIR%%/public/app/core/components/help/HelpModal.tsx -%%DATADIR%%/public/app/core/components/modals/AngularModalProxy.tsx -%%DATADIR%%/public/app/core/config.ts -%%DATADIR%%/public/app/core/constants.ts -%%DATADIR%%/public/app/core/context/GrafanaContext.ts -%%DATADIR%%/public/app/core/copy/appNotification.ts -%%DATADIR%%/public/app/core/core.ts -%%DATADIR%%/public/app/core/history/RichHistoryLocalStorage.test.ts -%%DATADIR%%/public/app/core/history/RichHistoryLocalStorage.ts -%%DATADIR%%/public/app/core/history/RichHistoryRemoteStorage.test.ts -%%DATADIR%%/public/app/core/history/RichHistoryRemoteStorage.ts -%%DATADIR%%/public/app/core/history/RichHistoryStorage.ts -%%DATADIR%%/public/app/core/history/localStorageConverter.test.ts -%%DATADIR%%/public/app/core/history/localStorageConverter.ts -%%DATADIR%%/public/app/core/history/remoteStorageConverter.test.ts -%%DATADIR%%/public/app/core/history/remoteStorageConverter.ts -%%DATADIR%%/public/app/core/history/richHistoryLocalStorageUtils.test.ts -%%DATADIR%%/public/app/core/history/richHistoryLocalStorageUtils.ts -%%DATADIR%%/public/app/core/history/richHistoryStorageProvider.ts -%%DATADIR%%/public/app/core/hooks/useBusEvent.ts -%%DATADIR%%/public/app/core/hooks/useCleanup.ts -%%DATADIR%%/public/app/core/hooks/useMediaQueryChange.ts -%%DATADIR%%/public/app/core/hooks/useNavModel.ts -%%DATADIR%%/public/app/core/hooks/useQueryParams.ts -%%DATADIR%%/public/app/core/internationalization/constants.test.ts -%%DATADIR%%/public/app/core/internationalization/constants.ts -%%DATADIR%%/public/app/core/internationalization/index.tsx -%%DATADIR%%/public/app/core/lodash_extended.ts -%%DATADIR%%/public/app/core/logsModel.test.ts -%%DATADIR%%/public/app/core/logsModel.ts -%%DATADIR%%/public/app/core/navigation/GrafanaRoute.test.tsx -%%DATADIR%%/public/app/core/navigation/GrafanaRoute.tsx -%%DATADIR%%/public/app/core/navigation/GrafanaRouteError.tsx -%%DATADIR%%/public/app/core/navigation/GrafanaRouteLoading.tsx -%%DATADIR%%/public/app/core/navigation/RouterDebugger.tsx -%%DATADIR%%/public/app/core/navigation/__mocks__/routeProps.ts -%%DATADIR%%/public/app/core/navigation/errorModels.ts -%%DATADIR%%/public/app/core/navigation/hooks.ts -%%DATADIR%%/public/app/core/navigation/kiosk.ts -%%DATADIR%%/public/app/core/navigation/patch/RouteParamsProvider.ts -%%DATADIR%%/public/app/core/navigation/patch/RouteProvider.ts -%%DATADIR%%/public/app/core/navigation/patch/interceptLinkClicks.ts -%%DATADIR%%/public/app/core/navigation/testRoutes.tsx -%%DATADIR%%/public/app/core/navigation/types.ts -%%DATADIR%%/public/app/core/profiler.ts -%%DATADIR%%/public/app/core/reducers/appNotification.test.ts -%%DATADIR%%/public/app/core/reducers/appNotification.ts -%%DATADIR%%/public/app/core/reducers/index.ts -%%DATADIR%%/public/app/core/reducers/navBarTree.ts -%%DATADIR%%/public/app/core/reducers/navModel.test.ts -%%DATADIR%%/public/app/core/reducers/navModel.ts -%%DATADIR%%/public/app/core/reducers/root.test.ts -%%DATADIR%%/public/app/core/reducers/root.ts -%%DATADIR%%/public/app/core/selectors/navModel.test.ts -%%DATADIR%%/public/app/core/selectors/navModel.ts -%%DATADIR%%/public/app/core/services/FetchQueue.test.ts -%%DATADIR%%/public/app/core/services/FetchQueue.ts -%%DATADIR%%/public/app/core/services/FetchQueueWorker.test.ts -%%DATADIR%%/public/app/core/services/FetchQueueWorker.ts -%%DATADIR%%/public/app/core/services/ModalManager.ts -%%DATADIR%%/public/app/core/services/PreferencesService.ts -%%DATADIR%%/public/app/core/services/ResponseQueue.test.ts -%%DATADIR%%/public/app/core/services/ResponseQueue.ts -%%DATADIR%%/public/app/core/services/StateManagerBase.ts -%%DATADIR%%/public/app/core/services/__mocks__/backend_srv.ts -%%DATADIR%%/public/app/core/services/__mocks__/search_srv.ts -%%DATADIR%%/public/app/core/services/backend_srv.ts -%%DATADIR%%/public/app/core/services/context_srv.ts -%%DATADIR%%/public/app/core/services/echo/Echo.ts -%%DATADIR%%/public/app/core/services/echo/EchoSrv.ts -%%DATADIR%%/public/app/core/services/echo/backends/PerformanceBackend.ts -%%DATADIR%%/public/app/core/services/echo/backends/analytics/ApplicationInsightsBackend.ts -%%DATADIR%%/public/app/core/services/echo/backends/analytics/GA4Backend.ts -%%DATADIR%%/public/app/core/services/echo/backends/analytics/GABackend.ts -%%DATADIR%%/public/app/core/services/echo/backends/analytics/RudderstackBackend.ts -%%DATADIR%%/public/app/core/services/echo/backends/grafana-javascript-agent/EchoSrvTransport.ts -%%DATADIR%%/public/app/core/services/echo/backends/grafana-javascript-agent/GrafanaJavascriptAgentBackend.test.ts -%%DATADIR%%/public/app/core/services/echo/backends/grafana-javascript-agent/GrafanaJavascriptAgentBackend.ts -%%DATADIR%%/public/app/core/services/echo/backends/grafana-javascript-agent/types.ts -%%DATADIR%%/public/app/core/services/echo/backends/sentry/SentryBackend.test.ts -%%DATADIR%%/public/app/core/services/echo/backends/sentry/SentryBackend.ts -%%DATADIR%%/public/app/core/services/echo/backends/sentry/transports/CustomEndpointTransport.test.ts -%%DATADIR%%/public/app/core/services/echo/backends/sentry/transports/CustomEndpointTransport.ts -%%DATADIR%%/public/app/core/services/echo/backends/sentry/transports/EchoSrvTransport.ts -%%DATADIR%%/public/app/core/services/echo/backends/sentry/types.ts -%%DATADIR%%/public/app/core/services/echo/utils.ts -%%DATADIR%%/public/app/core/services/impression_srv.ts -%%DATADIR%%/public/app/core/services/keybindingSrv.ts -%%DATADIR%%/public/app/core/services/theme.ts -%%DATADIR%%/public/app/core/services/withFocusedPanelId.ts -%%DATADIR%%/public/app/core/specs/OrgSwitcher.test.tsx -%%DATADIR%%/public/app/core/specs/TableModel.test.ts -%%DATADIR%%/public/app/core/specs/backend_srv.test.ts -%%DATADIR%%/public/app/core/specs/factors.test.ts -%%DATADIR%%/public/app/core/specs/flatten.test.ts -%%DATADIR%%/public/app/core/specs/impression_srv.test.ts -%%DATADIR%%/public/app/core/specs/rangeutil.test.ts -%%DATADIR%%/public/app/core/specs/store.test.ts -%%DATADIR%%/public/app/core/specs/ticks.test.ts -%%DATADIR%%/public/app/core/specs/time_series.test.ts -%%DATADIR%%/public/app/core/store.ts -%%DATADIR%%/public/app/core/time_series2.ts -%%DATADIR%%/public/app/core/utils/CancelablePromise.ts -%%DATADIR%%/public/app/core/utils/ConfigProvider.tsx -%%DATADIR%%/public/app/core/utils/CorsWorker.ts -%%DATADIR%%/public/app/core/utils/accessControl.ts -%%DATADIR%%/public/app/core/utils/acl.ts -%%DATADIR%%/public/app/core/utils/applyStateChanges.ts -%%DATADIR%%/public/app/core/utils/arrayMove.ts -%%DATADIR%%/public/app/core/utils/browser.test.ts -%%DATADIR%%/public/app/core/utils/browser.ts -%%DATADIR%%/public/app/core/utils/colors.ts -%%DATADIR%%/public/app/core/utils/connectWithReduxStore.tsx -%%DATADIR%%/public/app/core/utils/dag.test.ts -%%DATADIR%%/public/app/core/utils/dag.ts -%%DATADIR%%/public/app/core/utils/deferred.ts -%%DATADIR%%/public/app/core/utils/docsLinks.ts -%%DATADIR%%/public/app/core/utils/errors.test.ts -%%DATADIR%%/public/app/core/utils/errors.ts -%%DATADIR%%/public/app/core/utils/explore.test.ts -%%DATADIR%%/public/app/core/utils/explore.ts -%%DATADIR%%/public/app/core/utils/factors.ts -%%DATADIR%%/public/app/core/utils/fetch.test.ts -%%DATADIR%%/public/app/core/utils/fetch.ts -%%DATADIR%%/public/app/core/utils/flatten.ts -%%DATADIR%%/public/app/core/utils/isShallowEqual.ts -%%DATADIR%%/public/app/core/utils/kbn.test.ts -%%DATADIR%%/public/app/core/utils/kbn.ts -%%DATADIR%%/public/app/core/utils/model_utils.ts -%%DATADIR%%/public/app/core/utils/object.test.ts -%%DATADIR%%/public/app/core/utils/object.ts -%%DATADIR%%/public/app/core/utils/query.test.ts -%%DATADIR%%/public/app/core/utils/query.ts -%%DATADIR%%/public/app/core/utils/richHistory.test.ts -%%DATADIR%%/public/app/core/utils/richHistory.ts -%%DATADIR%%/public/app/core/utils/richHistoryTypes.ts -%%DATADIR%%/public/app/core/utils/set.ts -%%DATADIR%%/public/app/core/utils/sheet.ts -%%DATADIR%%/public/app/core/utils/shortLinks.test.ts -%%DATADIR%%/public/app/core/utils/shortLinks.ts -%%DATADIR%%/public/app/core/utils/ticks.ts -%%DATADIR%%/public/app/core/utils/timePicker.test.ts -%%DATADIR%%/public/app/core/utils/timePicker.ts -%%DATADIR%%/public/app/core/utils/timeRegions.test.ts -%%DATADIR%%/public/app/core/utils/timeRegions.ts -%%DATADIR%%/public/app/core/utils/tracing.ts -%%DATADIR%%/public/app/core/utils/urlToken.ts -%%DATADIR%%/public/app/core/utils/version.ts -%%DATADIR%%/public/app/dev.ts -%%DATADIR%%/public/app/features/admin/AdminEditOrgPage.tsx -%%DATADIR%%/public/app/features/admin/AdminListOrgsPage.tsx -%%DATADIR%%/public/app/features/admin/AdminOrgsTable.tsx -%%DATADIR%%/public/app/features/admin/AdminSettings.tsx -%%DATADIR%%/public/app/features/admin/LicenseChrome.tsx -%%DATADIR%%/public/app/features/admin/OrgRolePicker.tsx -%%DATADIR%%/public/app/features/admin/ServerStats.test.tsx -%%DATADIR%%/public/app/features/admin/ServerStats.tsx -%%DATADIR%%/public/app/features/admin/UpgradePage.tsx -%%DATADIR%%/public/app/features/admin/UserAdminPage.tsx -%%DATADIR%%/public/app/features/admin/UserCreatePage.tsx -%%DATADIR%%/public/app/features/admin/UserLdapSyncInfo.tsx -%%DATADIR%%/public/app/features/admin/UserListAdminPage.tsx -%%DATADIR%%/public/app/features/admin/UserListPage.tsx -%%DATADIR%%/public/app/features/admin/UserOrgs.tsx -%%DATADIR%%/public/app/features/admin/UserPermissions.tsx -%%DATADIR%%/public/app/features/admin/UserProfile.tsx -%%DATADIR%%/public/app/features/admin/UserSessions.tsx -%%DATADIR%%/public/app/features/admin/ldap/LdapConnectionStatus.tsx -%%DATADIR%%/public/app/features/admin/ldap/LdapPage.tsx -%%DATADIR%%/public/app/features/admin/ldap/LdapSyncInfo.tsx -%%DATADIR%%/public/app/features/admin/ldap/LdapUserGroups.tsx -%%DATADIR%%/public/app/features/admin/ldap/LdapUserInfo.tsx -%%DATADIR%%/public/app/features/admin/ldap/LdapUserMappingInfo.tsx -%%DATADIR%%/public/app/features/admin/ldap/LdapUserPermissions.tsx -%%DATADIR%%/public/app/features/admin/ldap/LdapUserTeams.tsx -%%DATADIR%%/public/app/features/admin/partials/admin_home.html -%%DATADIR%%/public/app/features/admin/partials/edit_org.html -%%DATADIR%%/public/app/features/admin/partials/stats.html -%%DATADIR%%/public/app/features/admin/partials/styleguide.html -%%DATADIR%%/public/app/features/admin/state/actions.ts -%%DATADIR%%/public/app/features/admin/state/apis.tsx -%%DATADIR%%/public/app/features/admin/state/reducers.test.ts -%%DATADIR%%/public/app/features/admin/state/reducers.ts -%%DATADIR%%/public/app/features/admin/utils.ts -%%DATADIR%%/public/app/features/alerting/AlertHowToModal.tsx -%%DATADIR%%/public/app/features/alerting/AlertRuleItem.test.tsx -%%DATADIR%%/public/app/features/alerting/AlertRuleItem.tsx -%%DATADIR%%/public/app/features/alerting/AlertRuleList.test.tsx -%%DATADIR%%/public/app/features/alerting/AlertRuleList.tsx -%%DATADIR%%/public/app/features/alerting/AlertTab.tsx -%%DATADIR%%/public/app/features/alerting/AlertTabCtrl.test.ts -%%DATADIR%%/public/app/features/alerting/AlertTabCtrl.ts -%%DATADIR%%/public/app/features/alerting/AlertTabIndex.tsx -%%DATADIR%%/public/app/features/alerting/EditNotificationChannelPage.tsx -%%DATADIR%%/public/app/features/alerting/FeatureTogglePage.tsx -%%DATADIR%%/public/app/features/alerting/NewNotificationChannelPage.tsx -%%DATADIR%%/public/app/features/alerting/NotificationsListPage.tsx -%%DATADIR%%/public/app/features/alerting/StateHistory.tsx -%%DATADIR%%/public/app/features/alerting/TestRuleResult.test.tsx -%%DATADIR%%/public/app/features/alerting/TestRuleResult.tsx -%%DATADIR%%/public/app/features/alerting/components/BasicSettings.tsx -%%DATADIR%%/public/app/features/alerting/components/ChannelSettings.tsx -%%DATADIR%%/public/app/features/alerting/components/DeprecationNotice.tsx -%%DATADIR%%/public/app/features/alerting/components/NotificationChannelForm.tsx -%%DATADIR%%/public/app/features/alerting/components/NotificationChannelOptions.tsx -%%DATADIR%%/public/app/features/alerting/components/NotificationSettings.tsx -%%DATADIR%%/public/app/features/alerting/components/OptionElement.tsx -%%DATADIR%%/public/app/features/alerting/getAlertingValidationMessage.test.ts -%%DATADIR%%/public/app/features/alerting/getAlertingValidationMessage.ts -%%DATADIR%%/public/app/features/alerting/partials/alert_tab.html -%%DATADIR%%/public/app/features/alerting/routes.tsx -%%DATADIR%%/public/app/features/alerting/state/ThresholdMapper.test.ts -%%DATADIR%%/public/app/features/alerting/state/ThresholdMapper.ts -%%DATADIR%%/public/app/features/alerting/state/actions.ts -%%DATADIR%%/public/app/features/alerting/state/alertDef.ts -%%DATADIR%%/public/app/features/alerting/state/query_part.ts -%%DATADIR%%/public/app/features/alerting/state/reducers.test.ts -%%DATADIR%%/public/app/features/alerting/state/reducers.ts -%%DATADIR%%/public/app/features/alerting/state/selectors.test.ts -%%DATADIR%%/public/app/features/alerting/state/selectors.ts -%%DATADIR%%/public/app/features/alerting/unified/Admin.tsx -%%DATADIR%%/public/app/features/alerting/unified/AlertGroups.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/AlertGroups.tsx -%%DATADIR%%/public/app/features/alerting/unified/AlertWarning.tsx -%%DATADIR%%/public/app/features/alerting/unified/AlertsFolderView.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/AlertsFolderView.tsx -%%DATADIR%%/public/app/features/alerting/unified/Analytics.test.ts -%%DATADIR%%/public/app/features/alerting/unified/Analytics.ts -%%DATADIR%%/public/app/features/alerting/unified/CloneRuleEditor.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/CloneRuleEditor.tsx -%%DATADIR%%/public/app/features/alerting/unified/ExistingRuleEditor.tsx -%%DATADIR%%/public/app/features/alerting/unified/GrafanaRuleQueryViewer.tsx -%%DATADIR%%/public/app/features/alerting/unified/Home.tsx -%%DATADIR%%/public/app/features/alerting/unified/MuteTimings.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/MuteTimings.tsx -%%DATADIR%%/public/app/features/alerting/unified/NotificationPolicies.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/NotificationPolicies.tsx -%%DATADIR%%/public/app/features/alerting/unified/PanelAlertTab.tsx -%%DATADIR%%/public/app/features/alerting/unified/PanelAlertTabContent.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/PanelAlertTabContent.tsx -%%DATADIR%%/public/app/features/alerting/unified/Receivers.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/Receivers.tsx -%%DATADIR%%/public/app/features/alerting/unified/RedirectToRuleViewer.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/RedirectToRuleViewer.tsx -%%DATADIR%%/public/app/features/alerting/unified/RuleEditor.tsx -%%DATADIR%%/public/app/features/alerting/unified/RuleEditorCloudOnlyAllowed.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/RuleEditorCloudRules.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/RuleEditorExisting.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/RuleEditorGrafanaRules.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/RuleEditorRecordingRule.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/RuleList.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/RuleList.tsx -%%DATADIR%%/public/app/features/alerting/unified/RuleViewer.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/RuleViewer.tsx -%%DATADIR%%/public/app/features/alerting/unified/Silences.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/Silences.tsx -%%DATADIR%%/public/app/features/alerting/unified/TODO.md -%%DATADIR%%/public/app/features/alerting/unified/__snapshots__/PanelAlertTabContent.test.tsx.snap -%%DATADIR%%/public/app/features/alerting/unified/api/alertingApi.ts -%%DATADIR%%/public/app/features/alerting/unified/api/alertmanager.ts -%%DATADIR%%/public/app/features/alerting/unified/api/alertmanagerApi.ts -%%DATADIR%%/public/app/features/alerting/unified/api/annotations.test.ts -%%DATADIR%%/public/app/features/alerting/unified/api/annotations.ts -%%DATADIR%%/public/app/features/alerting/unified/api/buildInfo.test.ts -%%DATADIR%%/public/app/features/alerting/unified/api/buildInfo.ts -%%DATADIR%%/public/app/features/alerting/unified/api/dashboardApi.ts -%%DATADIR%%/public/app/features/alerting/unified/api/featureDiscoveryApi.ts -%%DATADIR%%/public/app/features/alerting/unified/api/grafana.test.ts -%%DATADIR%%/public/app/features/alerting/unified/api/grafana.ts -%%DATADIR%%/public/app/features/alerting/unified/api/onCallApi.ts -%%DATADIR%%/public/app/features/alerting/unified/api/preview.ts -%%DATADIR%%/public/app/features/alerting/unified/api/prometheus.ts -%%DATADIR%%/public/app/features/alerting/unified/api/receiversApi.ts -%%DATADIR%%/public/app/features/alerting/unified/api/ruler.test.ts -%%DATADIR%%/public/app/features/alerting/unified/api/ruler.ts -%%DATADIR%%/public/app/features/alerting/unified/components/AlertLabel.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/AlertLabelDropdown.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/AlertLabels.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/AlertManagerPicker.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/AlertingPageWrapper.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/AnnotationDetailsField.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/Authorize.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/CollapseToggle.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/CollapseToggle.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/DetailsField.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/DynamicTable.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/DynamicTableWithGuidelines.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/EmptyArea.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/EmptyAreaWithCTA.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/Expression.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/Expression.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/GrafanaAlertmanagerDeliveryWarning.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/GrafanaAlertmanagerDeliveryWarning.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/HoverCard.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/InfoIcon.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/InvalidIntervalWarning.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/Label.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/MetaText.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/NoAlertManagerWarning.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/PanelPluginsButtonGroup.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/PluginBridge.mock.ts -%%DATADIR%%/public/app/features/alerting/unified/components/PluginBridge.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/PluginBridge.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/Provisioning.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/RuleLocation.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/Spacer.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/StateColoredText.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/StateTag.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/Strong.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/Tokenize.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/Well.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/admin/AlertmanagerConfig.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/admin/AlertmanagerConfig.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/admin/ExternalAlertmanagerDataSources.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/admin/ExternalAlertmanagers.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/alert-groups/AlertDetails.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/alert-groups/AlertGroup.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/alert-groups/AlertGroupAlertsTable.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/alert-groups/AlertGroupFilter.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/alert-groups/AlertGroupHeader.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/alert-groups/AlertStateFilter.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/alert-groups/GroupBy.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/alert-groups/MatcherFilter.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/alert-groups/MatcherFilter.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/bridges/DeclareIncidentButton.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/expressions/AlertConditionIndicator.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/expressions/Expression.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/expressions/Expression.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/expressions/util.test.ts -%%DATADIR%%/public/app/features/alerting/unified/components/expressions/util.ts -%%DATADIR%%/public/app/features/alerting/unified/components/mute-timings/MuteTimingForm.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/mute-timings/MuteTimingTimeInterval.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/mute-timings/MuteTimingTimeRange.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/mute-timings/MuteTimingsTable.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/notification-policies/AlertGroupsSummary.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/notification-policies/EditDefaultPolicyForm.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/notification-policies/EditDefaultPolicyForm.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/notification-policies/EditNotificationPolicyForm.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/notification-policies/EditNotificationPolicyForm.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/notification-policies/Filters.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/notification-policies/Matchers.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/notification-policies/Modals.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/notification-policies/Policy.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/notification-policies/Policy.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/notification-policies/PromDurationDocs.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/notification-policies/PromDurationInput.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/notification-policies/formStyles.ts -%%DATADIR%%/public/app/features/alerting/unified/components/notification-policies/timingOptions.ts -%%DATADIR%%/public/app/features/alerting/unified/components/panel-alerts-tab/NewRuleFromPanelButton.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/panel-alerts-tab/NewRuleFromPanelButton.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/DuplicateTemplateView.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/EditReceiverView.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/EditTemplateView.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/GlobalConfigForm.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/NewReceiverView.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/NewTemplateView.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/ReceiversAndTemplatesView.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/ReceiversSection.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/ReceiversTable.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/ReceiversTable.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/TemplateData.ts -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/TemplateDataDocs.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/TemplateEditor.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/TemplateForm.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/TemplatesTable.test.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/TemplatesTable.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/editor/alertManagerSuggestions.ts -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/editor/autocomplete.ts -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/editor/definition.ts -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/editor/language.ts -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/editor/register.ts -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/editor/snippets.ts -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/editor/suggestionDefinition.ts -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/editor/templateDataSuggestions.ts -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/ChannelOptions.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/ChannelSubForm.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/CloudCommonChannelSettings.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/CloudReceiverForm.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/CollapsibleSection.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/GrafanaCommonChannelSettings.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/GrafanaReceiverForm.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/ReceiverForm.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/TestContactPointModal.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/fields/DeletedSubform.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/fields/KeyValueMapInput.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/fields/OptionField.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/fields/StringArrayInput.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/fields/SubformArrayField.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/fields/SubformField.tsx -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/fields/styles.ts -%%DATADIR%%/public/app/features/alerting/unified/components/receivers/form/util.test.ts *** 6231 LINES SKIPPED ***
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202501011101.501B1JHc029398>