Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Jun 2019 15:06:20 +0000 (UTC)
From:      Matthias Fechner <mfechner@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r505286 - in head/www: . grafana6 grafana6/files
Message-ID:  <201906281506.x5SF6Kss028028@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mfechner
Date: Fri Jun 28 15:06:19 2019
New Revision: 505286
URL: https://svnweb.freebsd.org/changeset/ports/505286

Log:
  New version 6.2 based on grafana5 port.
  Changed maintainer to person submitted the patch and did a little bit of cleanup.
  
  https://grafana.com/docs/guides/whats-new-in-v6-2/
  
  PR:		236858
  Submitted by:	hiyorin@gmail.com
  Reviewed by:	mfechner@

Added:
  head/www/grafana6/
     - copied from r505285, head/www/grafana5/
Modified:
  head/www/Makefile
  head/www/grafana6/Makefile
  head/www/grafana6/distinfo
  head/www/grafana6/files/grafana.conf.in
  head/www/grafana6/pkg-plist

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Fri Jun 28 14:43:52 2019	(r505285)
+++ head/www/Makefile	Fri Jun 28 15:06:19 2019	(r505286)
@@ -218,6 +218,7 @@
     SUBDIR += grafana3
     SUBDIR += grafana4
     SUBDIR += grafana5
+    SUBDIR += grafana6
     SUBDIR += grails
     SUBDIR += gregarius
     SUBDIR += groupoffice

Modified: head/www/grafana6/Makefile
==============================================================================
--- head/www/grafana5/Makefile	Fri Jun 28 14:43:52 2019	(r505285)
+++ head/www/grafana6/Makefile	Fri Jun 28 15:06:19 2019	(r505286)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	grafana
-PORTVERSION=	5.4.3
+PORTVERSION=	6.2.1
 DISTVERSIONPREFIX=	v
 CATEGORIES=	www
 MASTER_SITES+=	https://s3-us-west-2.amazonaws.com/grafana-releases/release/:public
@@ -9,11 +9,11 @@ PKGNAMESUFFIX=	${PORTVERSION:C/([0-9]).*/\1/1}
 DISTFILES=	grafana-${PORTVERSION}.linux-amd64${EXTRACT_SUFX}:public
 EXTRACT_ONLY=	${DISTNAME}${EXTRACT_SUFX}
 
-MAINTAINER=	swills@FreeBSD.org
+MAINTAINER=	hiyorin@gmail.com
 COMMENT=	Dashboard and graph editor for multiple data stores
 
 LICENSE=	APACHE20
-LICENSE_FILE=	${WRKSRC}/LICENSE.md
+LICENSE_FILE=	${WRKSRC}/LICENSE
 
 ONLY_FOR_ARCHS=	amd64 i386
 
@@ -24,7 +24,7 @@ USE_RC_SUBR=	grafana
 
 USE_GITHUB=	yes
 GH_SUBDIR=	src/github.com/${PORTNAME}/${PORTNAME}
-TAG=		69c5191
+TAG=		9504db8
 
 GRAFANA_USER?=	grafana
 GRAFANA_GROUP?=	grafana

Modified: head/www/grafana6/distinfo
==============================================================================
--- head/www/grafana5/distinfo	Fri Jun 28 14:43:52 2019	(r505285)
+++ head/www/grafana6/distinfo	Fri Jun 28 15:06:19 2019	(r505286)
@@ -1,5 +1,5 @@
-TIMESTAMP = 1547739985
-SHA256 (grafana-5.4.3.linux-amd64.tar.gz) = cdfb74a4ba0966247661da9fdcfa15482ef6cbfb0342692eaf96d8d6f3d33590
-SIZE (grafana-5.4.3.linux-amd64.tar.gz) = 55228439
-SHA256 (grafana-grafana-v5.4.3_GH0.tar.gz) = c4d2a4723cfd7e5943e42786548ea2ccbc08cd1be80b5f447ef7309d9bd91527
-SIZE (grafana-grafana-v5.4.3_GH0.tar.gz) = 11132809
+TIMESTAMP = 1559205081
+SHA256 (grafana-6.2.1.linux-amd64.tar.gz) = 41f68486d735f0fc8f18450a4cf872cda7160666fd102fe560cf133ba4b1b5fe
+SIZE (grafana-6.2.1.linux-amd64.tar.gz) = 58508207
+SHA256 (grafana-grafana-v6.2.1_GH0.tar.gz) = b3ae6ed9874a8945e5a3c66ff94ef0b7689fa497928f448a0ba0149470d8086d
+SIZE (grafana-grafana-v6.2.1_GH0.tar.gz) = 13300178

Modified: head/www/grafana6/files/grafana.conf.in
==============================================================================
--- head/www/grafana5/files/grafana.conf.in	Fri Jun 28 14:43:52 2019	(r505285)
+++ head/www/grafana6/files/grafana.conf.in	Fri Jun 28 15:06:19 2019	(r505286)
@@ -4,16 +4,19 @@
 # change
 
 # possible values : production, development
-; app_mode = production
+;app_mode = production
 
 # instance name, defaults to HOSTNAME environment variable value or hostname if HOSTNAME var is empty
-; instance_name = ${HOSTNAME}
+;instance_name = ${HOSTNAME}
 
 #################################### Paths ####################################
 [paths]
 # Path to where grafana can store temp files, sessions, and the sqlite3 db (if that is used)
 data = %%GRAFANADATADIR%%
 
+# Temporary files in `data` directory older than given duration will be removed
+;temp_data_lifetime = 24h
+
 # Directory where grafana can store logs
 logs = %%GRAFANALOGDIR%%
 
@@ -64,7 +67,7 @@ provisioning = %%GRAFANAPROVISIONINGDIR%%
 #################################### Database ####################################
 [database]
 # You can configure the database connection by specifying type, host, name, user and password
-# as seperate properties or as on string using the url propertie.
+# as separate properties or as on string using the url properties.
 
 # Either "mysql", "postgres" or "sqlite3", it's your choice
 ;type = sqlite3
@@ -90,9 +93,26 @@ provisioning = %%GRAFANAPROVISIONINGDIR%%
 # Max conn setting default is 0 (mean not set)
 ;max_open_conn =
 
+# Connection Max Lifetime default is 14400 (means 14400 seconds or 4 hours)
+;conn_max_lifetime = 14400
+
 # Set to true to log the sql calls and execution times.
 log_queries =
 
+# For "sqlite3" only. cache mode setting used for connecting to the database. (private, shared)
+;cache_mode = private
+
+#################################### Cache server #############################
+[remote_cache]
+# Either "redis", "memcached" or "database" default is "database"
+;type = database
+
+# cache connectionstring options
+# database: will use Grafana primary database.
+# redis: config like redis server e.g. `addr=127.0.0.1:6379,pool_size=100,db=grafana`
+# memcache: 127.0.0.1:11211
+;connstr =
+
 #################################### Session ####################################
 [session]
 # Either "memory", "file", "redis", "mysql", "postgres", default is "file"
@@ -112,7 +132,7 @@ log_queries =
 # If you use session in https only, default is false
 ;cookie_secure = false
 
-# Session life time, default is 86400
+# Session life time, default is 86400 (means 86400 seconds or 24 hours)
 ;session_life_time = 86400
 
 #################################### Data proxy ###########################
@@ -121,7 +141,12 @@ log_queries =
 # This enables data proxy logging, default is false
 ;logging = false
 
+# How long the data proxy should wait before timing out default is 30 (seconds)
+;timeout = 30
 
+# If enabled and user is not anonymous, data proxy will add X-Grafana-User header with username into the request, default is false.
+;send_user_header = false
+
 #################################### Analytics ####################################
 [analytics]
 # Server reporting, sends usage counters to stats.grafana.org every 24 hours.
@@ -140,6 +165,9 @@ log_queries =
 # Google Analytics universal tracking code, only enabled if you specify an id here
 ;google_analytics_ua_id =
 
+# Google Tag Manager ID, only enabled if you specify an id here
+;google_tag_manager_id =
+
 #################################### Security ####################################
 [security]
 # default admin user, created on startup
@@ -151,11 +179,6 @@ log_queries =
 # used for signing
 ;secret_key = SW2YcwTIb9zpOOhoPsMm
 
-# Auto-login remember days
-;login_remember_days = 7
-;cookie_username = grafana_user
-;cookie_remember_name = grafana_remember
-
 # disable gravatar profile images
 ;disable_gravatar = false
 
@@ -165,6 +188,12 @@ log_queries =
 # disable protection against brute force login attempts
 ;disable_brute_force_login_protection = false
 
