Index: www/grafana5/Makefile =================================================================== --- www/grafana5/Makefile +++ www/grafana5/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= grafana -PORTVERSION= 4.6.2 +PORTVERSION= 5.0.0 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES+= https://s3-us-west-2.amazonaws.com/grafana-releases/release/:public @@ -10,9 +10,10 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= swills@FreeBSD.org -COMMENT= Dashboard and graph editor for Graphite, InfluxDB & OpenTSDB +COMMENT= Dashboard and graph editor for Graphite, ElasticSearch, OpenTSDB, Prometheus, and InfluxDB -LICENSE= APACHE20 +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= ${LOCALBASE}/bin/go:lang/go @@ -24,7 +25,7 @@ USE_GITHUB= yes GH_SUBDIR= src/github.com/${PORTNAME}/${PORTNAME} -TAG= 8db5f08 +TAG= af6e283 GRAFANA_USER?= grafana GRAFANA_GROUP?= grafana @@ -37,7 +38,7 @@ GRAFANALOGDIR= /var/log/${PORTNAME}/ GRAFANAPIDDIR= /var/run/${PORTNAME}/ GRAFANAPLUGINDIR= /var/db/${PORTNAME}/plugins -GRAFANADASHBOARDDIR= /var/db/${PORTNAME}/dashboards +GRAFANAPROVISIONINGDIR= /var/db/${PORTNAME}/provisioning SUB_FILES= grafana grafana.conf SUB_LIST+= GRAFANA_USER=${GRAFANA_USER} \ @@ -47,7 +48,7 @@ GRAFANAPIDDIR=${GRAFANAPIDDIR} \ GRAFANAHOMEDIR=${GRAFANAHOMEDIR} \ GRAFANAPLUGINDIR=${GRAFANAPLUGINDIR} \ - GRAFANADASHBOARDDIR=${GRAFANADASHBOARDDIR} + GRAFANAPROVISIONINGDIR=${GRAFANAPROVISIONINGDIR} PLIST_SUB+= GRAFANAHOMEDIR=${GRAFANAHOMEDIR} @@ -71,7 +72,7 @@ ${MKDIR} ${STAGEDIR}${GRAFANAHOMEDIR} ${MKDIR} ${STAGEDIR}${GRAFANADATADIR} ${MKDIR} ${STAGEDIR}${GRAFANAPLUGINDIR} - ${MKDIR} ${STAGEDIR}${GRAFANADASHBOARDDIR} + ${MKDIR} ${STAGEDIR}${GRAFANAPROVISIONINGDIR} ${MKDIR} ${STAGEDIR}${GRAFANAHOMEDIR}/conf ${MKDIR} ${STAGEDIR}${GRAFANAHOMEDIR}/data ${MKDIR} ${STAGEDIR}${GRAFANAHOMEDIR}/data/log Index: www/grafana5/distinfo =================================================================== --- www/grafana5/distinfo +++ www/grafana5/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1511624784 -SHA256 (grafana-4.6.2.linux-x64.tar.gz) = 8d9ab6cef5ae3157b8d892b74b756d5d4c15851a94d100cedeb64090c2a35b23 -SIZE (grafana-4.6.2.linux-x64.tar.gz) = 47182881 -SHA256 (grafana-grafana-v4.6.2_GH0.tar.gz) = bc80b4f1dae76f5ab19567f68bdd2f803eb595b4fe75fbfe6f0fc6d30c2fdb44 -SIZE (grafana-grafana-v4.6.2_GH0.tar.gz) = 7604618 +TIMESTAMP = 1520366991 +SHA256 (grafana-5.0.0.linux-x64.tar.gz) = 0dd250c02cd745cd8d07ce2652dc901993c5b9e48818a5af0d0f30a6972f54d8 +SIZE (grafana-5.0.0.linux-x64.tar.gz) = 51530668 +SHA256 (grafana-grafana-v5.0.0_GH0.tar.gz) = fe06eeef2d15c019ae777c6a27c6b392a3ccdfb0d63dead67e50f6ff2e34f881 +SIZE (grafana-grafana-v5.0.0_GH0.tar.gz) = 9725517 Index: www/grafana5/files/grafana.conf.in =================================================================== --- www/grafana5/files/grafana.conf.in +++ www/grafana5/files/grafana.conf.in @@ -6,24 +6,26 @@ # possible values : production, development ; app_mode = production +# instance name, defaults to HOSTNAME environment variable value or hostname if HOSTNAME var is empty +; instance_name = ${HOSTNAME} + #################################### Paths #################################### [paths] # Path to where grafana can store temp files, sessions, and the sqlite3 db (if that is used) -# data = %%GRAFANADATADIR%% -# + # Directory where grafana can store logs -# logs = %%GRAFANALOGDIR%% -# + # Directory where grafana will automatically scan and look for plugins -# plugins = %%GRAFANAPLUGINDIR%% -# +# folder that contains provisioning config files that grafana will apply on startup and while running. +provisioning = %%GRAFANAPROVISIONINGDIR%% + #################################### Server #################################### [server] -# Protocol (http or https) +# Protocol (http, https, socket) ;protocol = http # The ip address to bind to, empty will bind to all interfaces @@ -39,14 +41,15 @@ # Prevents DNS rebinding attacks ;enforce_domain = false -# The full public facing url -;root_url = %(protocol)s://%(domain)s:%(http_port)s/ +# The full public facing url you use in browser, used for redirects and emails +# If you use reverse proxy and sub path specify full url (with sub path) +;root_url = http://localhost:3000 # Log web requests ;router_logging = false # the path relative working path -static_root_path = public +;static_root_path = public # enable gzip ;enable_gzip = false @@ -55,21 +58,41 @@ ;cert_file = ;cert_key = +# Unix socket path +;socket = + #################################### 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. + # Either "mysql", "postgres" or "sqlite3", it's your choice ;type = sqlite3 ;host = 127.0.0.1:3306 ;name = grafana ;user = root +# If the password contains # or ; you have to wrap it with triple quotes. Ex """#password;""" ;password = +# Use either URL or the previous fields to configure the database +# Example: mysql://user:secret@host:port/database +;url = + # For "postgres" only, either "disable", "require" or "verify-full" ;ssl_mode = disable # For "sqlite3" only, path relative to data_path setting ;path = grafana.db +# Max idle conn setting default is 2 +;max_idle_conn = 2 + +# Max conn setting default is 0 (mean not set) +;max_open_conn = + +# Set to true to log the sql calls and execution times. +log_queries = + #################################### Session #################################### [session] # Either "memory", "file", "redis", "mysql", "postgres", default is "file" @@ -92,6 +115,13 @@ # Session life time, default is 86400 ;session_life_time = 86400 +#################################### Data proxy ########################### +[dataproxy] + +# This enables data proxy logging, default is false +;logging = false + + #################################### Analytics #################################### [analytics] # Server reporting, sends usage counters to stats.grafana.org every 24 hours. @@ -104,8 +134,8 @@ # for new vesions (grafana itself and plugins), check is used # in some UI views to notify that grafana or plugin update exists # This option does not cause any auto updates, nor send any information -# only a GET request to http://grafana.net to get latest versions -check_for_updates = true +# only a GET request to http://grafana.com to get latest versions +;check_for_updates = true # Google Analytics universal tracking code, only enabled if you specify an id here ;google_analytics_ua_id = @@ -129,16 +159,28 @@ # disable gravatar profile images ;disable_gravatar = false -# data source proxy whitelist (ip_or_domain:port seperated by spaces) +# data source proxy whitelist (ip_or_domain:port separated by spaces) ;data_source_proxy_whitelist = +# disable protection against brute force login attempts +;disable_brute_force_login_protection = false + +#################################### Snapshots ########################### [snapshots] # snapshot sharing options ;external_enabled = true ;external_snapshot_url = https://snapshots-origin.raintank.io ;external_snapshot_name = Publish to snapshot.raintank.io -#################################### Users #################################### +# remove expired snapshot +;snapshot_remove_expired = true + +#################################### Dashboards History ################## +[dashboards] +# Number dashboard versions to keep (per dashboard). Default: 20, Minimum: 1 +;versions_to_keep = 20 + +#################################### Users ############################### [users] # disable user signup / registration ;allow_sign_up = true @@ -155,6 +197,24 @@ # Background text for the user field on the login page ;login_hint = email or username +# Default UI theme ("dark" or "light") +;default_theme = dark + +# External user management, these options affect the organization users view +;external_manage_link_url = +;external_manage_link_name = +;external_manage_info = + +# Viewers can edit/inspect dashboard settings in the browser. But not save the dashboard. +;viewers_can_edit = false + +[auth] +# 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 ########################## [auth.anonymous] # enable anonymous access @@ -169,7 +229,7 @@ #################################### Github Auth ########################## [auth.github] ;enabled = false -;allow_sign_up = false +;allow_sign_up = true ;client_id = some_id ;client_secret = some_secret ;scopes = user:email,read:org @@ -182,7 +242,7 @@ #################################### Google Auth ########################## [auth.google] ;enabled = false -;allow_sign_up = false +;allow_sign_up = true ;client_id = some_client_id ;client_secret = some_client_secret ;scopes = https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email @@ -191,12 +251,37 @@ ;api_url = https://www.googleapis.com/oauth2/v1/userinfo ;allowed_domains = +#################################### Generic OAuth ########################## +[auth.generic_oauth] +;enabled = false +;name = OAuth +;allow_sign_up = true +;client_id = some_id +;client_secret = some_secret +;scopes = user:email,read:org +;auth_url = https://foo.bar/login/oauth/authorize +;token_url = https://foo.bar/login/oauth/access_token +;api_url = https://foo.bar/user +;team_ids = +;allowed_organizations = + +#################################### Grafana.com Auth #################### +[auth.grafana_com] +;enabled = false +;allow_sign_up = true +;client_id = some_id +;client_secret = some_secret +;scopes = user:email +;allowed_organizations = + #################################### Auth Proxy ########################## [auth.proxy] ;enabled = false ;header_name = X-WEBAUTH-USER ;header_property = username ;auto_sign_up = true +;ldap_sync_ttl = 60 +;whitelist = 192.168.1.1, 192.168.2.1 #################################### Basic Auth ########################## [auth.basic] @@ -206,17 +291,22 @@ [auth.ldap] ;enabled = false ;config_file = /etc/grafana/ldap.toml +;allow_sign_up = true #################################### SMTP / Emailing ########################## [smtp] ;enabled = false ;host = localhost:25 ;user = +# If the password contains # or ; you have to wrap it with trippel quotes. Ex """#password;""" ;password = ;cert_file = ;key_file = ;skip_verify = false ;from_address = admin@grafana.localhost +;from_name = Grafana +# EHLO identity in SMTP dialog (defaults to instance_name) +;ehlo_identity = dashboard.example.com [emails] ;welcome_email_on_sign_up = false @@ -224,22 +314,30 @@ #################################### Logging ########################## [log] # Either "console", "file", "syslog". Default is console and file -# Use comma to separate multiple modes, e.g. "console, file" -;mode = console, file +# Use space to separate multiple modes, e.g. "console file" +;mode = console file + +# Either "debug", "info", "warn", "error", "critical", default is "info" +;level = info -# Buffer length of channel, keep it as it is if you don't know what it is. -;buffer_len = 10000 +# optional settings to set different levels for specific loggers. Ex filters = sqlstore:debug +;filters = -# Either "Trace", "Debug", "Info", "Warn", "Error", "Critical", default is "Info" -;level = Info # For "console" mode only [log.console] ;level = +# log line format, valid options are text, console and json +;format = console + # For "file" mode only [log.file] ;level = + +# log line format, valid options are text, console and json +;format = text + # This enables automated log rotate(switch of following options), default is true ;log_rotate = true @@ -247,7 +345,7 @@ ;max_lines = 1000000 # Max size shift of single file, default is 28 means 1 << 28, 256MB -;max_lines_shift = 28 +;max_size_shift = 28 # Segment log daily, default is true ;daily_rotate = true @@ -255,16 +353,95 @@ # Expired days of log file(delete after max days), default is 7 ;max_days = 7 -#################################### AMPQ Event Publisher ########################## -[event_publisher] -;enabled = false -;rabbitmq_url = amqp://localhost/ -;exchange = grafana_events +[log.syslog] +;level = -;#################################### Dashboard JSON files ########################## -[dashboards.json] -;enabled = false -path = %%GRAFANADASHBOARDDIR%% +# log line format, valid options are text, console and json +;format = text + +# Syslog network type and address. This can be udp, tcp, or unix. If left blank, the default unix endpoints will be used. +;network = +;address = + +# Syslog facility. user, daemon and local0 through local7 are valid. +;facility = +# Syslog tag. By default, the process' argv[0] is used. +;tag = + + +#################################### Alerting ############################ +[alerting] +# Disable alerting engine & UI features +;enabled = true +# Makes it possible to turn off alert rule execution but alerting UI is visible +;execute_alerts = true + +#################################### Internal Grafana Metrics ########################## +# Metrics available at HTTP API Url /metrics +[metrics] +# Disable / Enable internal metrics +;enabled = true + +# Publish interval +;interval_seconds = 10 + +# Send internal metrics to Graphite +[metrics.graphite] +# Enable by setting the address setting (ex localhost:2003) +;address = +;prefix = prod.grafana.%(instance_name)s. + +#################################### Distributed tracing ############ +[tracing.jaeger] +# Enable by setting the address sending traces to jaeger (ex localhost:6831) +;address = localhost:6831 +# Tag that will always be included in when creating new spans. ex (tag1:value1,tag2:value2) +;always_included_tag = tag1:value1 +# Type specifies the type of the sampler: const, probabilistic, rateLimiting, or remote +;sampler_type = const +# jaeger samplerconfig param +# for "const" sampler, 0 or 1 for always false/true respectively +# for "probabilistic" sampler, a probability between 0 and 1 +# for "rateLimiting" sampler, the number of spans per second +# for "remote" sampler, param is the same as for "probabilistic" +# and indicates the initial sampling rate before the actual one +# is received from the mothership +;sampler_param = 1 + +#################################### Grafana.com integration ########################## +# Url used to to import dashboards directly from Grafana.com +[grafana_com] +;url = https://grafana.com + +#################################### External image storage ########################## +[external_image_storage] +# Used for uploading images to public servers so they can be included in slack/email messages. +# you can choose between (s3, webdav, gcs, azure_blob, local) +;provider = + +[external_image_storage.s3] +;bucket = +;region = +;path = +;access_key = +;secret_key = + +[external_image_storage.webdav] +;url = +;public_url = +;username = +;password = + +[external_image_storage.gcs] +;key_file = +;bucket = +;path = +[external_image_storage.azure_blob] +;account_name = +;account_key = +;container_name = +[external_image_storage.local] +# does not require any configuration Index: www/grafana5/pkg-descr =================================================================== --- www/grafana5/pkg-descr +++ www/grafana5/pkg-descr @@ -1,4 +1,4 @@ -Grafana is an open source, feature rich metrics dashboard -and graph editor for Graphite, InfluxDB & OpenTSDB. +Grafana is an open source, feature rich metrics dashboard and graph editor for +Graphite, ElasticSearch, OpenTSDB, Prometheus and InfluxDB. WWW: https://github.com/grafana/grafana Index: www/grafana5/pkg-plist =================================================================== --- www/grafana5/pkg-plist +++ www/grafana5/pkg-plist @@ -1,10 +1,60 @@ bin/grafana-cli bin/grafana-server -@sample etc/grafana.conf.sample %%DATADIR%%/conf/defaults.ini %%DATADIR%%/public/app/app.ts +%%DATADIR%%/public/app/containers/AlertRuleList/AlertRuleList.jest.tsx +%%DATADIR%%/public/app/containers/AlertRuleList/AlertRuleList.tsx +%%DATADIR%%/public/app/containers/AlertRuleList/__snapshots__/AlertRuleList.jest.tsx.snap +%%DATADIR%%/public/app/containers/IContainerProps.ts +%%DATADIR%%/public/app/containers/ManageDashboards/FolderPermissions.tsx +%%DATADIR%%/public/app/containers/ManageDashboards/FolderSettings.jest.tsx +%%DATADIR%%/public/app/containers/ManageDashboards/FolderSettings.tsx +%%DATADIR%%/public/app/containers/ServerStats/ServerStats.jest.tsx +%%DATADIR%%/public/app/containers/ServerStats/ServerStats.tsx +%%DATADIR%%/public/app/containers/ServerStats/__snapshots__/ServerStats.jest.tsx.snap +%%DATADIR%%/public/app/core/angular_wrappers.ts %%DATADIR%%/public/app/core/app_events.ts +%%DATADIR%%/public/app/core/components/Animations/SlideDown.tsx +%%DATADIR%%/public/app/core/components/EmptyListCTA/EmptyListCTA.jest.tsx +%%DATADIR%%/public/app/core/components/EmptyListCTA/EmptyListCTA.tsx +%%DATADIR%%/public/app/core/components/EmptyListCTA/__snapshots__/EmptyListCTA.jest.tsx.snap +%%DATADIR%%/public/app/core/components/Login/LoginBackground.tsx +%%DATADIR%%/public/app/core/components/PageHeader/PageHeader.jest.tsx +%%DATADIR%%/public/app/core/components/PageHeader/PageHeader.tsx %%DATADIR%%/public/app/core/components/PasswordStrength.tsx +%%DATADIR%%/public/app/core/components/Permissions/AddPermissions.jest.tsx +%%DATADIR%%/public/app/core/components/Permissions/AddPermissions.tsx +%%DATADIR%%/public/app/core/components/Permissions/DashboardPermissions.tsx +%%DATADIR%%/public/app/core/components/Permissions/DisabledPermissionsListItem.tsx +%%DATADIR%%/public/app/core/components/Permissions/FolderInfo.ts +%%DATADIR%%/public/app/core/components/Permissions/Permissions.tsx +%%DATADIR%%/public/app/core/components/Permissions/PermissionsInfo.tsx +%%DATADIR%%/public/app/core/components/Permissions/PermissionsList.tsx +%%DATADIR%%/public/app/core/components/Permissions/PermissionsListItem.tsx +%%DATADIR%%/public/app/core/components/Picker/DescriptionOption.tsx +%%DATADIR%%/public/app/core/components/Picker/DescriptionPicker.tsx +%%DATADIR%%/public/app/core/components/Picker/PickerOption.jest.tsx +%%DATADIR%%/public/app/core/components/Picker/PickerOption.tsx +%%DATADIR%%/public/app/core/components/Picker/TeamPicker.jest.tsx +%%DATADIR%%/public/app/core/components/Picker/TeamPicker.tsx +%%DATADIR%%/public/app/core/components/Picker/UserPicker.jest.tsx +%%DATADIR%%/public/app/core/components/Picker/UserPicker.tsx +%%DATADIR%%/public/app/core/components/Picker/__snapshots__/PickerOption.jest.tsx.snap +%%DATADIR%%/public/app/core/components/Picker/__snapshots__/TeamPicker.jest.tsx.snap +%%DATADIR%%/public/app/core/components/Picker/__snapshots__/UserPicker.jest.tsx.snap +%%DATADIR%%/public/app/core/components/Picker/withPicker.tsx +%%DATADIR%%/public/app/core/components/ScrollBar/ScrollBar.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.jest.tsx +%%DATADIR%%/public/app/core/components/Tooltip/Popover.tsx +%%DATADIR%%/public/app/core/components/Tooltip/Tooltip.jest.tsx +%%DATADIR%%/public/app/core/components/Tooltip/Tooltip.tsx +%%DATADIR%%/public/app/core/components/Tooltip/__snapshots__/Popover.jest.tsx.snap +%%DATADIR%%/public/app/core/components/Tooltip/__snapshots__/Tooltip.jest.tsx.snap +%%DATADIR%%/public/app/core/components/Tooltip/withTooltip.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 @@ -15,6 +65,7 @@ %%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/grafana_app.ts %%DATADIR%%/public/app/core/components/help/help.html %%DATADIR%%/public/app/core/components/help/help.ts @@ -23,38 +74,46 @@ %%DATADIR%%/public/app/core/components/json_explorer/json_explorer.ts %%DATADIR%%/public/app/core/components/jsontree/jsontree.ts %%DATADIR%%/public/app/core/components/layout_selector/layout_selector.ts +%%DATADIR%%/public/app/core/components/manage_dashboards/manage_dashboards.html +%%DATADIR%%/public/app/core/components/manage_dashboards/manage_dashboards.ts %%DATADIR%%/public/app/core/components/navbar/navbar.html %%DATADIR%%/public/app/core/components/navbar/navbar.ts +%%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/scroll.ts +%%DATADIR%%/public/app/core/components/search/SearchResult.tsx %%DATADIR%%/public/app/core/components/search/search.html %%DATADIR%%/public/app/core/components/search/search.ts +%%DATADIR%%/public/app/core/components/search/search_results.html +%%DATADIR%%/public/app/core/components/search/search_results.ts %%DATADIR%%/public/app/core/components/sidemenu/sidemenu.html %%DATADIR%%/public/app/core/components/sidemenu/sidemenu.ts %%DATADIR%%/public/app/core/components/switch.ts -%%DATADIR%%/public/app/core/config.js -%%DATADIR%%/public/app/core/controllers/all.js -%%DATADIR%%/public/app/core/controllers/error_ctrl.js -%%DATADIR%%/public/app/core/controllers/inspect_ctrl.js -%%DATADIR%%/public/app/core/controllers/invited_ctrl.js -%%DATADIR%%/public/app/core/controllers/json_editor_ctrl.js -%%DATADIR%%/public/app/core/controllers/login_ctrl.js -%%DATADIR%%/public/app/core/controllers/reset_password_ctrl.js +%%DATADIR%%/public/app/core/components/team_picker.ts +%%DATADIR%%/public/app/core/components/user_picker.ts +%%DATADIR%%/public/app/core/config.ts +%%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 +%%DATADIR%%/public/app/core/controllers/reset_password_ctrl.ts %%DATADIR%%/public/app/core/controllers/signup_ctrl.ts %%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/confirm_click.js %%DATADIR%%/public/app/core/directives/dash_class.js -%%DATADIR%%/public/app/core/directives/dash_edit_link.js %%DATADIR%%/public/app/core/directives/diff-view.ts %%DATADIR%%/public/app/core/directives/dropdown_typeahead.js %%DATADIR%%/public/app/core/directives/give_focus.ts %%DATADIR%%/public/app/core/directives/metric_segment.js -%%DATADIR%%/public/app/core/directives/misc.js -%%DATADIR%%/public/app/core/directives/ng_model_on_blur.js +%%DATADIR%%/public/app/core/directives/misc.ts +%%DATADIR%%/public/app/core/directives/ng_model_on_blur.ts %%DATADIR%%/public/app/core/directives/rebuild_on_change.ts -%%DATADIR%%/public/app/core/directives/tags.js +%%DATADIR%%/public/app/core/directives/tags.ts %%DATADIR%%/public/app/core/directives/value_select_dropdown.js %%DATADIR%%/public/app/core/filters/filters.ts %%DATADIR%%/public/app/core/jquery_extended.js @@ -64,29 +123,43 @@ %%DATADIR%%/public/app/core/nav_model_srv.ts %%DATADIR%%/public/app/core/partials.ts %%DATADIR%%/public/app/core/profiler.ts -%%DATADIR%%/public/app/core/routes/bundle_loader.ts -%%DATADIR%%/public/app/core/routes/dashboard_loaders.js -%%DATADIR%%/public/app/core/routes/routes.ts %%DATADIR%%/public/app/core/services/alert_srv.ts %%DATADIR%%/public/app/core/services/all.js -%%DATADIR%%/public/app/core/services/analytics.js +%%DATADIR%%/public/app/core/services/analytics.ts %%DATADIR%%/public/app/core/services/backend_srv.ts +%%DATADIR%%/public/app/core/services/bridge_srv.ts %%DATADIR%%/public/app/core/services/context_srv.ts %%DATADIR%%/public/app/core/services/dynamic_directive_srv.ts +%%DATADIR%%/public/app/core/services/impression_srv.ts %%DATADIR%%/public/app/core/services/keybindingSrv.ts -%%DATADIR%%/public/app/core/services/keyboard_manager.js +%%DATADIR%%/public/app/core/services/ng_react.ts %%DATADIR%%/public/app/core/services/popover_srv.ts +%%DATADIR%%/public/app/core/services/search_srv.ts %%DATADIR%%/public/app/core/services/segment_srv.js -%%DATADIR%%/public/app/core/services/timer.js +%%DATADIR%%/public/app/core/services/timer.ts %%DATADIR%%/public/app/core/services/util_srv.ts -%%DATADIR%%/public/app/core/settings.js -%%DATADIR%%/public/app/core/specs/PasswordStrength_specs.tsx +%%DATADIR%%/public/app/core/specs/ColorPalette.jest.tsx +%%DATADIR%%/public/app/core/specs/PasswordStrength.jest.tsx +%%DATADIR%%/public/app/core/specs/__snapshots__/ColorPalette.jest.tsx.snap %%DATADIR%%/public/app/core/specs/backend_srv_specs.ts -%%DATADIR%%/public/app/core/specs/time_series_specs.ts +%%DATADIR%%/public/app/core/specs/datemath.jest.ts +%%DATADIR%%/public/app/core/specs/emitter.jest.ts +%%DATADIR%%/public/app/core/specs/file_export.jest.ts +%%DATADIR%%/public/app/core/specs/flatten.jest.ts +%%DATADIR%%/public/app/core/specs/kbn.jest.ts +%%DATADIR%%/public/app/core/specs/location_util.jest.ts +%%DATADIR%%/public/app/core/specs/manage_dashboards.jest.ts +%%DATADIR%%/public/app/core/specs/org_switcher.jest.ts +%%DATADIR%%/public/app/core/specs/rangeutil.jest.ts +%%DATADIR%%/public/app/core/specs/search.jest.ts +%%DATADIR%%/public/app/core/specs/search_results.jest.ts +%%DATADIR%%/public/app/core/specs/search_srv.jest.ts +%%DATADIR%%/public/app/core/specs/store.jest.ts +%%DATADIR%%/public/app/core/specs/table_model.jest.ts +%%DATADIR%%/public/app/core/specs/time_series.jest.ts %%DATADIR%%/public/app/core/specs/value_select_dropdown_specs.ts -%%DATADIR%%/public/app/core/store.js +%%DATADIR%%/public/app/core/store.ts %%DATADIR%%/public/app/core/table_model.ts -%%DATADIR%%/public/app/core/time_series.js %%DATADIR%%/public/app/core/time_series2.ts %%DATADIR%%/public/app/core/utils/colors.ts %%DATADIR%%/public/app/core/utils/css_loader.ts @@ -94,17 +167,21 @@ %%DATADIR%%/public/app/core/utils/emitter.ts %%DATADIR%%/public/app/core/utils/file_export.ts %%DATADIR%%/public/app/core/utils/flatten.ts -%%DATADIR%%/public/app/core/utils/kbn.js +%%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.js +%%DATADIR%%/public/app/core/utils/outline.ts %%DATADIR%%/public/app/core/utils/rangeutil.ts %%DATADIR%%/public/app/core/utils/react2angular.ts %%DATADIR%%/public/app/core/utils/sort_by_keys.ts +%%DATADIR%%/public/app/core/utils/tags.ts %%DATADIR%%/public/app/core/utils/ticks.ts +%%DATADIR%%/public/app/core/utils/url.ts +%%DATADIR%%/public/app/core/utils/version.ts %%DATADIR%%/public/app/features/admin/admin.ts -%%DATADIR%%/public/app/features/admin/adminEditOrgCtrl.js -%%DATADIR%%/public/app/features/admin/adminEditUserCtrl.js -%%DATADIR%%/public/app/features/admin/adminListOrgsCtrl.js +%%DATADIR%%/public/app/features/admin/admin_edit_org_ctrl.ts +%%DATADIR%%/public/app/features/admin/admin_edit_user_ctrl.ts +%%DATADIR%%/public/app/features/admin/admin_list_orgs_ctrl.ts %%DATADIR%%/public/app/features/admin/admin_list_users_ctrl.ts %%DATADIR%%/public/app/features/admin/partials/admin_home.html %%DATADIR%%/public/app/features/admin/partials/edit_org.html @@ -115,13 +192,11 @@ %%DATADIR%%/public/app/features/admin/partials/stats.html %%DATADIR%%/public/app/features/admin/partials/users.html %%DATADIR%%/public/app/features/alerting/alert_def.ts -%%DATADIR%%/public/app/features/alerting/alert_list_ctrl.ts %%DATADIR%%/public/app/features/alerting/alert_tab_ctrl.ts %%DATADIR%%/public/app/features/alerting/all.ts %%DATADIR%%/public/app/features/alerting/notification_edit_ctrl.ts %%DATADIR%%/public/app/features/alerting/notifications_list_ctrl.ts %%DATADIR%%/public/app/features/alerting/partials/alert_howto.html -%%DATADIR%%/public/app/features/alerting/partials/alert_list.html %%DATADIR%%/public/app/features/alerting/partials/alert_tab.html %%DATADIR%%/public/app/features/alerting/partials/notification_edit.html %%DATADIR%%/public/app/features/alerting/partials/notifications_list.html @@ -136,55 +211,75 @@ %%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 %%DATADIR%%/public/app/features/annotations/partials/editor.html %%DATADIR%%/public/app/features/annotations/partials/event_editor.html +%%DATADIR%%/public/app/features/annotations/specs/annotations_srv_specs.jest.ts %%DATADIR%%/public/app/features/annotations/specs/annotations_srv_specs.ts %%DATADIR%%/public/app/features/dashboard/ad_hoc_filters.ts %%DATADIR%%/public/app/features/dashboard/alerting_srv.ts -%%DATADIR%%/public/app/features/dashboard/all.js -%%DATADIR%%/public/app/features/dashboard/dashboardLoaderSrv.js +%%DATADIR%%/public/app/features/dashboard/all.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_list_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/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/PanelContainer.ts +%%DATADIR%%/public/app/features/dashboard/dashgrid/PanelLoader.ts +%%DATADIR%%/public/app/features/dashboard/dashgrid/RowOptions.ts %%DATADIR%%/public/app/features/dashboard/dashnav/dashnav.html %%DATADIR%%/public/app/features/dashboard/dashnav/dashnav.ts -%%DATADIR%%/public/app/features/dashboard/dynamic_dashboard_srv.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/graphiteImportCtrl.js +%%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/folder_settings_ctrl.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/import/dash_import.html -%%DATADIR%%/public/app/features/dashboard/import/dash_import.ts -%%DATADIR%%/public/app/features/dashboard/impression_store.ts -%%DATADIR%%/public/app/features/dashboard/model.ts -%%DATADIR%%/public/app/features/dashboard/partials/addAnnotationModal.html +%%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/partials/create_folder.html +%%DATADIR%%/public/app/features/dashboard/partials/dashboard_import.html +%%DATADIR%%/public/app/features/dashboard/partials/dashboard_list.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/settings.html +%%DATADIR%%/public/app/features/dashboard/partials/row_options.html %%DATADIR%%/public/app/features/dashboard/partials/shareModal.html %%DATADIR%%/public/app/features/dashboard/repeat_option/repeat_option.ts -%%DATADIR%%/public/app/features/dashboard/row/add_panel.html -%%DATADIR%%/public/app/features/dashboard/row/add_panel.ts -%%DATADIR%%/public/app/features/dashboard/row/options.html -%%DATADIR%%/public/app/features/dashboard/row/options.ts -%%DATADIR%%/public/app/features/dashboard/row/row.html -%%DATADIR%%/public/app/features/dashboard/row/row_ctrl.ts -%%DATADIR%%/public/app/features/dashboard/row/row_model.ts %%DATADIR%%/public/app/features/dashboard/save_as_modal.ts %%DATADIR%%/public/app/features/dashboard/save_modal.ts -%%DATADIR%%/public/app/features/dashboard/shareModalCtrl.js -%%DATADIR%%/public/app/features/dashboard/shareSnapshotCtrl.js -%%DATADIR%%/public/app/features/dashboard/specs/dash_import_ctrl_specs.ts -%%DATADIR%%/public/app/features/dashboard/specs/dashboard_model_specs.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/DashboardRow.jest.tsx +%%DATADIR%%/public/app/features/dashboard/specs/dashboard_import_ctrl.jest.ts +%%DATADIR%%/public/app/features/dashboard/specs/dashboard_migration.jest.ts +%%DATADIR%%/public/app/features/dashboard/specs/dashboard_model.jest.ts %%DATADIR%%/public/app/features/dashboard/specs/dashboard_srv_specs.ts -%%DATADIR%%/public/app/features/dashboard/specs/dynamic_dashboard_srv_specs.ts %%DATADIR%%/public/app/features/dashboard/specs/exporter_specs.ts %%DATADIR%%/public/app/features/dashboard/specs/history_ctrl_specs.ts %%DATADIR%%/public/app/features/dashboard/specs/history_mocks.ts %%DATADIR%%/public/app/features/dashboard/specs/history_srv_specs.ts +%%DATADIR%%/public/app/features/dashboard/specs/repeat.jest.ts %%DATADIR%%/public/app/features/dashboard/specs/save_as_modal.jest.ts %%DATADIR%%/public/app/features/dashboard/specs/share_modal_ctrl_specs.ts %%DATADIR%%/public/app/features/dashboard/specs/time_srv_specs.ts @@ -193,26 +288,28 @@ %%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/dropdown.html %%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/unsavedChangesSrv.js %%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/viewStateSrv.js +%%DATADIR%%/public/app/features/dashboard/validation_srv.ts +%%DATADIR%%/public/app/features/dashboard/view_state_srv.ts %%DATADIR%%/public/app/features/dashlinks/editor.html -%%DATADIR%%/public/app/features/dashlinks/module.js -%%DATADIR%%/public/app/features/org/all.js -%%DATADIR%%/public/app/features/org/change_password_ctrl.js -%%DATADIR%%/public/app/features/org/newOrgCtrl.js -%%DATADIR%%/public/app/features/org/orgApiKeysCtrl.js -%%DATADIR%%/public/app/features/org/orgDetailsCtrl.js +%%DATADIR%%/public/app/features/dashlinks/editor.ts +%%DATADIR%%/public/app/features/dashlinks/module.ts +%%DATADIR%%/public/app/features/org/all.ts +%%DATADIR%%/public/app/features/org/change_password_ctrl.ts +%%DATADIR%%/public/app/features/org/create_team_ctrl.ts +%%DATADIR%%/public/app/features/org/new_org_ctrl.ts +%%DATADIR%%/public/app/features/org/org_api_keys_ctrl.ts +%%DATADIR%%/public/app/features/org/org_details_ctrl.ts %%DATADIR%%/public/app/features/org/org_users_ctrl.ts -%%DATADIR%%/public/app/features/org/partials/add_user.html %%DATADIR%%/public/app/features/org/partials/apikeyModal.html %%DATADIR%%/public/app/features/org/partials/change_password.html +%%DATADIR%%/public/app/features/org/partials/create_team.html %%DATADIR%%/public/app/features/org/partials/invite.html %%DATADIR%%/public/app/features/org/partials/newOrg.html %%DATADIR%%/public/app/features/org/partials/orgApiKeys.html @@ -220,17 +317,22 @@ %%DATADIR%%/public/app/features/org/partials/orgUsers.html %%DATADIR%%/public/app/features/org/partials/profile.html %%DATADIR%%/public/app/features/org/partials/select_org.html +%%DATADIR%%/public/app/features/org/partials/team_details.html +%%DATADIR%%/public/app/features/org/partials/teams.html %%DATADIR%%/public/app/features/org/prefs_control.ts %%DATADIR%%/public/app/features/org/profile_ctrl.ts -%%DATADIR%%/public/app/features/org/select_org_ctrl.js -%%DATADIR%%/public/app/features/org/userInviteCtrl.js +%%DATADIR%%/public/app/features/org/select_org_ctrl.ts +%%DATADIR%%/public/app/features/org/specs/team_details_ctrl_specs.ts +%%DATADIR%%/public/app/features/org/team_details_ctrl.ts +%%DATADIR%%/public/app/features/org/teams_ctrl.ts +%%DATADIR%%/public/app/features/org/user_invite_ctrl.ts %%DATADIR%%/public/app/features/panel/all.js %%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_menu.js +%%DATADIR%%/public/app/features/panel/panel_header.ts %%DATADIR%%/public/app/features/panel/partials/metrics_tab.html %%DATADIR%%/public/app/features/panel/partials/panelTime.html %%DATADIR%%/public/app/features/panel/partials/query_editor_row.html @@ -238,11 +340,11 @@ %%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.js -%%DATADIR%%/public/app/features/panellinks/linkSrv.js +%%DATADIR%%/public/app/features/panel/solo_panel_ctrl.ts +%%DATADIR%%/public/app/features/panellinks/link_srv.ts %%DATADIR%%/public/app/features/panellinks/module.html -%%DATADIR%%/public/app/features/panellinks/module.js -%%DATADIR%%/public/app/features/panellinks/specs/link_srv_specs.ts +%%DATADIR%%/public/app/features/panellinks/module.ts +%%DATADIR%%/public/app/features/panellinks/specs/link_srv.jest.ts %%DATADIR%%/public/app/features/playlist/all.js %%DATADIR%%/public/app/features/playlist/partials/playlist.html %%DATADIR%%/public/app/features/playlist/partials/playlist_search.html @@ -255,11 +357,13 @@ %%DATADIR%%/public/app/features/playlist/specs/playlist_edit_ctrl_specs.ts %%DATADIR%%/public/app/features/plugins/all.ts %%DATADIR%%/public/app/features/plugins/built_in_plugins.ts -%%DATADIR%%/public/app/features/plugins/datasource_srv.js +%%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/ds_list_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_dashboards.html %%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/ds_list.html @@ -272,6 +376,7 @@ %%DATADIR%%/public/app/features/plugins/plugin_list_ctrl.ts %%DATADIR%%/public/app/features/plugins/plugin_loader.ts %%DATADIR%%/public/app/features/plugins/plugin_page_ctrl.ts +%%DATADIR%%/public/app/features/plugins/row_ctrl.ts %%DATADIR%%/public/app/features/plugins/specs/datasource_srv_specs.ts %%DATADIR%%/public/app/features/snapshot/all.ts %%DATADIR%%/public/app/features/snapshot/partials/snapshots.html @@ -287,16 +392,16 @@ %%DATADIR%%/public/app/features/templating/interval_variable.ts %%DATADIR%%/public/app/features/templating/partials/editor.html %%DATADIR%%/public/app/features/templating/query_variable.ts -%%DATADIR%%/public/app/features/templating/specs/adhoc_variable_specs.ts -%%DATADIR%%/public/app/features/templating/specs/query_variable_specs.ts -%%DATADIR%%/public/app/features/templating/specs/template_srv_specs.ts -%%DATADIR%%/public/app/features/templating/specs/variable_specs.ts +%%DATADIR%%/public/app/features/templating/specs/adhoc_variable.jest.ts +%%DATADIR%%/public/app/features/templating/specs/editor_ctrl.jest.ts +%%DATADIR%%/public/app/features/templating/specs/query_variable.jest.ts +%%DATADIR%%/public/app/features/templating/specs/template_srv.jest.ts +%%DATADIR%%/public/app/features/templating/specs/variable.jest.ts %%DATADIR%%/public/app/features/templating/specs/variable_srv_init_specs.ts %%DATADIR%%/public/app/features/templating/specs/variable_srv_specs.ts -%%DATADIR%%/public/app/features/templating/templateSrv.js +%%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/headers/common.d.ts %%DATADIR%%/public/app/index.ts %%DATADIR%%/public/app/partials/confirm_modal.html %%DATADIR%%/public/app/partials/dashboard.html @@ -321,7 +426,7 @@ %%DATADIR%%/public/app/plugins/datasource/cloudwatch/README.md %%DATADIR%%/public/app/plugins/datasource/cloudwatch/config_ctrl.ts %%DATADIR%%/public/app/plugins/datasource/cloudwatch/datasource.d.ts -%%DATADIR%%/public/app/plugins/datasource/cloudwatch/datasource.js +%%DATADIR%%/public/app/plugins/datasource/cloudwatch/datasource.ts %%DATADIR%%/public/app/plugins/datasource/cloudwatch/img/amazon-web-services.png %%DATADIR%%/public/app/plugins/datasource/cloudwatch/module.ts %%DATADIR%%/public/app/plugins/datasource/cloudwatch/partials/annotations.editor.html @@ -330,7 +435,7 @@ %%DATADIR%%/public/app/plugins/datasource/cloudwatch/partials/query.parameter.html %%DATADIR%%/public/app/plugins/datasource/cloudwatch/plugin.json %%DATADIR%%/public/app/plugins/datasource/cloudwatch/query_ctrl.ts -%%DATADIR%%/public/app/plugins/datasource/cloudwatch/query_parameter_ctrl.js +%%DATADIR%%/public/app/plugins/datasource/cloudwatch/query_parameter_ctrl.ts %%DATADIR%%/public/app/plugins/datasource/cloudwatch/specs/datasource_specs.ts %%DATADIR%%/public/app/plugins/datasource/elasticsearch/README.md %%DATADIR%%/public/app/plugins/datasource/elasticsearch/bucket_agg.js @@ -372,8 +477,8 @@ %%DATADIR%%/public/app/plugins/datasource/graphite/dashboards/carbon_metrics.json %%DATADIR%%/public/app/plugins/datasource/graphite/datasource.ts %%DATADIR%%/public/app/plugins/datasource/graphite/func_editor.js -%%DATADIR%%/public/app/plugins/datasource/graphite/gfunc.d.ts -%%DATADIR%%/public/app/plugins/datasource/graphite/gfunc.js +%%DATADIR%%/public/app/plugins/datasource/graphite/gfunc.ts +%%DATADIR%%/public/app/plugins/datasource/graphite/graphite_query.ts %%DATADIR%%/public/app/plugins/datasource/graphite/img/graphite_logo.png %%DATADIR%%/public/app/plugins/datasource/graphite/lexer.ts %%DATADIR%%/public/app/plugins/datasource/graphite/module.ts @@ -385,33 +490,32 @@ %%DATADIR%%/public/app/plugins/datasource/graphite/query_ctrl.ts %%DATADIR%%/public/app/plugins/datasource/graphite/query_help.md %%DATADIR%%/public/app/plugins/datasource/graphite/specs/datasource_specs.ts -%%DATADIR%%/public/app/plugins/datasource/graphite/specs/gfunc_specs.ts -%%DATADIR%%/public/app/plugins/datasource/graphite/specs/lexer_specs.ts -%%DATADIR%%/public/app/plugins/datasource/graphite/specs/parser_specs.ts +%%DATADIR%%/public/app/plugins/datasource/graphite/specs/gfunc.jest.ts +%%DATADIR%%/public/app/plugins/datasource/graphite/specs/graphite_query.jest.ts +%%DATADIR%%/public/app/plugins/datasource/graphite/specs/lexer.jest.ts +%%DATADIR%%/public/app/plugins/datasource/graphite/specs/parser.jest.ts %%DATADIR%%/public/app/plugins/datasource/graphite/specs/query_ctrl_specs.ts %%DATADIR%%/public/app/plugins/datasource/influxdb/README.md %%DATADIR%%/public/app/plugins/datasource/influxdb/datasource.ts %%DATADIR%%/public/app/plugins/datasource/influxdb/img/influxdb_logo.svg %%DATADIR%%/public/app/plugins/datasource/influxdb/influx_query.ts -%%DATADIR%%/public/app/plugins/datasource/influxdb/influx_series.d.ts -%%DATADIR%%/public/app/plugins/datasource/influxdb/influx_series.js +%%DATADIR%%/public/app/plugins/datasource/influxdb/influx_series.ts %%DATADIR%%/public/app/plugins/datasource/influxdb/module.ts %%DATADIR%%/public/app/plugins/datasource/influxdb/partials/annotations.editor.html %%DATADIR%%/public/app/plugins/datasource/influxdb/partials/config.html %%DATADIR%%/public/app/plugins/datasource/influxdb/partials/query.editor.html %%DATADIR%%/public/app/plugins/datasource/influxdb/plugin.json -%%DATADIR%%/public/app/plugins/datasource/influxdb/query_builder.d.ts -%%DATADIR%%/public/app/plugins/datasource/influxdb/query_builder.js +%%DATADIR%%/public/app/plugins/datasource/influxdb/query_builder.ts %%DATADIR%%/public/app/plugins/datasource/influxdb/query_ctrl.ts %%DATADIR%%/public/app/plugins/datasource/influxdb/query_help.md %%DATADIR%%/public/app/plugins/datasource/influxdb/query_part.ts %%DATADIR%%/public/app/plugins/datasource/influxdb/response_parser.ts -%%DATADIR%%/public/app/plugins/datasource/influxdb/specs/influx_query_specs.ts -%%DATADIR%%/public/app/plugins/datasource/influxdb/specs/influx_series_specs.ts -%%DATADIR%%/public/app/plugins/datasource/influxdb/specs/query_builder_specs.ts +%%DATADIR%%/public/app/plugins/datasource/influxdb/specs/influx_query.jest.ts +%%DATADIR%%/public/app/plugins/datasource/influxdb/specs/influx_series.jest.ts +%%DATADIR%%/public/app/plugins/datasource/influxdb/specs/query_builder.jest.ts %%DATADIR%%/public/app/plugins/datasource/influxdb/specs/query_ctrl_specs.ts -%%DATADIR%%/public/app/plugins/datasource/influxdb/specs/query_part_specs.ts -%%DATADIR%%/public/app/plugins/datasource/influxdb/specs/response_parser_specs.ts +%%DATADIR%%/public/app/plugins/datasource/influxdb/specs/query_part.jest.ts +%%DATADIR%%/public/app/plugins/datasource/influxdb/specs/response_parser.jest.ts %%DATADIR%%/public/app/plugins/datasource/mixed/README.md %%DATADIR%%/public/app/plugins/datasource/mixed/datasource.ts %%DATADIR%%/public/app/plugins/datasource/mixed/module.ts @@ -455,11 +559,12 @@ %%DATADIR%%/public/app/plugins/datasource/prometheus/README.md %%DATADIR%%/public/app/plugins/datasource/prometheus/completer.ts %%DATADIR%%/public/app/plugins/datasource/prometheus/dashboards/grafana_stats.json +%%DATADIR%%/public/app/plugins/datasource/prometheus/dashboards/prometheus_2_stats.json %%DATADIR%%/public/app/plugins/datasource/prometheus/dashboards/prometheus_stats.json %%DATADIR%%/public/app/plugins/datasource/prometheus/datasource.ts %%DATADIR%%/public/app/plugins/datasource/prometheus/img/prometheus_logo.svg %%DATADIR%%/public/app/plugins/datasource/prometheus/metric_find_query.d.ts -%%DATADIR%%/public/app/plugins/datasource/prometheus/metric_find_query.js +%%DATADIR%%/public/app/plugins/datasource/prometheus/metric_find_query.ts %%DATADIR%%/public/app/plugins/datasource/prometheus/mode-prometheus.js %%DATADIR%%/public/app/plugins/datasource/prometheus/module.ts %%DATADIR%%/public/app/plugins/datasource/prometheus/partials/annotations.editor.html @@ -499,14 +604,14 @@ %%DATADIR%%/public/app/plugins/panel/graph/histogram.ts %%DATADIR%%/public/app/plugins/panel/graph/img/icn-graph-panel.svg %%DATADIR%%/public/app/plugins/panel/graph/jquery.flot.events.js -%%DATADIR%%/public/app/plugins/panel/graph/legend.js +%%DATADIR%%/public/app/plugins/panel/graph/legend.ts %%DATADIR%%/public/app/plugins/panel/graph/module.ts %%DATADIR%%/public/app/plugins/panel/graph/plugin.json -%%DATADIR%%/public/app/plugins/panel/graph/series_overrides_ctrl.js -%%DATADIR%%/public/app/plugins/panel/graph/specs/data_processor_specs.ts +%%DATADIR%%/public/app/plugins/panel/graph/series_overrides_ctrl.ts +%%DATADIR%%/public/app/plugins/panel/graph/specs/data_processor.jest.ts %%DATADIR%%/public/app/plugins/panel/graph/specs/graph_ctrl_specs.ts %%DATADIR%%/public/app/plugins/panel/graph/specs/graph_specs.ts -%%DATADIR%%/public/app/plugins/panel/graph/specs/histogram_specs.ts +%%DATADIR%%/public/app/plugins/panel/graph/specs/histogram.jest.ts %%DATADIR%%/public/app/plugins/panel/graph/specs/series_override_ctrl_specs.ts %%DATADIR%%/public/app/plugins/panel/graph/specs/threshold_manager_specs.ts %%DATADIR%%/public/app/plugins/panel/graph/specs/tooltip_specs.ts @@ -518,6 +623,7 @@ %%DATADIR%%/public/app/plugins/panel/heatmap/README.md %%DATADIR%%/public/app/plugins/panel/heatmap/axes_editor.ts %%DATADIR%%/public/app/plugins/panel/heatmap/color_legend.ts +%%DATADIR%%/public/app/plugins/panel/heatmap/color_scale.ts %%DATADIR%%/public/app/plugins/panel/heatmap/display_editor.ts %%DATADIR%%/public/app/plugins/panel/heatmap/heatmap_ctrl.ts %%DATADIR%%/public/app/plugins/panel/heatmap/heatmap_data_converter.ts @@ -530,7 +636,7 @@ %%DATADIR%%/public/app/plugins/panel/heatmap/plugin.json %%DATADIR%%/public/app/plugins/panel/heatmap/rendering.ts %%DATADIR%%/public/app/plugins/panel/heatmap/specs/heatmap_ctrl_specs.ts -%%DATADIR%%/public/app/plugins/panel/heatmap/specs/heatmap_data_converter_specs.ts +%%DATADIR%%/public/app/plugins/panel/heatmap/specs/heatmap_data_converter.jest.ts %%DATADIR%%/public/app/plugins/panel/heatmap/specs/renderer_specs.ts %%DATADIR%%/public/app/plugins/panel/pluginlist/README.md %%DATADIR%%/public/app/plugins/panel/pluginlist/editor.html @@ -557,8 +663,8 @@ %%DATADIR%%/public/app/plugins/panel/table/module.ts %%DATADIR%%/public/app/plugins/panel/table/plugin.json %%DATADIR%%/public/app/plugins/panel/table/renderer.ts -%%DATADIR%%/public/app/plugins/panel/table/specs/renderer_specs.ts -%%DATADIR%%/public/app/plugins/panel/table/specs/transformers_specs.ts +%%DATADIR%%/public/app/plugins/panel/table/specs/renderer.jest.ts +%%DATADIR%%/public/app/plugins/panel/table/specs/transformers.jest.ts %%DATADIR%%/public/app/plugins/panel/table/transformers.ts %%DATADIR%%/public/app/plugins/panel/text/README.md %%DATADIR%%/public/app/plugins/panel/text/editor.html @@ -569,29 +675,45 @@ %%DATADIR%%/public/app/plugins/panel/unknown/module.html %%DATADIR%%/public/app/plugins/panel/unknown/module.ts %%DATADIR%%/public/app/plugins/sdk.ts -%%DATADIR%%/public/app/system.conf.js -%%DATADIR%%/public/build/0.be20b78823b4c9d93a84.js -%%DATADIR%%/public/build/0.be20b78823b4c9d93a84.js.map -%%DATADIR%%/public/build/1.5ec950fd79606aa28b3a.js -%%DATADIR%%/public/build/1.5ec950fd79606aa28b3a.js.map -%%DATADIR%%/public/build/2.da1bd4ed01ea396d1764.js -%%DATADIR%%/public/build/2.da1bd4ed01ea396d1764.js.map -%%DATADIR%%/public/build/3.481e43e343ebca821897.js -%%DATADIR%%/public/build/3.481e43e343ebca821897.js.map -%%DATADIR%%/public/build/app.5331f559bd9a1bed9a93.js -%%DATADIR%%/public/build/app.5331f559bd9a1bed9a93.js.map -%%DATADIR%%/public/build/dark.cb713f0c8ee22a18f86f.js -%%DATADIR%%/public/build/dark.cb713f0c8ee22a18f86f.js.map +%%DATADIR%%/public/app/routes/ReactContainer.tsx +%%DATADIR%%/public/app/routes/dashboard_loaders.ts +%%DATADIR%%/public/app/routes/routes.ts +%%DATADIR%%/public/app/stores/AlertListStore/AlertListStore.jest.ts +%%DATADIR%%/public/app/stores/AlertListStore/AlertListStore.ts +%%DATADIR%%/public/app/stores/AlertListStore/AlertRule.ts +%%DATADIR%%/public/app/stores/AlertListStore/helpers.ts +%%DATADIR%%/public/app/stores/FolderStore/FolderStore.ts +%%DATADIR%%/public/app/stores/NavStore/NavItem.ts +%%DATADIR%%/public/app/stores/NavStore/NavStore.jest.ts +%%DATADIR%%/public/app/stores/NavStore/NavStore.ts +%%DATADIR%%/public/app/stores/PermissionsStore/PermissionsStore.jest.ts +%%DATADIR%%/public/app/stores/PermissionsStore/PermissionsStore.ts +%%DATADIR%%/public/app/stores/PermissionsStore/PermissionsStoreItem.ts +%%DATADIR%%/public/app/stores/RootStore/RootStore.ts +%%DATADIR%%/public/app/stores/SearchStore/ResultItem.ts +%%DATADIR%%/public/app/stores/SearchStore/SearchResultSection.ts +%%DATADIR%%/public/app/stores/SearchStore/SearchStore.ts +%%DATADIR%%/public/app/stores/ServerStatsStore/ServerStat.ts +%%DATADIR%%/public/app/stores/ServerStatsStore/ServerStatsStore.ts +%%DATADIR%%/public/app/stores/ViewStore/ViewStore.jest.ts +%%DATADIR%%/public/app/stores/ViewStore/ViewStore.ts +%%DATADIR%%/public/app/stores/store.ts +%%DATADIR%%/public/build/0.61d63d0094e218376e17.js +%%DATADIR%%/public/build/0.61d63d0094e218376e17.js.map +%%DATADIR%%/public/build/app.b0d4f36bb5b6bb18e2ab.js +%%DATADIR%%/public/build/app.b0d4f36bb5b6bb18e2ab.js.map +%%DATADIR%%/public/build/dark.85ebc692c510bae90ebe.js +%%DATADIR%%/public/build/dark.85ebc692c510bae90ebe.js.map %%DATADIR%%/public/build/grafana.dark.css %%DATADIR%%/public/build/grafana.dark.css.map %%DATADIR%%/public/build/grafana.light.css %%DATADIR%%/public/build/grafana.light.css.map -%%DATADIR%%/public/build/light.3e01ac5b4f74b4cc68d5.js -%%DATADIR%%/public/build/light.3e01ac5b4f74b4cc68d5.js.map -%%DATADIR%%/public/build/manifest.979c370f20ff0db1a23c.js -%%DATADIR%%/public/build/manifest.979c370f20ff0db1a23c.js.map -%%DATADIR%%/public/build/vendor.2305a8e1d478628b1297.js -%%DATADIR%%/public/build/vendor.2305a8e1d478628b1297.js.map +%%DATADIR%%/public/build/light.2f19b3689dce84d500d8.js +%%DATADIR%%/public/build/light.2f19b3689dce84d500d8.js.map +%%DATADIR%%/public/build/manifest.21767989cf98430ef6cf.js +%%DATADIR%%/public/build/manifest.21767989cf98430ef6cf.js.map +%%DATADIR%%/public/build/vendor.2c3c591224fb193f7fd3.js +%%DATADIR%%/public/build/vendor.2c3c591224fb193f7fd3.js.map %%DATADIR%%/public/dashboards/default.json %%DATADIR%%/public/dashboards/home.json %%DATADIR%%/public/dashboards/scripted.js @@ -651,7 +773,33 @@ %%DATADIR%%/public/fonts/opensans/xjAJXh38I15wypJXxuGMBo4P5ICox8Kq3LLUNMylGO4.woff2 %%DATADIR%%/public/fonts/opensans/xjAJXh38I15wypJXxuGMBr6up8jxqWt8HVA3mDhkV_0.woff2 %%DATADIR%%/public/fonts/opensans/xozscpT2726on7jbcb_pAhJtnKITppOI_IvcXXDNrsc.woff2 -%%DATADIR%%/public/img/CopyQuery.png +%%DATADIR%%/public/fonts/roboto/-2n2p-_Y08sg57CNWQfKNvesZW2xOQ-xsNqO47m55DA.woff2 +%%DATADIR%%/public/fonts/roboto/1hZf02POANh32k2VkgEoUBTbgVql8nDJpwnrE27mub0.woff2 +%%DATADIR%%/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 +%%DATADIR%%/public/fonts/roboto/Fcx7Wwv8OzT71A3E1XOAjvesZW2xOQ-xsNqO47m55DA.woff2 +%%DATADIR%%/public/fonts/roboto/K23cxWVTrIFD6DJsEVi07RTbgVql8nDJpwnrE27mub0.woff2 +%%DATADIR%%/public/fonts/roboto/NdF9MtnOpLzo-noMoG0miPesZW2xOQ-xsNqO47m55DA.woff2 +%%DATADIR%%/public/fonts/roboto/OLffGBTaF0XFOW1gnuHF0SYE0-AqJ3nfInTTiDXDjU4.woff2 +%%DATADIR%%/public/fonts/roboto/OLffGBTaF0XFOW1gnuHF0TTOQ_MqJVwkKsUn0wKzc2I.woff2 +%%DATADIR%%/public/fonts/roboto/OLffGBTaF0XFOW1gnuHF0TUj_cnvWIuuBMVgbX098Mw.woff2 +%%DATADIR%%/public/fonts/roboto/OLffGBTaF0XFOW1gnuHF0UbcKLIaa1LC45dFaAfauRA.woff2 +%%DATADIR%%/public/fonts/roboto/OLffGBTaF0XFOW1gnuHF0Wo_sUJ8uO4YLWRInS22T3Y.woff2 +%%DATADIR%%/public/fonts/roboto/OLffGBTaF0XFOW1gnuHF0Y4P5ICox8Kq3LLUNMylGO4.woff2 +%%DATADIR%%/public/fonts/roboto/OLffGBTaF0XFOW1gnuHF0b6up8jxqWt8HVA3mDhkV_0.woff2 +%%DATADIR%%/public/fonts/roboto/OpXUqTo0UgQQhGj_SFdLWBTbgVql8nDJpwnrE27mub0.woff2 +%%DATADIR%%/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 +%%DATADIR%%/public/fonts/roboto/WxrXJa0C3KdtC7lMafG4dRTbgVql8nDJpwnrE27mub0.woff2 +%%DATADIR%%/public/fonts/roboto/ZLqKeelYbATG60EpZBSDyxJtnKITppOI_IvcXXDNrsc.woff2 +%%DATADIR%%/public/fonts/roboto/cDKhRaXnQTOVbaoxwdOr9xTbgVql8nDJpwnrE27mub0.woff2 +%%DATADIR%%/public/fonts/roboto/ek4gzZ-GeXAPcSbHtCeQI_esZW2xOQ-xsNqO47m55DA.woff2 +%%DATADIR%%/public/fonts/roboto/mErvLBYg_cXG3rLvUsKT_fesZW2xOQ-xsNqO47m55DA.woff2 +%%DATADIR%%/public/fonts/roboto/mbmhprMH69Zi6eEPBYVFhRJtnKITppOI_IvcXXDNrsc.woff2 +%%DATADIR%%/public/fonts/roboto/mx9Uck6uB63VIKFYnEMXrRJtnKITppOI_IvcXXDNrsc.woff2 +%%DATADIR%%/public/fonts/roboto/oHi30kwQWvpCWqAhzHcCSBJtnKITppOI_IvcXXDNrsc.woff2 +%%DATADIR%%/public/fonts/roboto/oOeFwZNlrTefzLYmlVV1UBJtnKITppOI_IvcXXDNrsc.woff2 +%%DATADIR%%/public/fonts/roboto/rGvHdJnr2l75qb0YND9NyBJtnKITppOI_IvcXXDNrsc.woff2 +%%DATADIR%%/public/fonts/roboto/vPcynSL0qHq_6dX7lKVByfesZW2xOQ-xsNqO47m55DA.woff2 +%%DATADIR%%/public/fonts/roboto/vSzulfKSK0LLjjfeaxcREhTbgVql8nDJpwnrE27mub0.woff2 %%DATADIR%%/public/img/alert_howto_new.png %%DATADIR%%/public/img/angle_gradient_light_rev.png %%DATADIR%%/public/img/angle_gradient_rev.png @@ -670,14 +818,97 @@ %%DATADIR%%/public/img/grafana_com_auth_icon.svg %%DATADIR%%/public/img/grafana_icon.svg %%DATADIR%%/public/img/grafana_mask_icon.svg +%%DATADIR%%/public/img/grafana_mask_icon_white.svg %%DATADIR%%/public/img/grafana_net_logo.svg %%DATADIR%%/public/img/graph404.svg +%%DATADIR%%/public/img/heatmap_bg_test.svg %%DATADIR%%/public/img/icn-app.svg %%DATADIR%%/public/img/icn-dashboard-tiny.svg %%DATADIR%%/public/img/icn-dashboard.svg %%DATADIR%%/public/img/icn-datasource.svg %%DATADIR%%/public/img/icn-panel.svg %%DATADIR%%/public/img/icn-plugins-tiny.svg +%%DATADIR%%/public/img/icn-row.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_add_annotation.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_add_annotation_alt.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_add_data_sources.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_add_folder.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_add_link.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_add_notification_channel.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_add_panel.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_add_team.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_add_user.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_add_variable.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_alert.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_alert_alt.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_alert_off.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_alert_rules.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_annotation.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_annotation_alt.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_apikeys.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_cog.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_dashboard.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_dashboard_fav.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_dashboard_list.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_data_sources.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_home.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_import_dashboard.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_json.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_link.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_new_dashboard.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_notification_channels.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_org.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_playlist.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_plugins.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_preferences.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_question.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_shield.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_sitemap.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_snapshots.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_team.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_user.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_variable.svg +%%DATADIR%%/public/img/icons_dark_theme/icon_zoom_out.svg +%%DATADIR%%/public/img/icons_light_theme/icon_add_annotation.svg +%%DATADIR%%/public/img/icons_light_theme/icon_add_annotation_alt.svg +%%DATADIR%%/public/img/icons_light_theme/icon_add_data_sources.svg +%%DATADIR%%/public/img/icons_light_theme/icon_add_folder.svg +%%DATADIR%%/public/img/icons_light_theme/icon_add_link.svg +%%DATADIR%%/public/img/icons_light_theme/icon_add_notification_channel.svg +%%DATADIR%%/public/img/icons_light_theme/icon_add_panel.svg +%%DATADIR%%/public/img/icons_light_theme/icon_add_team.svg +%%DATADIR%%/public/img/icons_light_theme/icon_add_user.svg +%%DATADIR%%/public/img/icons_light_theme/icon_add_variable.svg +%%DATADIR%%/public/img/icons_light_theme/icon_alert.svg +%%DATADIR%%/public/img/icons_light_theme/icon_alert_alt.svg +%%DATADIR%%/public/img/icons_light_theme/icon_alert_off.svg +%%DATADIR%%/public/img/icons_light_theme/icon_alert_rules.svg +%%DATADIR%%/public/img/icons_light_theme/icon_annotation.svg +%%DATADIR%%/public/img/icons_light_theme/icon_annotation_alt.svg +%%DATADIR%%/public/img/icons_light_theme/icon_apikeys.svg +%%DATADIR%%/public/img/icons_light_theme/icon_cog.svg +%%DATADIR%%/public/img/icons_light_theme/icon_dashboard.svg +%%DATADIR%%/public/img/icons_light_theme/icon_dashboard_fav.svg +%%DATADIR%%/public/img/icons_light_theme/icon_dashboard_list.svg +%%DATADIR%%/public/img/icons_light_theme/icon_data_sources.svg +%%DATADIR%%/public/img/icons_light_theme/icon_home.svg +%%DATADIR%%/public/img/icons_light_theme/icon_import_dashboard.svg +%%DATADIR%%/public/img/icons_light_theme/icon_json.svg +%%DATADIR%%/public/img/icons_light_theme/icon_link.svg +%%DATADIR%%/public/img/icons_light_theme/icon_new_dashboard.svg +%%DATADIR%%/public/img/icons_light_theme/icon_notification_channels.svg +%%DATADIR%%/public/img/icons_light_theme/icon_org.svg +%%DATADIR%%/public/img/icons_light_theme/icon_playlist.svg +%%DATADIR%%/public/img/icons_light_theme/icon_plugins.svg +%%DATADIR%%/public/img/icons_light_theme/icon_preferences.svg +%%DATADIR%%/public/img/icons_light_theme/icon_question.svg +%%DATADIR%%/public/img/icons_light_theme/icon_shield.svg +%%DATADIR%%/public/img/icons_light_theme/icon_sitemap.svg +%%DATADIR%%/public/img/icons_light_theme/icon_snapshots.svg +%%DATADIR%%/public/img/icons_light_theme/icon_team.svg +%%DATADIR%%/public/img/icons_light_theme/icon_user.svg +%%DATADIR%%/public/img/icons_light_theme/icon_variable.svg +%%DATADIR%%/public/img/icons_light_theme/icon_zoom_out.svg %%DATADIR%%/public/img/kibana.png %%DATADIR%%/public/img/light.png %%DATADIR%%/public/img/load.gif @@ -708,6 +939,7 @@ %%DATADIR%%/public/sass/base/_forms.scss %%DATADIR%%/public/sass/base/_grafana_icons.scss %%DATADIR%%/public/sass/base/_grid.scss +%%DATADIR%%/public/sass/base/_icons.scss %%DATADIR%%/public/sass/base/_normalize.scss %%DATADIR%%/public/sass/base/_reboot.scss %%DATADIR%%/public/sass/base/_type.scss @@ -729,14 +961,19 @@ %%DATADIR%%/public/sass/components/_cards.scss %%DATADIR%%/public/sass/components/_code_editor.scss %%DATADIR%%/public/sass/components/_color_picker.scss +%%DATADIR%%/public/sass/components/_dashboard_grid.scss +%%DATADIR%%/public/sass/components/_dashboard_list.scss +%%DATADIR%%/public/sass/components/_dashboard_settings.scss +%%DATADIR%%/public/sass/components/_description-picker.scss %%DATADIR%%/public/sass/components/_drop.scss %%DATADIR%%/public/sass/components/_dropdown.scss +%%DATADIR%%/public/sass/components/_empty_list_cta.scss %%DATADIR%%/public/sass/components/_filter-controls.scss %%DATADIR%%/public/sass/components/_filter-list.scss %%DATADIR%%/public/sass/components/_filter-table.scss %%DATADIR%%/public/sass/components/_footer.scss +%%DATADIR%%/public/sass/components/_form_select_box.scss %%DATADIR%%/public/sass/components/_gf-form.scss -%%DATADIR%%/public/sass/components/_icon-picker.scss %%DATADIR%%/public/sass/components/_infobox.scss %%DATADIR%%/public/sass/components/_json_explorer.scss %%DATADIR%%/public/sass/components/_jsontree.scss @@ -744,6 +981,8 @@ %%DATADIR%%/public/sass/components/_navbar.scss %%DATADIR%%/public/sass/components/_navs.scss %%DATADIR%%/public/sass/components/_old_stuff.scss +%%DATADIR%%/public/sass/components/_page_header.scss +%%DATADIR%%/public/sass/components/_panel_add_panel.scss %%DATADIR%%/public/sass/components/_panel_alertlist.scss %%DATADIR%%/public/sass/components/_panel_dashlist.scss %%DATADIR%%/public/sass/components/_panel_gettingstarted.scss @@ -753,11 +992,13 @@ %%DATADIR%%/public/sass/components/_panel_singlestat.scss %%DATADIR%%/public/sass/components/_panel_table.scss %%DATADIR%%/public/sass/components/_panel_text.scss +%%DATADIR%%/public/sass/components/_popper.scss %%DATADIR%%/public/sass/components/_query_editor.scss %%DATADIR%%/public/sass/components/_query_part.scss %%DATADIR%%/public/sass/components/_row.scss %%DATADIR%%/public/sass/components/_scrollbar.scss %%DATADIR%%/public/sass/components/_search.scss +%%DATADIR%%/public/sass/components/_settings_permissions.scss %%DATADIR%%/public/sass/components/_shortcuts.scss %%DATADIR%%/public/sass/components/_sidemenu.scss %%DATADIR%%/public/sass/components/_submenu.scss @@ -770,6 +1011,7 @@ %%DATADIR%%/public/sass/components/_timepicker.scss %%DATADIR%%/public/sass/components/_tooltip.scss %%DATADIR%%/public/sass/components/_typeahead.scss +%%DATADIR%%/public/sass/components/_user-picker.scss %%DATADIR%%/public/sass/components/_view_states.scss %%DATADIR%%/public/sass/components/edit_sidemenu.scss %%DATADIR%%/public/sass/fonts.scss @@ -803,19 +1045,17 @@ %%DATADIR%%/public/sass/utils/_utils.scss %%DATADIR%%/public/sass/utils/_validation.scss %%DATADIR%%/public/sass/utils/_widths.scss -%%DATADIR%%/public/test/core/table_model_specs.ts -%%DATADIR%%/public/test/core/utils/datemath_specs.ts -%%DATADIR%%/public/test/core/utils/emitter_specs.ts -%%DATADIR%%/public/test/core/utils/flatten_specs.ts -%%DATADIR%%/public/test/core/utils/kbn_specs.js -%%DATADIR%%/public/test/core/utils/rangeutil_specs.ts +%%DATADIR%%/public/test/core/utils/version_specs.ts %%DATADIR%%/public/test/index.ts +%%DATADIR%%/public/test/jest-setup.ts +%%DATADIR%%/public/test/jest-shim.ts %%DATADIR%%/public/test/lib/common.ts +%%DATADIR%%/public/test/mocks/angular.ts +%%DATADIR%%/public/test/mocks/backend_srv.ts +%%DATADIR%%/public/test/mocks/common.ts %%DATADIR%%/public/test/mocks/dashboard-mock.js %%DATADIR%%/public/test/specs/app_specs.ts -%%DATADIR%%/public/test/specs/helpers.d.ts -%%DATADIR%%/public/test/specs/helpers.js -%%DATADIR%%/public/test/test-main.js +%%DATADIR%%/public/test/specs/helpers.ts %%DATADIR%%/public/vendor/angular-other/angular-strap.js %%DATADIR%%/public/vendor/angular-other/datepicker.js %%DATADIR%%/public/vendor/angular-other/timepicker.js @@ -823,11 +1063,6 @@ %%DATADIR%%/public/vendor/bootstrap/bootstrap.js %%DATADIR%%/public/vendor/css/spectrum.css %%DATADIR%%/public/vendor/css/timepicker.css -%%DATADIR%%/public/vendor/d3/LICENSE -%%DATADIR%%/public/vendor/d3/README.md -%%DATADIR%%/public/vendor/d3/d3-scale-chromatic.min.js -%%DATADIR%%/public/vendor/d3/d3.js -%%DATADIR%%/public/vendor/d3/d3.v4.min.js %%DATADIR%%/public/vendor/flot/jquery.flot.crosshair.js %%DATADIR%%/public/vendor/flot/jquery.flot.dashes.js %%DATADIR%%/public/vendor/flot/jquery.flot.fillbelow.js @@ -839,17 +1074,18 @@ %%DATADIR%%/public/vendor/flot/jquery.flot.stack.js %%DATADIR%%/public/vendor/flot/jquery.flot.stackpercent.js %%DATADIR%%/public/vendor/flot/jquery.flot.time.js +%%DATADIR%%/public/vendor/jquery-ui/custom.js %%DATADIR%%/public/vendor/plugin-css/css.js %%DATADIR%%/public/vendor/plugin-text/text.js %%DATADIR%%/public/vendor/spectrum.js %%DATADIR%%/public/vendor/tagsinput/bootstrap-tagsinput.js -%%DATADIR%%/public/views/407.html -%%DATADIR%%/public/views/500.html +%%DATADIR%%/public/views/error.html %%DATADIR%%/public/views/index.html %%DATADIR%%/public/views/index.template.html @dir %%DATADIR%%/data/log -@dir /var/db/grafana/dashboards -@dir /var/db/grafana/plugins @dir /var/db/grafana +@dir /var/db/grafana/plugins +@dir /var/db/grafana/provisioning @dir /var/log/grafana @dir /var/run/grafana +@sample etc/grafana.conf.sample