+# set to true if you host Grafana behind HTTPS. default is false.
+;cookie_secure = false
+
+# set cookie SameSite attribute. defaults to `lax`. can be set to "lax", "strict" and "none"
+;cookie_samesite = lax
+
 #################################### Snapshots ###########################
 [snapshots]
 # snapshot sharing options
@@ -196,6 +225,7 @@ log_queries =
 
 # Background text for the user field on the login page
 ;login_hint = email or username
+;password_hint = password
 
 # Default UI theme ("dark" or "light")
 ;default_theme = dark
@@ -208,14 +238,36 @@ log_queries =
 # Viewers can edit/inspect dashboard settings in the browser. But not save the dashboard.
 ;viewers_can_edit = false
 
+# Editors can administrate dashboard, folders and teams they create
+;editors_can_admin = false
+
 [auth]
+# Login cookie name
+;login_cookie_name = grafana_session
+
+# The lifetime (days) an authenticated user can be inactive before being required to login at next visit. Default is 7 days,
+;login_maximum_inactive_lifetime_days = 7
+
+# The maximum lifetime (days) an authenticated user can be logged in since login time before being required to login. Default is 30 days.
+;login_maximum_lifetime_days = 30
+
+# How often should auth tokens be rotated for authenticated users when being active. The default is each 10 minutes.
+;token_rotation_interval_minutes = 10
+
 # Set to true to disable (hide) the login form, useful if you use OAuth, defaults to false
 ;disable_login_form = false
 
 # Set to true to disable the signout link in the side menu. useful if you use auth.proxy, defaults to false
 ;disable_signout_menu = false
 
-#################################### Anonymous Auth ##########################
+# URL to redirect the user to after sign out
+;signout_redirect_url =
+
+# Set to true to attempt login with OAuth automatically, skipping the login screen.
+# This setting is ignored if multiple OAuth providers are configured.
+;oauth_auto_login = false
+
+#################################### Anonymous Auth ######################
 [auth.anonymous]
 # enable anonymous access
 ;enabled = false
@@ -264,7 +316,15 @@ log_queries =
 ;api_url = https://foo.bar/user
 ;team_ids =
 ;allowed_organizations =
+;tls_skip_verify_insecure = false
+;tls_client_cert =
+;tls_client_key =
+;tls_client_ca =
 
+; Set to true to enable sending client_id and client_secret via POST body instead of Basic authentication HTTP header
+; This might be required if the OAuth provider is not RFC6749 compliant, only supporting credentials passed via POST payload
+;send_client_credentials_via_post = false
+
 #################################### Grafana.com Auth ####################
 [auth.grafana_com]
 ;enabled = false
@@ -282,6 +342,7 @@ log_queries =
 ;auto_sign_up = true
 ;ldap_sync_ttl = 60
 ;whitelist = 192.168.1.1, 192.168.2.1
+;headers = Email:X-User-Email, Name:X-User-Name
 
 #################################### Basic Auth ##########################
 [auth.basic]
@@ -323,7 +384,6 @@ log_queries =
 # optional settings to set different levels for specific loggers. Ex filters = sqlstore:debug
 ;filters =
 
-
 # For "console" mode only
 [log.console]
 ;level =
@@ -369,7 +429,6 @@ log_queries =
 # Syslog tag. By default, the process' argv[0] is used.
 ;tag =
 
-
 #################################### Alerting ############################
 [alerting]
 # Disable alerting engine & UI features
@@ -377,6 +436,31 @@ log_queries =
 # Makes it possible to turn off alert rule execution but alerting UI is visible
 ;execute_alerts = true
 
+# Default setting for new alert rules. Defaults to categorize error and timeouts as alerting. (alerting, keep_state)
+;error_or_timeout = alerting
+
+# Default setting for how Grafana handles nodata or null values in alerting. (alerting, no_data, keep_state, ok)
+;nodata_or_nullvalues = no_data
+
+# Alert notifications can include images, but rendering many images at the same time can overload the server
+# This limit will protect the server from render overloading and make sure notifications are sent out quickly
+;concurrent_render_limit = 5
+
+
+# Default setting for alert calculation timeout. Default value is 30
+;evaluation_timeout_seconds = 30
+
+# Default setting for alert notification timeout. Default value is 30
+;notification_timeout_seconds = 30
+
+# Default setting for max attempts to sending alert notifications. Default value is 3
+;max_attempts = 3
+
+#################################### Explore #############################
+[explore]
+# Enable the Explore section
+;enabled = true
+
 #################################### Internal Grafana Metrics ##########################
 # Metrics available at HTTP API Url /metrics
 [metrics]
@@ -410,7 +494,7 @@ log_queries =
 ;sampler_param = 1
 
 #################################### Grafana.com integration  ##########################
-# Url used to to import dashboards directly from Grafana.com
+# Url used to import dashboards directly from Grafana.com
 [grafana_com]
 ;url = https://grafana.com
 
@@ -445,3 +529,18 @@ log_queries =
 
 [external_image_storage.local]
 # does not require any configuration
+
+[rendering]
+# Options to configure external image rendering server like https://github.com/grafana/grafana-image-renderer
+;server_url =
+;callback_url =
+
+[enterprise]
+# Path to a valid Grafana Enterprise license.jwt file
+;license_path =
+
+[panels]
+;enable_alpha = false
+# If set to true Grafana will allow script tags in text panels. Not recommended as it enable XSS vulnerabilities.
+;disable_sanitize_html = false
+

Modified: head/www/grafana6/pkg-plist
==============================================================================
--- head/www/grafana5/pkg-plist	Fri Jun 28 14:43:52 2019	(r505285)
+++ head/www/grafana6/pkg-plist	Fri Jun 28 15:06:19 2019	(r505286)
@@ -1,5 +1,6 @@
 bin/grafana-cli
 bin/grafana-server
+@sample etc/grafana.conf.sample
 %%DATADIR%%/conf/defaults.ini
 %%DATADIR%%/public/app/app.ts
 %%DATADIR%%/public/app/core/actions/appNotification.ts
@@ -8,22 +9,23 @@ bin/grafana-server
 %%DATADIR%%/public/app/core/actions/navModel.ts
 %%DATADIR%%/public/app/core/angular_wrappers.ts
 %%DATADIR%%/public/app/core/app_events.ts
+%%DATADIR%%/public/app/core/components/AlertBox/AlertBox.tsx
+%%DATADIR%%/public/app/core/components/Animations/FadeIn.tsx
 %%DATADIR%%/public/app/core/components/Animations/SlideDown.tsx
 %%DATADIR%%/public/app/core/components/AppNotifications/AppNotificationItem.tsx
 %%DATADIR%%/public/app/core/components/AppNotifications/AppNotificationList.tsx
-%%DATADIR%%/public/app/core/components/CustomScrollbar/CustomScrollbar.test.tsx
-%%DATADIR%%/public/app/core/components/CustomScrollbar/CustomScrollbar.tsx
-%%DATADIR%%/public/app/core/components/CustomScrollbar/__snapshots__/CustomScrollbar.test.tsx.snap
-%%DATADIR%%/public/app/core/components/DeleteButton/DeleteButton.test.tsx
-%%DATADIR%%/public/app/core/components/DeleteButton/DeleteButton.tsx
-%%DATADIR%%/public/app/core/components/EmptyListCTA/EmptyListCTA.test.tsx
+%%DATADIR%%/public/app/core/components/CopyToClipboard/CopyToClipboard.tsx
 %%DATADIR%%/public/app/core/components/EmptyListCTA/EmptyListCTA.tsx
-%%DATADIR%%/public/app/core/components/EmptyListCTA/__snapshots__/EmptyListCTA.test.tsx.snap
-%%DATADIR%%/public/app/core/components/Label/Label.tsx
+%%DATADIR%%/public/app/core/components/ErrorBoundary/ErrorBoundary.tsx
+%%DATADIR%%/public/app/core/components/FilterInput/FilterInput.tsx
+%%DATADIR%%/public/app/core/components/Footer/Footer.tsx
+%%DATADIR%%/public/app/core/components/JSONFormatter/JSONFormatter.tsx
 %%DATADIR%%/public/app/core/components/LayoutSelector/LayoutSelector.tsx
 %%DATADIR%%/public/app/core/components/OrgActionBar/OrgActionBar.test.tsx
 %%DATADIR%%/public/app/core/components/OrgActionBar/OrgActionBar.tsx
 %%DATADIR%%/public/app/core/components/OrgActionBar/__snapshots__/OrgActionBar.test.tsx.snap
+%%DATADIR%%/public/app/core/components/Page/Page.tsx
+%%DATADIR%%/public/app/core/components/Page/PageContents.tsx
 %%DATADIR%%/public/app/core/components/PageHeader/PageHeader.test.tsx
 %%DATADIR%%/public/app/core/components/PageHeader/PageHeader.tsx
 %%DATADIR%%/public/app/core/components/PageLoader/PageLoader.tsx
@@ -33,47 +35,27 @@ bin/grafana-server
 %%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/Picker/DescriptionOption.tsx
-%%DATADIR%%/public/app/core/components/Picker/DescriptionPicker.tsx
-%%DATADIR%%/public/app/core/components/Picker/IndicatorsContainer.tsx
-%%DATADIR%%/public/app/core/components/Picker/NoOptionsMessage.tsx
-%%DATADIR%%/public/app/core/components/Picker/PickerOption.test.tsx
-%%DATADIR%%/public/app/core/components/Picker/PickerOption.tsx
-%%DATADIR%%/public/app/core/components/Picker/ResetStyles.tsx
-%%DATADIR%%/public/app/core/components/Picker/SimplePicker.tsx
-%%DATADIR%%/public/app/core/components/Picker/TeamPicker.test.tsx
-%%DATADIR%%/public/app/core/components/Picker/TeamPicker.tsx
-%%DATADIR%%/public/app/core/components/Picker/UserPicker.test.tsx
-%%DATADIR%%/public/app/core/components/Picker/UserPicker.tsx
-%%DATADIR%%/public/app/core/components/Picker/__snapshots__/PickerOption.test.tsx.snap
-%%DATADIR%%/public/app/core/components/Picker/__snapshots__/TeamPicker.test.tsx.snap
-%%DATADIR%%/public/app/core/components/Picker/__snapshots__/UserPicker.test.tsx.snap
-%%DATADIR%%/public/app/core/components/ScrollBar/ScrollBar.tsx
+%%DATADIR%%/public/app/core/components/PluginHelp/PluginHelp.tsx
+%%DATADIR%%/public/app/core/components/Select/DataSourcePicker.tsx
+%%DATADIR%%/public/app/core/components/Select/MetricSelect.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/Select/__snapshots__/TeamPicker.test.tsx.snap
+%%DATADIR%%/public/app/core/components/Select/__snapshots__/UserPicker.test.tsx.snap
 %%DATADIR%%/public/app/core/components/SharedPreferences/SharedPreferences.tsx
-%%DATADIR%%/public/app/core/components/Switch/Switch.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/TagFilter/TagValue.tsx
-%%DATADIR%%/public/app/core/components/Tooltip/Popover.test.tsx
-%%DATADIR%%/public/app/core/components/Tooltip/Popover.tsx
-%%DATADIR%%/public/app/core/components/Tooltip/Tooltip.test.tsx
-%%DATADIR%%/public/app/core/components/Tooltip/Tooltip.tsx
-%%DATADIR%%/public/app/core/components/Tooltip/__snapshots__/Popover.test.tsx.snap
-%%DATADIR%%/public/app/core/components/Tooltip/__snapshots__/Tooltip.test.tsx.snap
-%%DATADIR%%/public/app/core/components/Tooltip/withTooltip.tsx
+%%DATADIR%%/public/app/core/components/ToggleButtonGroup/ToggleButtonGroup.tsx
+%%DATADIR%%/public/app/core/components/WithFeatureToggle.tsx
 %%DATADIR%%/public/app/core/components/code_editor/code_editor.ts
 %%DATADIR%%/public/app/core/components/code_editor/theme-grafana-dark.js
-%%DATADIR%%/public/app/core/components/colorpicker/ColorPalette.tsx
-%%DATADIR%%/public/app/core/components/colorpicker/ColorPicker.tsx
-%%DATADIR%%/public/app/core/components/colorpicker/ColorPickerPopover.tsx
-%%DATADIR%%/public/app/core/components/colorpicker/SeriesColorPicker.tsx
-%%DATADIR%%/public/app/core/components/colorpicker/SeriesColorPickerPopover.tsx
-%%DATADIR%%/public/app/core/components/colorpicker/SpectrumPicker.tsx
 %%DATADIR%%/public/app/core/components/colorpicker/spectrum_picker.ts
 %%DATADIR%%/public/app/core/components/dashboard_selector.ts
 %%DATADIR%%/public/app/core/components/form_dropdown/form_dropdown.ts
-%%DATADIR%%/public/app/core/components/gf_page.ts
 %%DATADIR%%/public/app/core/components/help/help.html
 %%DATADIR%%/public/app/core/components/help/help.ts
 %%DATADIR%%/public/app/core/components/info_popover.ts
@@ -88,8 +70,8 @@ bin/grafana-server
 %%DATADIR%%/public/app/core/components/org_switcher.ts
 %%DATADIR%%/public/app/core/components/query_part/query_part.ts
 %%DATADIR%%/public/app/core/components/query_part/query_part_editor.ts
-%%DATADIR%%/public/app/core/components/scroll/page_scroll.ts
 %%DATADIR%%/public/app/core/components/scroll/scroll.ts
+%%DATADIR%%/public/app/core/components/search/SearchField.tsx
 %%DATADIR%%/public/app/core/components/search/SearchResult.tsx
 %%DATADIR%%/public/app/core/components/search/search.html
 %%DATADIR%%/public/app/core/components/search/search.ts
@@ -126,7 +108,6 @@ bin/grafana-server
 %%DATADIR%%/public/app/core/constants.ts
 %%DATADIR%%/public/app/core/controllers/all.ts
 %%DATADIR%%/public/app/core/controllers/error_ctrl.ts
-%%DATADIR%%/public/app/core/controllers/inspect_ctrl.ts
 %%DATADIR%%/public/app/core/controllers/invited_ctrl.ts
 %%DATADIR%%/public/app/core/controllers/json_editor_ctrl.ts
 %%DATADIR%%/public/app/core/controllers/login_ctrl.ts
@@ -136,7 +117,7 @@ bin/grafana-server
 %%DATADIR%%/public/app/core/core.ts
 %%DATADIR%%/public/app/core/core_module.ts
 %%DATADIR%%/public/app/core/directives/array_join.ts
-%%DATADIR%%/public/app/core/directives/dash_class.ts
+%%DATADIR%%/public/app/core/directives/autofill_event_fix.ts
 %%DATADIR%%/public/app/core/directives/diff-view.ts
 %%DATADIR%%/public/app/core/directives/dropdown_typeahead.ts
 %%DATADIR%%/public/app/core/directives/give_focus.ts
@@ -147,6 +128,7 @@ bin/grafana-server
 %%DATADIR%%/public/app/core/directives/tags.ts
 %%DATADIR%%/public/app/core/directives/value_select_dropdown.ts
 %%DATADIR%%/public/app/core/filters/filters.ts
+%%DATADIR%%/public/app/core/hooks/useRefMounted.ts
 %%DATADIR%%/public/app/core/jquery_extended.ts
 %%DATADIR%%/public/app/core/live/live_srv.ts
 %%DATADIR%%/public/app/core/lodash_extended.ts
@@ -161,9 +143,15 @@ bin/grafana-server
 %%DATADIR%%/public/app/core/reducers/location.ts
 %%DATADIR%%/public/app/core/reducers/navModel.ts
 %%DATADIR%%/public/app/core/reducers/processsAclItems.ts
+%%DATADIR%%/public/app/core/redux/actionCreatorFactory.test.ts
+%%DATADIR%%/public/app/core/redux/actionCreatorFactory.ts
+%%DATADIR%%/public/app/core/redux/index.ts
+%%DATADIR%%/public/app/core/redux/reducerFactory.test.ts
+%%DATADIR%%/public/app/core/redux/reducerFactory.ts
 %%DATADIR%%/public/app/core/selectors/location.ts
 %%DATADIR%%/public/app/core/selectors/navModel.ts
 %%DATADIR%%/public/app/core/services/AngularLoader.ts
+%%DATADIR%%/public/app/core/services/__mocks__/backend_srv.ts
 %%DATADIR%%/public/app/core/services/alert_srv.ts
 %%DATADIR%%/public/app/core/services/all.ts
 %%DATADIR%%/public/app/core/services/analytics.ts
@@ -179,15 +167,12 @@ bin/grafana-server
 %%DATADIR%%/public/app/core/services/segment_srv.ts
 %%DATADIR%%/public/app/core/services/timer.ts
 %%DATADIR%%/public/app/core/services/util_srv.ts
-%%DATADIR%%/public/app/core/specs/ColorPalette.test.tsx
 %%DATADIR%%/public/app/core/specs/PasswordStrength.test.tsx
-%%DATADIR%%/public/app/core/specs/__snapshots__/ColorPalette.test.tsx.snap
 %%DATADIR%%/public/app/core/specs/backend_srv.test.ts
-%%DATADIR%%/public/app/core/specs/datemath.test.ts
 %%DATADIR%%/public/app/core/specs/emitter.test.ts
+%%DATADIR%%/public/app/core/specs/factors.test.ts
 %%DATADIR%%/public/app/core/specs/file_export.test.ts
 %%DATADIR%%/public/app/core/specs/flatten.test.ts
-%%DATADIR%%/public/app/core/specs/kbn.test.ts
 %%DATADIR%%/public/app/core/specs/location_util.test.ts
 %%DATADIR%%/public/app/core/specs/logs_model.test.ts
 %%DATADIR%%/public/app/core/specs/manage_dashboards.test.ts
@@ -205,24 +190,31 @@ bin/grafana-server
 %%DATADIR%%/public/app/core/store.ts
 %%DATADIR%%/public/app/core/table_model.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/acl.ts
 %%DATADIR%%/public/app/core/utils/colors.ts
 %%DATADIR%%/public/app/core/utils/connectWithReduxStore.tsx
 %%DATADIR%%/public/app/core/utils/css_loader.ts
 %%DATADIR%%/public/app/core/utils/dag.test.ts
 %%DATADIR%%/public/app/core/utils/dag.ts
-%%DATADIR%%/public/app/core/utils/datemath.ts
 %%DATADIR%%/public/app/core/utils/emitter.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/file_export.ts
 %%DATADIR%%/public/app/core/utils/flatten.ts
 %%DATADIR%%/public/app/core/utils/kbn.ts
 %%DATADIR%%/public/app/core/utils/location_util.ts
 %%DATADIR%%/public/app/core/utils/model_utils.ts
 %%DATADIR%%/public/app/core/utils/outline.ts
-%%DATADIR%%/public/app/core/utils/rangeutil.ts
+%%DATADIR%%/public/app/core/utils/query.test.ts
+%%DATADIR%%/public/app/core/utils/query.ts
 %%DATADIR%%/public/app/core/utils/react2angular.ts
+%%DATADIR%%/public/app/core/utils/reselect.ts
+%%DATADIR%%/public/app/core/utils/scrollbar.ts
 %%DATADIR%%/public/app/core/utils/sort_by_keys.ts
 %%DATADIR%%/public/app/core/utils/tags.ts
 %%DATADIR%%/public/app/core/utils/text.test.ts
@@ -254,11 +246,16 @@ bin/grafana-server
 %%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.ts
 %%DATADIR%%/public/app/features/alerting/NotificationsEditCtrl.ts
 %%DATADIR%%/public/app/features/alerting/NotificationsListCtrl.ts
+%%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/__snapshots__/AlertRuleItem.test.tsx.snap
 %%DATADIR%%/public/app/features/alerting/__snapshots__/AlertRuleList.test.tsx.snap
+%%DATADIR%%/public/app/features/alerting/__snapshots__/TestRuleResult.test.tsx.snap
 %%DATADIR%%/public/app/features/alerting/partials/alert_howto.html
 %%DATADIR%%/public/app/features/alerting/partials/alert_tab.html
 %%DATADIR%%/public/app/features/alerting/partials/notification_edit.html
@@ -276,7 +273,6 @@ bin/grafana-server
 %%DATADIR%%/public/app/features/annotations/annotation_tooltip.ts
 %%DATADIR%%/public/app/features/annotations/annotations_srv.ts
 %%DATADIR%%/public/app/features/annotations/editor_ctrl.ts
-%%DATADIR%%/public/app/features/annotations/event.ts
 %%DATADIR%%/public/app/features/annotations/event_editor.ts
 %%DATADIR%%/public/app/features/annotations/event_manager.ts
 %%DATADIR%%/public/app/features/annotations/events_processing.ts
@@ -296,114 +292,135 @@ bin/grafana-server
 %%DATADIR%%/public/app/features/api-keys/state/reducers.ts
 %%DATADIR%%/public/app/features/api-keys/state/selectors.test.ts
 %%DATADIR%%/public/app/features/api-keys/state/selectors.ts
-%%DATADIR%%/public/app/features/dashboard/ad_hoc_filters.ts
-%%DATADIR%%/public/app/features/dashboard/alerting_srv.ts
-%%DATADIR%%/public/app/features/dashboard/all.ts
-%%DATADIR%%/public/app/features/dashboard/change_tracker.ts
-%%DATADIR%%/public/app/features/dashboard/create_folder_ctrl.ts
-%%DATADIR%%/public/app/features/dashboard/dashboard_ctrl.ts
-%%DATADIR%%/public/app/features/dashboard/dashboard_import_ctrl.ts
-%%DATADIR%%/public/app/features/dashboard/dashboard_loader_srv.ts
-%%DATADIR%%/public/app/features/dashboard/dashboard_migration.ts
-%%DATADIR%%/public/app/features/dashboard/dashboard_model.ts
-%%DATADIR%%/public/app/features/dashboard/dashboard_srv.ts
-%%DATADIR%%/public/app/features/dashboard/dashgrid/AddPanelPanel.tsx
+%%DATADIR%%/public/app/features/dashboard/components/AdHocFilters/AdHocFiltersCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/AdHocFilters/index.ts
+%%DATADIR%%/public/app/features/dashboard/components/AddPanelWidget/AddPanelWidget.test.tsx
+%%DATADIR%%/public/app/features/dashboard/components/AddPanelWidget/AddPanelWidget.tsx
+%%DATADIR%%/public/app/features/dashboard/components/AddPanelWidget/_AddPanelWidget.scss
+%%DATADIR%%/public/app/features/dashboard/components/AddPanelWidget/__snapshots__/AddPanelWidget.test.tsx.snap
+%%DATADIR%%/public/app/features/dashboard/components/AddPanelWidget/index.ts
+%%DATADIR%%/public/app/features/dashboard/components/DashExportModal/DashExportCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/DashExportModal/DashboardExporter.test.ts
+%%DATADIR%%/public/app/features/dashboard/components/DashExportModal/DashboardExporter.ts
+%%DATADIR%%/public/app/features/dashboard/components/DashExportModal/index.ts
+%%DATADIR%%/public/app/features/dashboard/components/DashExportModal/template.html
+%%DATADIR%%/public/app/features/dashboard/components/DashLinks/DashLinksContainerCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/DashLinks/DashLinksEditorCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/DashLinks/editor.html
+%%DATADIR%%/public/app/features/dashboard/components/DashLinks/index.ts
+%%DATADIR%%/public/app/features/dashboard/components/DashNav/DashNav.tsx
+%%DATADIR%%/public/app/features/dashboard/components/DashNav/DashNavButton.tsx
+%%DATADIR%%/public/app/features/dashboard/components/DashNav/DashNavTimeControls.tsx
+%%DATADIR%%/public/app/features/dashboard/components/DashNav/index.ts
+%%DATADIR%%/public/app/features/dashboard/components/DashboardPermissions/DashboardPermissions.tsx
+%%DATADIR%%/public/app/features/dashboard/components/DashboardRow/DashboardRow.test.tsx
+%%DATADIR%%/public/app/features/dashboard/components/DashboardRow/DashboardRow.tsx
+%%DATADIR%%/public/app/features/dashboard/components/DashboardRow/index.ts
+%%DATADIR%%/public/app/features/dashboard/components/DashboardSettings/DashboardSettings.tsx
+%%DATADIR%%/public/app/features/dashboard/components/DashboardSettings/SettingsCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/DashboardSettings/index.ts
+%%DATADIR%%/public/app/features/dashboard/components/DashboardSettings/template.html
+%%DATADIR%%/public/app/features/dashboard/components/ExportDataModal/ExportDataModalCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/ExportDataModal/index.ts
+%%DATADIR%%/public/app/features/dashboard/components/ExportDataModal/template.html
+%%DATADIR%%/public/app/features/dashboard/components/FolderPicker/FolderPickerCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/FolderPicker/index.ts
+%%DATADIR%%/public/app/features/dashboard/components/FolderPicker/template.html
+%%DATADIR%%/public/app/features/dashboard/components/RowOptions/RowOptionsCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/RowOptions/index.ts
+%%DATADIR%%/public/app/features/dashboard/components/RowOptions/template.html
+%%DATADIR%%/public/app/features/dashboard/components/SaveModals/SaveDashboardAsModalCtrl.test.ts
+%%DATADIR%%/public/app/features/dashboard/components/SaveModals/SaveDashboardAsModalCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/SaveModals/SaveDashboardModalCtrl.test.ts
+%%DATADIR%%/public/app/features/dashboard/components/SaveModals/SaveDashboardModalCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/SaveModals/SaveProvisionedDashboardModalCtrl.test.ts
+%%DATADIR%%/public/app/features/dashboard/components/SaveModals/SaveProvisionedDashboardModalCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/SaveModals/index.ts
+%%DATADIR%%/public/app/features/dashboard/components/ShareModal/ShareModalCtrl.test.ts
+%%DATADIR%%/public/app/features/dashboard/components/ShareModal/ShareModalCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/ShareModal/ShareSnapshotCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/ShareModal/index.ts
+%%DATADIR%%/public/app/features/dashboard/components/ShareModal/template.html
+%%DATADIR%%/public/app/features/dashboard/components/SubMenu/SubMenu.tsx
+%%DATADIR%%/public/app/features/dashboard/components/SubMenu/SubMenuCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/SubMenu/index.ts
+%%DATADIR%%/public/app/features/dashboard/components/SubMenu/template.html
+%%DATADIR%%/public/app/features/dashboard/components/TimePicker/TimePickerCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/TimePicker/index.ts
+%%DATADIR%%/public/app/features/dashboard/components/TimePicker/settings.html
+%%DATADIR%%/public/app/features/dashboard/components/TimePicker/template.html
+%%DATADIR%%/public/app/features/dashboard/components/TimePicker/validation.ts
+%%DATADIR%%/public/app/features/dashboard/components/UnsavedChangesModal/UnsavedChangesModalCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/UnsavedChangesModal/index.ts
+%%DATADIR%%/public/app/features/dashboard/components/VersionHistory/HistoryListCtrl.test.ts
+%%DATADIR%%/public/app/features/dashboard/components/VersionHistory/HistoryListCtrl.ts
+%%DATADIR%%/public/app/features/dashboard/components/VersionHistory/HistorySrv.test.ts
+%%DATADIR%%/public/app/features/dashboard/components/VersionHistory/HistorySrv.ts
+%%DATADIR%%/public/app/features/dashboard/components/VersionHistory/__mocks__/history.ts
+%%DATADIR%%/public/app/features/dashboard/components/VersionHistory/index.ts
+%%DATADIR%%/public/app/features/dashboard/components/VersionHistory/template.html
+%%DATADIR%%/public/app/features/dashboard/containers/DashboardPage.test.tsx
+%%DATADIR%%/public/app/features/dashboard/containers/DashboardPage.tsx
+%%DATADIR%%/public/app/features/dashboard/containers/SoloPanelPage.tsx
+%%DATADIR%%/public/app/features/dashboard/containers/__snapshots__/DashboardPage.test.tsx.snap
+%%DATADIR%%/public/app/features/dashboard/dashgrid/DashboardGrid.test.tsx
 %%DATADIR%%/public/app/features/dashboard/dashgrid/DashboardGrid.tsx
-%%DATADIR%%/public/app/features/dashboard/dashgrid/DashboardGridDirective.ts
 %%DATADIR%%/public/app/features/dashboard/dashgrid/DashboardPanel.tsx
-%%DATADIR%%/public/app/features/dashboard/dashgrid/DashboardRow.tsx
-%%DATADIR%%/public/app/features/dashboard/dashgrid/DataPanel.tsx
+%%DATADIR%%/public/app/features/dashboard/dashgrid/PanelChrome.test.tsx
 %%DATADIR%%/public/app/features/dashboard/dashgrid/PanelChrome.tsx
-%%DATADIR%%/public/app/features/dashboard/dashgrid/PanelEditor.tsx
 %%DATADIR%%/public/app/features/dashboard/dashgrid/PanelHeader/PanelHeader.tsx
+%%DATADIR%%/public/app/features/dashboard/dashgrid/PanelHeader/PanelHeaderCorner.tsx
 %%DATADIR%%/public/app/features/dashboard/dashgrid/PanelHeader/PanelHeaderMenu.tsx
 %%DATADIR%%/public/app/features/dashboard/dashgrid/PanelHeader/PanelHeaderMenuItem.tsx
-%%DATADIR%%/public/app/features/dashboard/dashgrid/PanelLoader.ts
-%%DATADIR%%/public/app/features/dashboard/dashgrid/QueriesTab.tsx
-%%DATADIR%%/public/app/features/dashboard/dashgrid/RowOptions.ts
-%%DATADIR%%/public/app/features/dashboard/dashgrid/VizTypePicker.tsx
-%%DATADIR%%/public/app/features/dashboard/dashlinks/editor.html
-%%DATADIR%%/public/app/features/dashboard/dashlinks/editor.ts
-%%DATADIR%%/public/app/features/dashboard/dashlinks/module.ts
-%%DATADIR%%/public/app/features/dashboard/dashnav/dashnav.html
-%%DATADIR%%/public/app/features/dashboard/dashnav/dashnav.ts
-%%DATADIR%%/public/app/features/dashboard/export/export_modal.html
-%%DATADIR%%/public/app/features/dashboard/export/export_modal.ts
-%%DATADIR%%/public/app/features/dashboard/export/exporter.ts
-%%DATADIR%%/public/app/features/dashboard/export_data/export_data_modal.html
-%%DATADIR%%/public/app/features/dashboard/export_data/export_data_modal.ts
-%%DATADIR%%/public/app/features/dashboard/folder_dashboards_ctrl.ts
-%%DATADIR%%/public/app/features/dashboard/folder_page_loader.ts
-%%DATADIR%%/public/app/features/dashboard/folder_permissions_ctrl.ts
-%%DATADIR%%/public/app/features/dashboard/folder_picker/folder_picker.html
-%%DATADIR%%/public/app/features/dashboard/folder_picker/folder_picker.ts
-%%DATADIR%%/public/app/features/dashboard/history/history.html
-%%DATADIR%%/public/app/features/dashboard/history/history.ts
-%%DATADIR%%/public/app/features/dashboard/history/history_srv.ts
-%%DATADIR%%/public/app/features/dashboard/move_to_folder_modal/move_to_folder.html
-%%DATADIR%%/public/app/features/dashboard/move_to_folder_modal/move_to_folder.ts
-%%DATADIR%%/public/app/features/dashboard/panel_model.ts
-%%DATADIR%%/public/app/features/dashboard/panellinks/link_srv.ts
-%%DATADIR%%/public/app/features/dashboard/panellinks/module.html
-%%DATADIR%%/public/app/features/dashboard/panellinks/module.ts
-%%DATADIR%%/public/app/features/dashboard/panellinks/specs/link_srv.test.ts
-%%DATADIR%%/public/app/features/dashboard/partials/create_folder.html
-%%DATADIR%%/public/app/features/dashboard/partials/dashboard_import.html
-%%DATADIR%%/public/app/features/dashboard/partials/folder_dashboards.html
-%%DATADIR%%/public/app/features/dashboard/partials/folder_permissions.html
-%%DATADIR%%/public/app/features/dashboard/partials/folder_settings.html
-%%DATADIR%%/public/app/features/dashboard/partials/inspector.html
-%%DATADIR%%/public/app/features/dashboard/partials/row_options.html
-%%DATADIR%%/public/app/features/dashboard/partials/shareModal.html
-%%DATADIR%%/public/app/features/dashboard/permissions/DashboardPermissions.tsx
-%%DATADIR%%/public/app/features/dashboard/repeat_option/repeat_option.ts
-%%DATADIR%%/public/app/features/dashboard/save_as_modal.ts
-%%DATADIR%%/public/app/features/dashboard/save_modal.ts
-%%DATADIR%%/public/app/features/dashboard/save_provisioned_modal.ts
-%%DATADIR%%/public/app/features/dashboard/settings/settings.html
-%%DATADIR%%/public/app/features/dashboard/settings/settings.ts
-%%DATADIR%%/public/app/features/dashboard/shareModalCtrl.ts
-%%DATADIR%%/public/app/features/dashboard/share_snapshot_ctrl.ts
-%%DATADIR%%/public/app/features/dashboard/specs/AddPanelPanel.test.tsx
-%%DATADIR%%/public/app/features/dashboard/specs/DashboardRow.test.tsx
-%%DATADIR%%/public/app/features/dashboard/specs/change_tracker.test.ts
-%%DATADIR%%/public/app/features/dashboard/specs/dashboard_import_ctrl.test.ts
-%%DATADIR%%/public/app/features/dashboard/specs/dashboard_migration.test.ts
-%%DATADIR%%/public/app/features/dashboard/specs/dashboard_model.test.ts
-%%DATADIR%%/public/app/features/dashboard/specs/exporter.test.ts
-%%DATADIR%%/public/app/features/dashboard/specs/history_ctrl.test.ts
-%%DATADIR%%/public/app/features/dashboard/specs/history_mocks.ts
-%%DATADIR%%/public/app/features/dashboard/specs/history_srv.test.ts
-%%DATADIR%%/public/app/features/dashboard/specs/repeat.test.ts
-%%DATADIR%%/public/app/features/dashboard/specs/save_as_modal.test.ts
-%%DATADIR%%/public/app/features/dashboard/specs/save_modal.test.ts
-%%DATADIR%%/public/app/features/dashboard/specs/save_provisioned_modal.test.ts
-%%DATADIR%%/public/app/features/dashboard/specs/share_modal_ctrl.test.ts
-%%DATADIR%%/public/app/features/dashboard/specs/time_srv.test.ts
-%%DATADIR%%/public/app/features/dashboard/specs/viewstate_srv.test.ts
+%%DATADIR%%/public/app/features/dashboard/dashgrid/PanelPluginNotFound.tsx
+%%DATADIR%%/public/app/features/dashboard/dashgrid/PanelResizer.tsx
+%%DATADIR%%/public/app/features/dashboard/dashgrid/__snapshots__/DashboardGrid.test.tsx.snap
+%%DATADIR%%/public/app/features/dashboard/index.ts
+%%DATADIR%%/public/app/features/dashboard/panel_editor/DataSourceOption.tsx
+%%DATADIR%%/public/app/features/dashboard/panel_editor/EditorTabBody.tsx
+%%DATADIR%%/public/app/features/dashboard/panel_editor/GeneralTab.tsx
+%%DATADIR%%/public/app/features/dashboard/panel_editor/PanelEditor.tsx
+%%DATADIR%%/public/app/features/dashboard/panel_editor/QueriesTab.tsx
+%%DATADIR%%/public/app/features/dashboard/panel_editor/QueryEditorRow.test.ts
+%%DATADIR%%/public/app/features/dashboard/panel_editor/QueryEditorRow.tsx
+%%DATADIR%%/public/app/features/dashboard/panel_editor/QueryInspector.tsx
+%%DATADIR%%/public/app/features/dashboard/panel_editor/QueryOptions.tsx
+%%DATADIR%%/public/app/features/dashboard/panel_editor/VisualizationTab.tsx
+%%DATADIR%%/public/app/features/dashboard/panel_editor/VizPickerSearch.tsx
+%%DATADIR%%/public/app/features/dashboard/panel_editor/VizTypePicker.tsx
+%%DATADIR%%/public/app/features/dashboard/panel_editor/VizTypePickerPlugin.tsx
+%%DATADIR%%/public/app/features/dashboard/services/ChangeTracker.test.ts
+%%DATADIR%%/public/app/features/dashboard/services/ChangeTracker.ts
+%%DATADIR%%/public/app/features/dashboard/services/DashboardLoaderSrv.ts
+%%DATADIR%%/public/app/features/dashboard/services/DashboardSrv.ts
+%%DATADIR%%/public/app/features/dashboard/services/TimeSrv.test.ts
+%%DATADIR%%/public/app/features/dashboard/services/TimeSrv.ts
+%%DATADIR%%/public/app/features/dashboard/services/UnsavedChangesSrv.ts
+%%DATADIR%%/public/app/features/dashboard/state/DashboardMigrator.test.ts
+%%DATADIR%%/public/app/features/dashboard/state/DashboardMigrator.ts
+%%DATADIR%%/public/app/features/dashboard/state/DashboardModel.repeat.test.ts
+%%DATADIR%%/public/app/features/dashboard/state/DashboardModel.test.ts
+%%DATADIR%%/public/app/features/dashboard/state/DashboardModel.ts
+%%DATADIR%%/public/app/features/dashboard/state/PanelModel.test.ts
+%%DATADIR%%/public/app/features/dashboard/state/PanelModel.ts
+%%DATADIR%%/public/app/features/dashboard/state/PanelQueryRunner.test.ts
+%%DATADIR%%/public/app/features/dashboard/state/PanelQueryRunner.ts
+%%DATADIR%%/public/app/features/dashboard/state/PanelQueryState.test.ts
+%%DATADIR%%/public/app/features/dashboard/state/PanelQueryState.ts
 %%DATADIR%%/public/app/features/dashboard/state/actions.ts
+%%DATADIR%%/public/app/features/dashboard/state/index.ts
+%%DATADIR%%/public/app/features/dashboard/state/initDashboard.test.ts
+%%DATADIR%%/public/app/features/dashboard/state/initDashboard.ts
 %%DATADIR%%/public/app/features/dashboard/state/reducers.test.ts
 %%DATADIR%%/public/app/features/dashboard/state/reducers.ts
-%%DATADIR%%/public/app/features/dashboard/submenu/submenu.html
-%%DATADIR%%/public/app/features/dashboard/submenu/submenu.ts
-%%DATADIR%%/public/app/features/dashboard/time_srv.ts
-%%DATADIR%%/public/app/features/dashboard/timepicker/input_date.ts
-%%DATADIR%%/public/app/features/dashboard/timepicker/settings.html
-%%DATADIR%%/public/app/features/dashboard/timepicker/timepicker.html
-%%DATADIR%%/public/app/features/dashboard/timepicker/timepicker.ts
-%%DATADIR%%/public/app/features/dashboard/unsaved_changes_modal.ts
-%%DATADIR%%/public/app/features/dashboard/unsaved_changes_srv.ts
-%%DATADIR%%/public/app/features/dashboard/upload.ts
 %%DATADIR%%/public/app/features/dashboard/utils/getPanelMenu.ts
+%%DATADIR%%/public/app/features/dashboard/utils/panel.test.ts
 %%DATADIR%%/public/app/features/dashboard/utils/panel.ts
-%%DATADIR%%/public/app/features/dashboard/validation_srv.ts
-%%DATADIR%%/public/app/features/dashboard/view_state_srv.ts
 %%DATADIR%%/public/app/features/datasources/DashboardsTable.test.tsx
 %%DATADIR%%/public/app/features/datasources/DashboardsTable.tsx
 %%DATADIR%%/public/app/features/datasources/DataSourceDashboards.test.tsx
 %%DATADIR%%/public/app/features/datasources/DataSourceDashboards.tsx
 %%DATADIR%%/public/app/features/datasources/DataSourceList.test.tsx
-%%DATADIR%%/public/app/features/datasources/DataSourceSettings.tsx
 %%DATADIR%%/public/app/features/datasources/DataSourcesList.tsx
 %%DATADIR%%/public/app/features/datasources/DataSourcesListItem.test.tsx
 %%DATADIR%%/public/app/features/datasources/DataSourcesListItem.tsx
@@ -416,29 +433,62 @@ bin/grafana-server
 %%DATADIR%%/public/app/features/datasources/__snapshots__/DataSourceList.test.tsx.snap
 %%DATADIR%%/public/app/features/datasources/__snapshots__/DataSourcesListItem.test.tsx.snap
 %%DATADIR%%/public/app/features/datasources/__snapshots__/DataSourcesListPage.test.tsx.snap
+%%DATADIR%%/public/app/features/datasources/partials/http_settings.html
+%%DATADIR%%/public/app/features/datasources/partials/tls_auth_settings.html
+%%DATADIR%%/public/app/features/datasources/settings/BasicSettings.test.tsx
+%%DATADIR%%/public/app/features/datasources/settings/BasicSettings.tsx
+%%DATADIR%%/public/app/features/datasources/settings/ButtonRow.test.tsx
+%%DATADIR%%/public/app/features/datasources/settings/ButtonRow.tsx
+%%DATADIR%%/public/app/features/datasources/settings/DataSourceSettingsPage.test.tsx
+%%DATADIR%%/public/app/features/datasources/settings/DataSourceSettingsPage.tsx
+%%DATADIR%%/public/app/features/datasources/settings/HttpSettingsCtrl.ts
+%%DATADIR%%/public/app/features/datasources/settings/PluginSettings.tsx
+%%DATADIR%%/public/app/features/datasources/settings/TlsAuthSettingsCtrl.ts
+%%DATADIR%%/public/app/features/datasources/settings/__snapshots__/BasicSettings.test.tsx.snap
+%%DATADIR%%/public/app/features/datasources/settings/__snapshots__/ButtonRow.test.tsx.snap
+%%DATADIR%%/public/app/features/datasources/settings/__snapshots__/DataSourceSettingsPage.test.tsx.snap
 %%DATADIR%%/public/app/features/datasources/state/actions.test.ts
 %%DATADIR%%/public/app/features/datasources/state/actions.ts
 %%DATADIR%%/public/app/features/datasources/state/navModel.ts
+%%DATADIR%%/public/app/features/datasources/state/reducers.test.ts
 %%DATADIR%%/public/app/features/datasources/state/reducers.ts
 %%DATADIR%%/public/app/features/datasources/state/selectors.ts
+%%DATADIR%%/public/app/features/datasources/utils/passwordHandlers.test.ts
+%%DATADIR%%/public/app/features/datasources/utils/passwordHandlers.ts
 %%DATADIR%%/public/app/features/explore/ElapsedTime.tsx
+%%DATADIR%%/public/app/features/explore/Error.tsx
 %%DATADIR%%/public/app/features/explore/ErrorBoundary.tsx
 %%DATADIR%%/public/app/features/explore/Explore.tsx
+%%DATADIR%%/public/app/features/explore/ExploreToolbar.tsx
 %%DATADIR%%/public/app/features/explore/Graph.test.tsx
 %%DATADIR%%/public/app/features/explore/Graph.tsx
+%%DATADIR%%/public/app/features/explore/GraphContainer.tsx
 %%DATADIR%%/public/app/features/explore/JSONViewer.tsx
 %%DATADIR%%/public/app/features/explore/Legend.tsx
+%%DATADIR%%/public/app/features/explore/LogLabel.tsx
+%%DATADIR%%/public/app/features/explore/LogLabelStats.tsx
+%%DATADIR%%/public/app/features/explore/LogLabels.tsx
+%%DATADIR%%/public/app/features/explore/LogMessageAnsi.test.tsx
+%%DATADIR%%/public/app/features/explore/LogMessageAnsi.tsx
+%%DATADIR%%/public/app/features/explore/LogRow.tsx
 %%DATADIR%%/public/app/features/explore/Logs.tsx
+%%DATADIR%%/public/app/features/explore/LogsContainer.tsx
+%%DATADIR%%/public/app/features/explore/NoDataSourceCallToAction.tsx
 %%DATADIR%%/public/app/features/explore/Panel.tsx
 %%DATADIR%%/public/app/features/explore/PlaceholdersBuffer.test.ts
 %%DATADIR%%/public/app/features/explore/PlaceholdersBuffer.ts
+%%DATADIR%%/public/app/features/explore/QueryEditor.tsx
 %%DATADIR%%/public/app/features/explore/QueryField.tsx
+%%DATADIR%%/public/app/features/explore/QueryRow.tsx
 %%DATADIR%%/public/app/features/explore/QueryRows.tsx
 %%DATADIR%%/public/app/features/explore/QueryTransactionStatus.tsx
 %%DATADIR%%/public/app/features/explore/Table.tsx
+%%DATADIR%%/public/app/features/explore/TableContainer.tsx
 %%DATADIR%%/public/app/features/explore/TimePicker.test.tsx
 %%DATADIR%%/public/app/features/explore/TimePicker.tsx
 %%DATADIR%%/public/app/features/explore/Typeahead.tsx
+%%DATADIR%%/public/app/features/explore/TypeaheadInfo.tsx
+%%DATADIR%%/public/app/features/explore/TypeaheadItem.tsx
 %%DATADIR%%/public/app/features/explore/Value.ts
 %%DATADIR%%/public/app/features/explore/Wrapper.tsx
 %%DATADIR%%/public/app/features/explore/__mocks__/mockData.ts
@@ -448,23 +498,47 @@ bin/grafana-server
 %%DATADIR%%/public/app/features/explore/slate-plugins/clear.test.ts
 %%DATADIR%%/public/app/features/explore/slate-plugins/clear.ts
 %%DATADIR%%/public/app/features/explore/slate-plugins/newline.ts
+%%DATADIR%%/public/app/features/explore/slate-plugins/prism/index.tsx
 %%DATADIR%%/public/app/features/explore/slate-plugins/runner.ts
+%%DATADIR%%/public/app/features/explore/state/actionTypes.ts
+%%DATADIR%%/public/app/features/explore/state/actions.test.ts
+%%DATADIR%%/public/app/features/explore/state/actions.ts
+%%DATADIR%%/public/app/features/explore/state/reducers.test.ts
+%%DATADIR%%/public/app/features/explore/state/reducers.ts
+%%DATADIR%%/public/app/features/explore/state/selectors.test.ts
+%%DATADIR%%/public/app/features/explore/state/selectors.ts
 %%DATADIR%%/public/app/features/explore/utils/debounce.ts
 %%DATADIR%%/public/app/features/explore/utils/dom.ts
-%%DATADIR%%/public/app/features/explore/utils/query.ts
+%%DATADIR%%/public/app/features/explore/utils/set.test.ts
+%%DATADIR%%/public/app/features/explore/utils/set.ts
+%%DATADIR%%/public/app/features/explore/utils/typeahead.ts
+%%DATADIR%%/public/app/features/folders/CreateFolderCtrl.ts
+%%DATADIR%%/public/app/features/folders/FolderDashboardsCtrl.ts
 %%DATADIR%%/public/app/features/folders/FolderPermissions.tsx
 %%DATADIR%%/public/app/features/folders/FolderSettingsPage.test.tsx
 %%DATADIR%%/public/app/features/folders/FolderSettingsPage.tsx
 %%DATADIR%%/public/app/features/folders/__snapshots__/FolderSettingsPage.test.tsx.snap
+%%DATADIR%%/public/app/features/folders/partials/create_folder.html
+%%DATADIR%%/public/app/features/folders/partials/folder_dashboards.html
+%%DATADIR%%/public/app/features/folders/services/FolderPageLoader.ts
 %%DATADIR%%/public/app/features/folders/state/actions.ts
 %%DATADIR%%/public/app/features/folders/state/navModel.ts
 %%DATADIR%%/public/app/features/folders/state/reducers.test.ts
 %%DATADIR%%/public/app/features/folders/state/reducers.ts
+%%DATADIR%%/public/app/features/manage-dashboards/DashboardImportCtrl.test.ts
+%%DATADIR%%/public/app/features/manage-dashboards/DashboardImportCtrl.ts
 %%DATADIR%%/public/app/features/manage-dashboards/DashboardListCtrl.ts
 %%DATADIR%%/public/app/features/manage-dashboards/SnapshotListCtrl.ts
+%%DATADIR%%/public/app/features/manage-dashboards/components/MoveToFolderModal/MoveToFolderCtrl.ts
+%%DATADIR%%/public/app/features/manage-dashboards/components/MoveToFolderModal/index.ts
+%%DATADIR%%/public/app/features/manage-dashboards/components/MoveToFolderModal/template.html
+%%DATADIR%%/public/app/features/manage-dashboards/components/UploadDashboard/index.ts
+%%DATADIR%%/public/app/features/manage-dashboards/components/UploadDashboard/uploadDashboardDirective.ts
 %%DATADIR%%/public/app/features/manage-dashboards/index.ts
+%%DATADIR%%/public/app/features/manage-dashboards/partials/dashboard_import.html
 %%DATADIR%%/public/app/features/manage-dashboards/partials/dashboard_list.html
 %%DATADIR%%/public/app/features/manage-dashboards/partials/snapshot_list.html
+%%DATADIR%%/public/app/features/manage-dashboards/services/ValidationSrv.ts
 %%DATADIR%%/public/app/features/org/NewOrgCtrl.ts
 %%DATADIR%%/public/app/features/org/OrgDetailsPage.test.tsx
 %%DATADIR%%/public/app/features/org/OrgDetailsPage.tsx
@@ -480,23 +554,24 @@ bin/grafana-server
 %%DATADIR%%/public/app/features/org/partials/select_org.html
 %%DATADIR%%/public/app/features/org/state/actions.ts
 %%DATADIR%%/public/app/features/org/state/reducers.ts
+%%DATADIR%%/public/app/features/panel/GeneralTabCtrl.ts
 %%DATADIR%%/public/app/features/panel/all.ts
 %%DATADIR%%/public/app/features/panel/metrics_panel_ctrl.ts
-%%DATADIR%%/public/app/features/panel/metrics_tab.ts
 %%DATADIR%%/public/app/features/panel/panel_ctrl.ts
 %%DATADIR%%/public/app/features/panel/panel_directive.ts
 %%DATADIR%%/public/app/features/panel/panel_editor_tab.ts
 %%DATADIR%%/public/app/features/panel/panel_header.ts
-%%DATADIR%%/public/app/features/panel/partials/metrics_tab.html
+%%DATADIR%%/public/app/features/panel/panellinks/link_srv.ts
+%%DATADIR%%/public/app/features/panel/panellinks/module.html
+%%DATADIR%%/public/app/features/panel/panellinks/module.ts
+%%DATADIR%%/public/app/features/panel/panellinks/specs/link_srv.test.ts
+%%DATADIR%%/public/app/features/panel/partials/general_tab.html
 %%DATADIR%%/public/app/features/panel/partials/panelTime.html
 %%DATADIR%%/public/app/features/panel/partials/query_editor_row.html
-%%DATADIR%%/public/app/features/panel/partials/soloPanel.html
 %%DATADIR%%/public/app/features/panel/query_ctrl.ts
 %%DATADIR%%/public/app/features/panel/query_editor_row.ts
-%%DATADIR%%/public/app/features/panel/query_troubleshooter.ts
-%%DATADIR%%/public/app/features/panel/solo_panel_ctrl.ts
+%%DATADIR%%/public/app/features/panel/repeat_option.ts
 %%DATADIR%%/public/app/features/panel/specs/metrics_panel_ctrl.test.ts
-%%DATADIR%%/public/app/features/panel/viz_tab.ts
 %%DATADIR%%/public/app/features/playlist/all.ts
 %%DATADIR%%/public/app/features/playlist/partials/playlist.html
 %%DATADIR%%/public/app/features/playlist/partials/playlist_search.html
@@ -507,13 +582,18 @@ bin/grafana-server
 %%DATADIR%%/public/app/features/playlist/playlist_srv.ts
 %%DATADIR%%/public/app/features/playlist/playlists_ctrl.ts
 %%DATADIR%%/public/app/features/playlist/specs/playlist_edit_ctrl.test.ts
+%%DATADIR%%/public/app/features/playlist/specs/playlist_srv.test.ts
+%%DATADIR%%/public/app/features/plugins/AppRootPage.tsx
+%%DATADIR%%/public/app/features/plugins/PluginDashboards.tsx
 %%DATADIR%%/public/app/features/plugins/PluginList.test.tsx
 %%DATADIR%%/public/app/features/plugins/PluginList.tsx
 %%DATADIR%%/public/app/features/plugins/PluginListItem.test.tsx
 %%DATADIR%%/public/app/features/plugins/PluginListItem.tsx
 %%DATADIR%%/public/app/features/plugins/PluginListPage.test.tsx
 %%DATADIR%%/public/app/features/plugins/PluginListPage.tsx
-%%DATADIR%%/public/app/features/plugins/VariableQueryComponentLoader.tsx
+%%DATADIR%%/public/app/features/plugins/PluginPage.tsx
+%%DATADIR%%/public/app/features/plugins/PluginSettingsCache.ts
+%%DATADIR%%/public/app/features/plugins/PluginStateInfo.tsx
 %%DATADIR%%/public/app/features/plugins/__mocks__/pluginMocks.ts
 %%DATADIR%%/public/app/features/plugins/__snapshots__/PluginList.test.tsx.snap
 %%DATADIR%%/public/app/features/plugins/__snapshots__/PluginListItem.test.tsx.snap
@@ -521,36 +601,33 @@ bin/grafana-server
 %%DATADIR%%/public/app/features/plugins/all.ts
 %%DATADIR%%/public/app/features/plugins/built_in_plugins.ts
 %%DATADIR%%/public/app/features/plugins/datasource_srv.ts
-%%DATADIR%%/public/app/features/plugins/ds_dashboards_ctrl.ts
-%%DATADIR%%/public/app/features/plugins/ds_edit_ctrl.ts
-%%DATADIR%%/public/app/features/plugins/import_list/import_list.html
-%%DATADIR%%/public/app/features/plugins/import_list/import_list.ts
-%%DATADIR%%/public/app/features/plugins/partials/ds_edit.html
-%%DATADIR%%/public/app/features/plugins/partials/ds_http_settings.html
-%%DATADIR%%/public/app/features/plugins/partials/plugin_edit.html
 %%DATADIR%%/public/app/features/plugins/partials/plugin_page.html
 %%DATADIR%%/public/app/features/plugins/partials/update_instructions.html
 %%DATADIR%%/public/app/features/plugins/plugin_component.ts
-%%DATADIR%%/public/app/features/plugins/plugin_edit_ctrl.ts
 %%DATADIR%%/public/app/features/plugins/plugin_loader.ts
 %%DATADIR%%/public/app/features/plugins/plugin_page_ctrl.ts
 %%DATADIR%%/public/app/features/plugins/specs/datasource_srv.test.ts
 %%DATADIR%%/public/app/features/plugins/state/actions.ts
-%%DATADIR%%/public/app/features/plugins/state/navModel.ts
 %%DATADIR%%/public/app/features/plugins/state/reducers.ts
 %%DATADIR%%/public/app/features/plugins/state/selectors.test.ts
 %%DATADIR%%/public/app/features/plugins/state/selectors.ts
+%%DATADIR%%/public/app/features/plugins/variableQueryEditorLoader.tsx
+%%DATADIR%%/public/app/features/plugins/wrappers/AppConfigWrapper.tsx
 %%DATADIR%%/public/app/features/profile/ChangePasswordCtrl.ts
 %%DATADIR%%/public/app/features/profile/PrefControlCtrl.ts
 %%DATADIR%%/public/app/features/profile/ProfileCtrl.ts
 %%DATADIR%%/public/app/features/profile/all.ts
 %%DATADIR%%/public/app/features/profile/partials/change_password.html
 %%DATADIR%%/public/app/features/profile/partials/profile.html
+%%DATADIR%%/public/app/features/profile/state/reducers.ts
+%%DATADIR%%/public/app/features/profile/state/selectors.ts
 %%DATADIR%%/public/app/features/teams/CreateTeamCtrl.ts
 %%DATADIR%%/public/app/features/teams/TeamGroupSync.test.tsx
 %%DATADIR%%/public/app/features/teams/TeamGroupSync.tsx
 %%DATADIR%%/public/app/features/teams/TeamList.test.tsx
 %%DATADIR%%/public/app/features/teams/TeamList.tsx
+%%DATADIR%%/public/app/features/teams/TeamMemberRow.test.tsx
+%%DATADIR%%/public/app/features/teams/TeamMemberRow.tsx
 %%DATADIR%%/public/app/features/teams/TeamMembers.test.tsx
 %%DATADIR%%/public/app/features/teams/TeamMembers.tsx
 %%DATADIR%%/public/app/features/teams/TeamPages.test.tsx
@@ -561,6 +638,7 @@ bin/grafana-server
 %%DATADIR%%/public/app/features/teams/__mocks__/teamMocks.ts
 %%DATADIR%%/public/app/features/teams/__snapshots__/TeamGroupSync.test.tsx.snap
 %%DATADIR%%/public/app/features/teams/__snapshots__/TeamList.test.tsx.snap
+%%DATADIR%%/public/app/features/teams/__snapshots__/TeamMemberRow.test.tsx.snap
 %%DATADIR%%/public/app/features/teams/__snapshots__/TeamMembers.test.tsx.snap
 %%DATADIR%%/public/app/features/teams/__snapshots__/TeamPages.test.tsx.snap
 %%DATADIR%%/public/app/features/teams/__snapshots__/TeamSettings.test.tsx.snap
@@ -592,6 +670,7 @@ bin/grafana-server
 %%DATADIR%%/public/app/features/templating/template_srv.ts
 %%DATADIR%%/public/app/features/templating/variable.ts
 %%DATADIR%%/public/app/features/templating/variable_srv.ts
+%%DATADIR%%/public/app/features/users/InviteeRow.tsx
 %%DATADIR%%/public/app/features/users/InviteesTable.test.tsx
 %%DATADIR%%/public/app/features/users/InviteesTable.tsx
 %%DATADIR%%/public/app/features/users/UsersActionBar.test.tsx
@@ -610,16 +689,27 @@ bin/grafana-server
 %%DATADIR%%/public/app/features/users/state/selectors.ts
 %%DATADIR%%/public/app/index.ts

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906281506.x5SF6Kss028028>