Index: head/www/Makefile =================================================================== --- head/www/Makefile +++ head/www/Makefile @@ -226,6 +226,7 @@ SUBDIR += grafana2 SUBDIR += grafana3 SUBDIR += grafana4 + SUBDIR += grafana5 SUBDIR += grails SUBDIR += gregarius SUBDIR += groupoffice Index: head/www/grafana5/Makefile =================================================================== --- head/www/grafana5/Makefile +++ head/www/grafana5/Makefile @@ -0,0 +1,88 @@ +# $FreeBSD$ + +PORTNAME= grafana +PORTVERSION= 5.0.0 +DISTVERSIONPREFIX= v +CATEGORIES= www +MASTER_SITES+= https://s3-us-west-2.amazonaws.com/grafana-releases/release/:public +PKGNAMESUFFIX= ${PORTVERSION:C/([0-9]).*/\1/1} +DISTFILES= grafana-${PORTVERSION}.linux-x64${EXTRACT_SUFX}:public +EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} + +MAINTAINER= swills@FreeBSD.org +COMMENT= Dashboard and graph editor for multiple data stores + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +ONLY_FOR_ARCHS= amd64 i386 + +BUILD_DEPENDS= ${LOCALBASE}/bin/go:lang/go + +USES= compiler +USE_RC_SUBR= grafana + +USE_GITHUB= yes +GH_SUBDIR= src/github.com/${PORTNAME}/${PORTNAME} +TAG= af6e283 + +GRAFANA_USER?= grafana +GRAFANA_GROUP?= grafana + +USERS= ${GRAFANA_USER} +GROUPS= ${GRAFANA_GROUP} + +GRAFANAHOMEDIR= ${PREFIX}/share/grafana/ +GRAFANADATADIR= /var/db/${PORTNAME}/ +GRAFANALOGDIR= /var/log/${PORTNAME}/ +GRAFANAPIDDIR= /var/run/${PORTNAME}/ +GRAFANAPLUGINDIR= /var/db/${PORTNAME}/plugins +GRAFANAPROVISIONINGDIR= /var/db/${PORTNAME}/provisioning + +SUB_FILES= grafana grafana.conf +SUB_LIST+= GRAFANA_USER=${GRAFANA_USER} \ + GRAFANA_GROUP=${GRAFANA_GROUP} \ + GRAFANADATADIR=${GRAFANADATADIR} \ + GRAFANALOGDIR=${GRAFANALOGDIR} \ + GRAFANAPIDDIR=${GRAFANAPIDDIR} \ + GRAFANAHOMEDIR=${GRAFANAHOMEDIR} \ + GRAFANAPLUGINDIR=${GRAFANAPLUGINDIR} \ + GRAFANAPROVISIONINGDIR=${GRAFANAPROVISIONINGDIR} + +PLIST_SUB+= GRAFANAHOMEDIR=${GRAFANAHOMEDIR} + +post-extract: + @${RM} -r ${WRKSRC}/src/github.com/grafana/grafana/public + @(cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/grafana-${PORTVERSION}.linux-x64${EXTRACT_SUFX} ${EXTRACT_AFTER_ARGS} grafana-${PORTVERSION}/public) + +do-build: + @cd ${WRKSRC}/src/github.com/${PORTNAME}/${PORTNAME} ; ${SETENV} ${MAKE_ENV} ${BUILD_ENV} GOPATH=${WRKSRC} go build -ldflags "-w -X main.version=${PORTVERSION} -X main.commit=${TAG}" -o ./bin/grafana-server ./pkg/cmd/grafana-server + @cd ${WRKSRC}/src/github.com/${PORTNAME}/${PORTNAME} ; ${SETENV} ${MAKE_ENV} ${BUILD_ENV} GOPATH=${WRKSRC} go build -ldflags "-w -X main.version=${PORTVERSION} -X main.commit=${TAG}" -o ./bin/grafana-cli ./pkg/cmd/grafana-cli + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/src/github.com/grafana/grafana/bin/grafana-server \ + ${STAGEDIR}${PREFIX}/bin/grafana-server + ${INSTALL_PROGRAM} ${WRKSRC}/src/github.com/grafana/grafana/bin/grafana-cli \ + ${STAGEDIR}${PREFIX}/bin/grafana-cli + cd ${WRKSRC}/src/github.com/grafana/grafana && \ + ${COPYTREE_SHARE} public ${STAGEDIR}${PREFIX}/share/grafana + ${MKDIR} ${STAGEDIR}${GRAFANAPIDDIR} + ${MKDIR} ${STAGEDIR}${GRAFANALOGDIR} + ${MKDIR} ${STAGEDIR}${GRAFANAHOMEDIR} + ${MKDIR} ${STAGEDIR}${GRAFANADATADIR} + ${MKDIR} ${STAGEDIR}${GRAFANAPLUGINDIR} + ${MKDIR} ${STAGEDIR}${GRAFANAPROVISIONINGDIR} + ${MKDIR} ${STAGEDIR}${GRAFANAHOMEDIR}/conf + ${MKDIR} ${STAGEDIR}${GRAFANAHOMEDIR}/data + ${MKDIR} ${STAGEDIR}${GRAFANAHOMEDIR}/data/log + ${INSTALL_DATA} ${WRKSRC}/src/github.com/grafana/grafana/conf/defaults.ini \ + ${STAGEDIR}${GRAFANAHOMEDIR}/conf/defaults.ini + ${INSTALL_DATA} ${WRKDIR}/grafana.conf ${STAGEDIR}${PREFIX}/etc/grafana.conf.sample + +.include + +.if ${COMPILER_TYPE} == clang +BUILD_ENV= CC=clang +.endif + +.include Index: head/www/grafana5/distinfo =================================================================== --- head/www/grafana5/distinfo +++ head/www/grafana5/distinfo @@ -0,0 +1,5 @@ +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: head/www/grafana5/files/grafana.conf.in =================================================================== --- head/www/grafana5/files/grafana.conf.in +++ head/www/grafana5/files/grafana.conf.in @@ -0,0 +1,447 @@ +##################### Grafana Configuration Example ##################### +# +# Everything has defaults so you only need to uncomment things you want to +# change + +# 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, https, socket) +;protocol = http + +# The ip address to bind to, empty will bind to all interfaces +;http_addr = + +# The http port to use +;http_port = 3000 + +# The public facing domain name used to access grafana from a browser +;domain = localhost + +# Redirect to correct domain if host header does not match domain +# Prevents DNS rebinding attacks +;enforce_domain = false + +# 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 + +# enable gzip +;enable_gzip = false + +# https certs & key file +;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" +;provider = file + +# Provider config options +# memory: not have any config yet +# file: session dir path, is relative to grafana data_path +# redis: config like redis server e.g. `addr=127.0.0.1:6379,pool_size=100,db=grafana` +# mysql: go-sql-driver/mysql dsn config string, e.g. `user:password@tcp(127.0.0.1:3306)/database_name` +# postgres: user=a password=b host=localhost port=5432 dbname=c sslmode=disable +;provider_config = sessions + +# Session cookie name +;cookie_name = grafana_sess + +# If you use session in https only, default is false +;cookie_secure = false + +# 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. +# No ip addresses are being tracked, only simple counters to track +# running instances, dashboard and error counts. It is very helpful to us. +# Change this option to false to disable reporting. +;reporting_enabled = true + +# Set to false to disable all checks to https://grafana.net +# 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.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 = + +#################################### Security #################################### +[security] +# default admin user, created on startup +;admin_user = admin + +# default admin password, can be changed before first start of grafana, or in profile settings +;admin_password = admin + +# 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 + +# 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 + +# 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 + +# Allow non admin users to create organizations +;allow_org_create = true + +# Set to true to automatically assign new users to the default organization (id 1) +;auto_assign_org = true + +# Default role new users will be automatically assigned (if disabled above is set to true) +;auto_assign_org_role = Viewer + +# 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 +;enabled = false + +# specify organization name that should be used for unauthenticated users +;org_name = Main Org. + +# specify role for unauthenticated users +;org_role = Viewer + +#################################### Github Auth ########################## +[auth.github] +;enabled = false +;allow_sign_up = true +;client_id = some_id +;client_secret = some_secret +;scopes = user:email,read:org +;auth_url = https://github.com/login/oauth/authorize +;token_url = https://github.com/login/oauth/access_token +;api_url = https://api.github.com/user +;team_ids = +;allowed_organizations = + +#################################### Google Auth ########################## +[auth.google] +;enabled = 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 +;auth_url = https://accounts.google.com/o/oauth2/auth +;token_url = https://accounts.google.com/o/oauth2/token +;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] +;enabled = true + +#################################### Auth LDAP ########################## +[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 + +#################################### Logging ########################## +[log] +# Either "console", "file", "syslog". Default is console and 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 + +# optional settings to set different levels for specific loggers. Ex filters = sqlstore:debug +;filters = + + +# 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 + +# Max line number of single file, default is 1000000 +;max_lines = 1000000 + +# Max size shift of single file, default is 28 means 1 << 28, 256MB +;max_size_shift = 28 + +# Segment log daily, default is true +;daily_rotate = true + +# Expired days of log file(delete after max days), default is 7 +;max_days = 7 + +[log.syslog] +;level = + +# 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: head/www/grafana5/files/grafana.in =================================================================== --- head/www/grafana5/files/grafana.in +++ head/www/grafana5/files/grafana.in @@ -0,0 +1,49 @@ +#!/bin/sh + +# $FreeBSD$ +# +# PROVIDE: grafana +# REQUIRE: LOGIN +# KEYWORD: shutdown + +# Add the following lines to /etc/rc.conf to enable grafana +# grafana_enable="YES" +# +# grafana_enable (bool): Set to YES to enable grafana +# Default: NO +# grafana_conf (str): grafana configration file +# Default: %%PREFIX%%/etc/grafana.conf +# grafana_user (str): grafana daemon user +# Default: %%GRAFANA_USER%% +# grafana_group (str): grafana daemon group +# Default: %%GRAFANA_GROUP%% + +. /etc/rc.subr + +name="grafana" +rcvar=grafana_enable +load_rc_config $name + +: ${grafana_enable:="NO"} +: ${grafana_user:="%%GRAFANA_USER%%"} +: ${grafana_group:="%%GRAFANA_GROUP%%"} +: ${grafana_flags:=""} +: ${grafana_conf:="%%PREFIX%%/etc/${name}.conf"} +: ${grafana_options:="-config=${grafana_conf} -homepath=%%GRAFANAHOMEDIR%%"} + +pidfile="%%GRAFANAPIDDIR%%${name}.pid" +procname="%%PREFIX%%/bin/grafana-server" +command=/usr/sbin/daemon +command_args="-f -c -p ${pidfile} ${procname} ${grafana_options}" +start_precmd="grafana_precmd" + +grafana_precmd() +{ + chown ${grafana_user}:${grafana_group} %%GRAFANADATADIR%% + chown ${grafana_user}:${grafana_group} %%GRAFANALOGDIR%% + chown ${grafana_user}:${grafana_group} %%GRAFANAHOMEDIR%%data/log/ + install -d -o ${grafana_user} %%GRAFANAPIDDIR%% + install -o ${grafana_user} /dev/null ${pidfile} +} + +run_rc_command "$1" Index: head/www/grafana5/pkg-descr =================================================================== --- head/www/grafana5/pkg-descr +++ head/www/grafana5/pkg-descr @@ -0,0 +1,4 @@ +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: head/www/grafana5/pkg-plist =================================================================== --- head/www/grafana5/pkg-plist +++ head/www/grafana5/pkg-plist @@ -0,0 +1,1091 @@ +bin/grafana-cli +bin/grafana-server +%%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 +%%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/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/grafana_app.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 +%%DATADIR%%/public/app/core/components/json_explorer/helpers.ts +%%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/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/dash_class.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.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.ts +%%DATADIR%%/public/app/core/directives/value_select_dropdown.js +%%DATADIR%%/public/app/core/filters/filters.ts +%%DATADIR%%/public/app/core/jquery_extended.js +%%DATADIR%%/public/app/core/live/live_srv.ts +%%DATADIR%%/public/app/core/lodash_extended.js +%%DATADIR%%/public/app/core/mod_defs.d.ts +%%DATADIR%%/public/app/core/nav_model_srv.ts +%%DATADIR%%/public/app/core/partials.ts +%%DATADIR%%/public/app/core/profiler.ts +%%DATADIR%%/public/app/core/services/alert_srv.ts +%%DATADIR%%/public/app/core/services/all.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/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.ts +%%DATADIR%%/public/app/core/services/util_srv.ts +%%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/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.ts +%%DATADIR%%/public/app/core/table_model.ts +%%DATADIR%%/public/app/core/time_series2.ts +%%DATADIR%%/public/app/core/utils/colors.ts +%%DATADIR%%/public/app/core/utils/css_loader.ts +%%DATADIR%%/public/app/core/utils/datemath.ts +%%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.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/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/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 +%%DATADIR%%/public/app/features/admin/partials/edit_user.html +%%DATADIR%%/public/app/features/admin/partials/new_user.html +%%DATADIR%%/public/app/features/admin/partials/orgs.html +%%DATADIR%%/public/app/features/admin/partials/settings.html +%%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_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_tab.html +%%DATADIR%%/public/app/features/alerting/partials/notification_edit.html +%%DATADIR%%/public/app/features/alerting/partials/notifications_list.html +%%DATADIR%%/public/app/features/alerting/specs/alert_tab_specs.ts +%%DATADIR%%/public/app/features/alerting/specs/threshold_mapper_specs.ts +%%DATADIR%%/public/app/features/alerting/threshold_mapper.ts +%%DATADIR%%/public/app/features/all.js +%%DATADIR%%/public/app/features/annotations/all.ts +%%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 +%%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.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/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/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/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/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/save_as_modal.ts +%%DATADIR%%/public/app/features/dashboard/save_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/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/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 +%%DATADIR%%/public/app/features/dashboard/specs/unsaved_changes_srv_specs.ts +%%DATADIR%%/public/app/features/dashboard/specs/viewstate_srv_specs.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/validation_srv.ts +%%DATADIR%%/public/app/features/dashboard/view_state_srv.ts +%%DATADIR%%/public/app/features/dashlinks/editor.html +%%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/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 +%%DATADIR%%/public/app/features/org/partials/orgDetails.html +%%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.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_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 +%%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/panellinks/link_srv.ts +%%DATADIR%%/public/app/features/panellinks/module.html +%%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 +%%DATADIR%%/public/app/features/playlist/partials/playlists.html +%%DATADIR%%/public/app/features/playlist/playlist_edit_ctrl.ts +%%DATADIR%%/public/app/features/playlist/playlist_routes.js +%%DATADIR%%/public/app/features/playlist/playlist_search.ts +%%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_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.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 +%%DATADIR%%/public/app/features/plugins/partials/plugin_edit.html +%%DATADIR%%/public/app/features/plugins/partials/plugin_list.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_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 +%%DATADIR%%/public/app/features/snapshot/snapshot_ctrl.ts +%%DATADIR%%/public/app/features/styleguide/styleguide.html +%%DATADIR%%/public/app/features/styleguide/styleguide.ts +%%DATADIR%%/public/app/features/templating/adhoc_variable.ts +%%DATADIR%%/public/app/features/templating/all.ts +%%DATADIR%%/public/app/features/templating/constant_variable.ts +%%DATADIR%%/public/app/features/templating/custom_variable.ts +%%DATADIR%%/public/app/features/templating/datasource_variable.ts +%%DATADIR%%/public/app/features/templating/editor_ctrl.ts +%%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.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/template_srv.ts +%%DATADIR%%/public/app/features/templating/variable.ts +%%DATADIR%%/public/app/features/templating/variable_srv.ts +%%DATADIR%%/public/app/index.ts +%%DATADIR%%/public/app/partials/confirm_modal.html +%%DATADIR%%/public/app/partials/dashboard.html +%%DATADIR%%/public/app/partials/edit_json.html +%%DATADIR%%/public/app/partials/error.html +%%DATADIR%%/public/app/partials/login.html +%%DATADIR%%/public/app/partials/modal.html +%%DATADIR%%/public/app/partials/panelgeneral.html +%%DATADIR%%/public/app/partials/reset_password.html +%%DATADIR%%/public/app/partials/signup_invited.html +%%DATADIR%%/public/app/partials/signup_step2.html +%%DATADIR%%/public/app/partials/valueSelectDropdown.html +%%DATADIR%%/public/app/plugins/app/testdata/dashboards/alerts.json +%%DATADIR%%/public/app/plugins/app/testdata/dashboards/graph_last_1h.json +%%DATADIR%%/public/app/plugins/app/testdata/datasource/datasource.ts +%%DATADIR%%/public/app/plugins/app/testdata/datasource/module.ts +%%DATADIR%%/public/app/plugins/app/testdata/datasource/plugin.json +%%DATADIR%%/public/app/plugins/app/testdata/datasource/query_ctrl.ts +%%DATADIR%%/public/app/plugins/app/testdata/module.ts +%%DATADIR%%/public/app/plugins/app/testdata/partials/query.editor.html +%%DATADIR%%/public/app/plugins/app/testdata/plugin.json +%%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.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 +%%DATADIR%%/public/app/plugins/datasource/cloudwatch/partials/config.html +%%DATADIR%%/public/app/plugins/datasource/cloudwatch/partials/query.editor.html +%%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.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 +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/config_ctrl.ts +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/datasource.ts +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/elastic_response.ts +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/img/elasticsearch.svg +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/index_pattern.ts +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/metric_agg.js +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/module.ts +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/partials/annotations.editor.html +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/partials/bucket_agg.html +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/partials/config.html +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/partials/metric_agg.html +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/partials/query.editor.html +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/plugin.json +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/query_builder.ts +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/query_ctrl.ts +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/query_def.ts +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/query_help.md +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/specs/datasource_specs.ts +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/specs/elastic_response_specs.ts +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/specs/index_pattern_specs.ts +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/specs/query_builder_specs.ts +%%DATADIR%%/public/app/plugins/datasource/elasticsearch/specs/query_def_specs.ts +%%DATADIR%%/public/app/plugins/datasource/grafana-live/_plugin.json +%%DATADIR%%/public/app/plugins/datasource/grafana-live/datasource.ts +%%DATADIR%%/public/app/plugins/datasource/grafana-live/module.ts +%%DATADIR%%/public/app/plugins/datasource/grafana-live/partials/query.editor.html +%%DATADIR%%/public/app/plugins/datasource/grafana/README.md +%%DATADIR%%/public/app/plugins/datasource/grafana/datasource.ts +%%DATADIR%%/public/app/plugins/datasource/grafana/module.ts +%%DATADIR%%/public/app/plugins/datasource/grafana/partials/annotations.editor.html +%%DATADIR%%/public/app/plugins/datasource/grafana/partials/query.editor.html +%%DATADIR%%/public/app/plugins/datasource/grafana/plugin.json +%%DATADIR%%/public/app/plugins/datasource/graphite/README.md +%%DATADIR%%/public/app/plugins/datasource/graphite/add_graphite_func.js +%%DATADIR%%/public/app/plugins/datasource/graphite/config_ctrl.ts +%%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.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 +%%DATADIR%%/public/app/plugins/datasource/graphite/parser.ts +%%DATADIR%%/public/app/plugins/datasource/graphite/partials/annotations.editor.html +%%DATADIR%%/public/app/plugins/datasource/graphite/partials/config.html +%%DATADIR%%/public/app/plugins/datasource/graphite/partials/query.editor.html +%%DATADIR%%/public/app/plugins/datasource/graphite/plugin.json +%%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.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.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.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.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.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 +%%DATADIR%%/public/app/plugins/datasource/mixed/plugin.json +%%DATADIR%%/public/app/plugins/datasource/mysql/README.md +%%DATADIR%%/public/app/plugins/datasource/mysql/datasource.ts +%%DATADIR%%/public/app/plugins/datasource/mysql/img/mysql_logo.svg +%%DATADIR%%/public/app/plugins/datasource/mysql/module.ts +%%DATADIR%%/public/app/plugins/datasource/mysql/partials/annotations.editor.html +%%DATADIR%%/public/app/plugins/datasource/mysql/partials/config.html +%%DATADIR%%/public/app/plugins/datasource/mysql/partials/query.editor.html +%%DATADIR%%/public/app/plugins/datasource/mysql/plugin.json +%%DATADIR%%/public/app/plugins/datasource/mysql/query_ctrl.ts +%%DATADIR%%/public/app/plugins/datasource/mysql/response_parser.ts +%%DATADIR%%/public/app/plugins/datasource/mysql/specs/datasource_specs.ts +%%DATADIR%%/public/app/plugins/datasource/opentsdb/README.md +%%DATADIR%%/public/app/plugins/datasource/opentsdb/config_ctrl.ts +%%DATADIR%%/public/app/plugins/datasource/opentsdb/datasource.d.ts +%%DATADIR%%/public/app/plugins/datasource/opentsdb/datasource.js +%%DATADIR%%/public/app/plugins/datasource/opentsdb/img/opentsdb_logo.png +%%DATADIR%%/public/app/plugins/datasource/opentsdb/module.ts +%%DATADIR%%/public/app/plugins/datasource/opentsdb/partials/annotations.editor.html +%%DATADIR%%/public/app/plugins/datasource/opentsdb/partials/config.html +%%DATADIR%%/public/app/plugins/datasource/opentsdb/partials/query.editor.html +%%DATADIR%%/public/app/plugins/datasource/opentsdb/plugin.json +%%DATADIR%%/public/app/plugins/datasource/opentsdb/query_ctrl.ts +%%DATADIR%%/public/app/plugins/datasource/opentsdb/specs/datasource-specs.ts +%%DATADIR%%/public/app/plugins/datasource/opentsdb/specs/query-ctrl-specs.ts +%%DATADIR%%/public/app/plugins/datasource/postgres/README.md +%%DATADIR%%/public/app/plugins/datasource/postgres/datasource.ts +%%DATADIR%%/public/app/plugins/datasource/postgres/img/postgresql_logo.svg +%%DATADIR%%/public/app/plugins/datasource/postgres/mode-sql.js +%%DATADIR%%/public/app/plugins/datasource/postgres/module.ts +%%DATADIR%%/public/app/plugins/datasource/postgres/partials/annotations.editor.html +%%DATADIR%%/public/app/plugins/datasource/postgres/partials/config.html +%%DATADIR%%/public/app/plugins/datasource/postgres/partials/query.editor.html +%%DATADIR%%/public/app/plugins/datasource/postgres/plugin.json +%%DATADIR%%/public/app/plugins/datasource/postgres/query_ctrl.ts +%%DATADIR%%/public/app/plugins/datasource/postgres/response_parser.ts +%%DATADIR%%/public/app/plugins/datasource/postgres/specs/datasource_specs.ts +%%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.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 +%%DATADIR%%/public/app/plugins/datasource/prometheus/partials/config.html +%%DATADIR%%/public/app/plugins/datasource/prometheus/partials/query.editor.html +%%DATADIR%%/public/app/plugins/datasource/prometheus/plugin.json +%%DATADIR%%/public/app/plugins/datasource/prometheus/query_ctrl.ts +%%DATADIR%%/public/app/plugins/datasource/prometheus/snippets/prometheus.js +%%DATADIR%%/public/app/plugins/datasource/prometheus/specs/completer_specs.ts +%%DATADIR%%/public/app/plugins/datasource/prometheus/specs/datasource_specs.ts +%%DATADIR%%/public/app/plugins/datasource/prometheus/specs/metric_find_query_specs.ts +%%DATADIR%%/public/app/plugins/panel/alertlist/README.md +%%DATADIR%%/public/app/plugins/panel/alertlist/editor.html +%%DATADIR%%/public/app/plugins/panel/alertlist/img/icn-singlestat-panel.svg +%%DATADIR%%/public/app/plugins/panel/alertlist/module.html +%%DATADIR%%/public/app/plugins/panel/alertlist/module.ts +%%DATADIR%%/public/app/plugins/panel/alertlist/plugin.json +%%DATADIR%%/public/app/plugins/panel/dashlist/README.md +%%DATADIR%%/public/app/plugins/panel/dashlist/editor.html +%%DATADIR%%/public/app/plugins/panel/dashlist/img/icn-dashlist-panel.svg +%%DATADIR%%/public/app/plugins/panel/dashlist/module.html +%%DATADIR%%/public/app/plugins/panel/dashlist/module.ts +%%DATADIR%%/public/app/plugins/panel/dashlist/plugin.json +%%DATADIR%%/public/app/plugins/panel/gettingstarted/README.md +%%DATADIR%%/public/app/plugins/panel/gettingstarted/editor.html +%%DATADIR%%/public/app/plugins/panel/gettingstarted/img/icn-dashlist-panel.svg +%%DATADIR%%/public/app/plugins/panel/gettingstarted/module.html +%%DATADIR%%/public/app/plugins/panel/gettingstarted/module.ts +%%DATADIR%%/public/app/plugins/panel/gettingstarted/plugin.json +%%DATADIR%%/public/app/plugins/panel/graph/README.md +%%DATADIR%%/public/app/plugins/panel/graph/axes_editor.html +%%DATADIR%%/public/app/plugins/panel/graph/axes_editor.ts +%%DATADIR%%/public/app/plugins/panel/graph/data_processor.ts +%%DATADIR%%/public/app/plugins/panel/graph/graph.ts +%%DATADIR%%/public/app/plugins/panel/graph/graph_tooltip.d.ts +%%DATADIR%%/public/app/plugins/panel/graph/graph_tooltip.js +%%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.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.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.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 +%%DATADIR%%/public/app/plugins/panel/graph/tab_display.html +%%DATADIR%%/public/app/plugins/panel/graph/tab_legend.html +%%DATADIR%%/public/app/plugins/panel/graph/template.ts +%%DATADIR%%/public/app/plugins/panel/graph/threshold_manager.ts +%%DATADIR%%/public/app/plugins/panel/graph/thresholds_form.ts +%%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 +%%DATADIR%%/public/app/plugins/panel/heatmap/heatmap_tooltip.ts +%%DATADIR%%/public/app/plugins/panel/heatmap/img/icn-heatmap-panel.svg +%%DATADIR%%/public/app/plugins/panel/heatmap/module.html +%%DATADIR%%/public/app/plugins/panel/heatmap/module.ts +%%DATADIR%%/public/app/plugins/panel/heatmap/partials/axes_editor.html +%%DATADIR%%/public/app/plugins/panel/heatmap/partials/display_editor.html +%%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.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 +%%DATADIR%%/public/app/plugins/panel/pluginlist/img/icn-dashlist-panel.svg +%%DATADIR%%/public/app/plugins/panel/pluginlist/module.html +%%DATADIR%%/public/app/plugins/panel/pluginlist/module.ts +%%DATADIR%%/public/app/plugins/panel/pluginlist/plugin.json +%%DATADIR%%/public/app/plugins/panel/singlestat/README.md +%%DATADIR%%/public/app/plugins/panel/singlestat/editor.html +%%DATADIR%%/public/app/plugins/panel/singlestat/img/icn-singlestat-panel.svg +%%DATADIR%%/public/app/plugins/panel/singlestat/mappings.html +%%DATADIR%%/public/app/plugins/panel/singlestat/module.html +%%DATADIR%%/public/app/plugins/panel/singlestat/module.ts +%%DATADIR%%/public/app/plugins/panel/singlestat/plugin.json +%%DATADIR%%/public/app/plugins/panel/singlestat/specs/singlestat_panel_spec.ts +%%DATADIR%%/public/app/plugins/panel/singlestat/specs/singlestat_specs.ts +%%DATADIR%%/public/app/plugins/panel/table/README.md +%%DATADIR%%/public/app/plugins/panel/table/column_options.html +%%DATADIR%%/public/app/plugins/panel/table/column_options.ts +%%DATADIR%%/public/app/plugins/panel/table/editor.html +%%DATADIR%%/public/app/plugins/panel/table/editor.ts +%%DATADIR%%/public/app/plugins/panel/table/img/icn-table-panel.svg +%%DATADIR%%/public/app/plugins/panel/table/module.html +%%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.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 +%%DATADIR%%/public/app/plugins/panel/text/img/icn-text-panel.svg +%%DATADIR%%/public/app/plugins/panel/text/module.html +%%DATADIR%%/public/app/plugins/panel/text/module.ts +%%DATADIR%%/public/app/plugins/panel/text/plugin.json +%%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/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.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 +%%DATADIR%%/public/dashboards/scripted_async.js +%%DATADIR%%/public/dashboards/scripted_templated.js +%%DATADIR%%/public/dashboards/template_vars.json +%%DATADIR%%/public/emails/README.md +%%DATADIR%%/public/emails/alert_notification.html +%%DATADIR%%/public/emails/alert_notification_example.html +%%DATADIR%%/public/emails/invited_to_org.html +%%DATADIR%%/public/emails/new_user_invite.html +%%DATADIR%%/public/emails/reset_password.html +%%DATADIR%%/public/emails/signup_started.html +%%DATADIR%%/public/emails/welcome_on_signup.html +%%DATADIR%%/public/fonts/FontAwesome.otf +%%DATADIR%%/public/fonts/fontawesome-webfont.eot +%%DATADIR%%/public/fonts/fontawesome-webfont.svg +%%DATADIR%%/public/fonts/fontawesome-webfont.ttf +%%DATADIR%%/public/fonts/fontawesome-webfont.woff +%%DATADIR%%/public/fonts/fontawesome-webfont.woff2 +%%DATADIR%%/public/fonts/grafana-icons.eot +%%DATADIR%%/public/fonts/grafana-icons.svg +%%DATADIR%%/public/fonts/grafana-icons.ttf +%%DATADIR%%/public/fonts/grafana-icons.woff +%%DATADIR%%/public/fonts/opensans/59ZRklaO5bWGqF5A9baEERJtnKITppOI_IvcXXDNrsc.woff2 +%%DATADIR%%/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTRWV49_lSm1NYrwo-zkhivY.woff2 +%%DATADIR%%/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTT0LW-43aMEzIO6XUTLjad8.woff2 +%%DATADIR%%/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTZX5f-9o1vgP2EXwfjgl7AY.woff2 +%%DATADIR%%/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTa-j2U0lmluP9RWlSytm3ho.woff2 +%%DATADIR%%/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTaaRobkAwv3vxw3jMhVENGA.woff2 +%%DATADIR%%/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTegdm0LZdjqr5-oayXSOefg.woff2 +%%DATADIR%%/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTf8zf_FOSsgRmwsS7Aa9k2w.woff2 +%%DATADIR%%/public/fonts/opensans/K88pR3goAWT7BTt32Z01mxJtnKITppOI_IvcXXDNrsc.woff2 +%%DATADIR%%/public/fonts/opensans/LWCjsQkB6EMdfHrEVqA1KRJtnKITppOI_IvcXXDNrsc.woff2 +%%DATADIR%%/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNShWV49_lSm1NYrwo-zkhivY.woff2 +%%DATADIR%%/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSj0LW-43aMEzIO6XUTLjad8.woff2 +%%DATADIR%%/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSpX5f-9o1vgP2EXwfjgl7AY.woff2 +%%DATADIR%%/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSq-j2U0lmluP9RWlSytm3ho.woff2 +%%DATADIR%%/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSqaRobkAwv3vxw3jMhVENGA.woff2 +%%DATADIR%%/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSugdm0LZdjqr5-oayXSOefg.woff2 +%%DATADIR%%/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSv8zf_FOSsgRmwsS7Aa9k2w.woff2 +%%DATADIR%%/public/fonts/opensans/RjgO7rYTmqiVp7vzi-Q5URJtnKITppOI_IvcXXDNrsc.woff2 +%%DATADIR%%/public/fonts/opensans/cJZKeOuBrn4kERxqtaUH3VtXRa8TVwTICgirnJhmVJw.woff2 +%%DATADIR%%/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzBWV49_lSm1NYrwo-zkhivY.woff2 +%%DATADIR%%/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzD0LW-43aMEzIO6XUTLjad8.woff2 +%%DATADIR%%/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzJX5f-9o1vgP2EXwfjgl7AY.woff2 +%%DATADIR%%/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzK-j2U0lmluP9RWlSytm3ho.woff2 +%%DATADIR%%/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzKaRobkAwv3vxw3jMhVENGA.woff2 +%%DATADIR%%/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzOgdm0LZdjqr5-oayXSOefg.woff2 +%%DATADIR%%/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzP8zf_FOSsgRmwsS7Aa9k2w.woff2 +%%DATADIR%%/public/fonts/opensans/u-WUoqrET9fUeobQW7jkRRJtnKITppOI_IvcXXDNrsc.woff2 +%%DATADIR%%/public/fonts/opensans/xjAJXh38I15wypJXxuGMBiYE0-AqJ3nfInTTiDXDjU4.woff2 +%%DATADIR%%/public/fonts/opensans/xjAJXh38I15wypJXxuGMBjTOQ_MqJVwkKsUn0wKzc2I.woff2 +%%DATADIR%%/public/fonts/opensans/xjAJXh38I15wypJXxuGMBjUj_cnvWIuuBMVgbX098Mw.woff2 +%%DATADIR%%/public/fonts/opensans/xjAJXh38I15wypJXxuGMBkbcKLIaa1LC45dFaAfauRA.woff2 +%%DATADIR%%/public/fonts/opensans/xjAJXh38I15wypJXxuGMBmo_sUJ8uO4YLWRInS22T3Y.woff2 +%%DATADIR%%/public/fonts/opensans/xjAJXh38I15wypJXxuGMBo4P5ICox8Kq3LLUNMylGO4.woff2 +%%DATADIR%%/public/fonts/opensans/xjAJXh38I15wypJXxuGMBr6up8jxqWt8HVA3mDhkV_0.woff2 +%%DATADIR%%/public/fonts/opensans/xozscpT2726on7jbcb_pAhJtnKITppOI_IvcXXDNrsc.woff2 +%%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 +%%DATADIR%%/public/img/background_tease.jpg +%%DATADIR%%/public/img/check_radio_sheet.png +%%DATADIR%%/public/img/checkbox.png +%%DATADIR%%/public/img/checkbox_white.png +%%DATADIR%%/public/img/critical.svg +%%DATADIR%%/public/img/cubes.png +%%DATADIR%%/public/img/envelope.png +%%DATADIR%%/public/img/fav32.png +%%DATADIR%%/public/img/glyphicons-halflings-white.png +%%DATADIR%%/public/img/glyphicons-halflings.png +%%DATADIR%%/public/img/grab_dark.svg +%%DATADIR%%/public/img/grab_light.svg +%%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 +%%DATADIR%%/public/img/load_big.gif +%%DATADIR%%/public/img/loading-pulse.svg +%%DATADIR%%/public/img/logo_transparent_200x.png +%%DATADIR%%/public/img/logo_transparent_200x75.png +%%DATADIR%%/public/img/logo_transparent_400x.png +%%DATADIR%%/public/img/mixed_styles.png +%%DATADIR%%/public/img/online.svg +%%DATADIR%%/public/img/page_header_line.png +%%DATADIR%%/public/img/plugin-default-logo_dark.svg +%%DATADIR%%/public/img/plugin-default-logo_light.svg +%%DATADIR%%/public/img/small.png +%%DATADIR%%/public/img/transparent.png +%%DATADIR%%/public/img/user_profile.png +%%DATADIR%%/public/img/warn-tiny.svg +%%DATADIR%%/public/img/warn.svg +%%DATADIR%%/public/robots.txt +%%DATADIR%%/public/sass/_grafana.scss +%%DATADIR%%/public/sass/_old_responsive.scss +%%DATADIR%%/public/sass/_variables.dark.scss +%%DATADIR%%/public/sass/_variables.light.scss +%%DATADIR%%/public/sass/_variables.scss +%%DATADIR%%/public/sass/base/_code.scss +%%DATADIR%%/public/sass/base/_font_awesome.scss +%%DATADIR%%/public/sass/base/_fonts.scss +%%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 +%%DATADIR%%/public/sass/base/font-awesome/_animated.scss +%%DATADIR%%/public/sass/base/font-awesome/_bordered-pulled.scss +%%DATADIR%%/public/sass/base/font-awesome/_core.scss +%%DATADIR%%/public/sass/base/font-awesome/_fixed-width.scss +%%DATADIR%%/public/sass/base/font-awesome/_icons.scss +%%DATADIR%%/public/sass/base/font-awesome/_larger.scss +%%DATADIR%%/public/sass/base/font-awesome/_list.scss +%%DATADIR%%/public/sass/base/font-awesome/_mixins.scss +%%DATADIR%%/public/sass/base/font-awesome/_path.scss +%%DATADIR%%/public/sass/base/font-awesome/_rotated-flipped.scss +%%DATADIR%%/public/sass/base/font-awesome/_screen-reader.scss +%%DATADIR%%/public/sass/base/font-awesome/_stacked.scss +%%DATADIR%%/public/sass/base/font-awesome/_variables.scss +%%DATADIR%%/public/sass/components/_alerts.scss +%%DATADIR%%/public/sass/components/_buttons.scss +%%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/_infobox.scss +%%DATADIR%%/public/sass/components/_json_explorer.scss +%%DATADIR%%/public/sass/components/_jsontree.scss +%%DATADIR%%/public/sass/components/_modals.scss +%%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 +%%DATADIR%%/public/sass/components/_panel_graph.scss +%%DATADIR%%/public/sass/components/_panel_heatmap.scss +%%DATADIR%%/public/sass/components/_panel_pluginlist.scss +%%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 +%%DATADIR%%/public/sass/components/_switch.scss +%%DATADIR%%/public/sass/components/_tabbed_view.scss +%%DATADIR%%/public/sass/components/_tables_lists.scss +%%DATADIR%%/public/sass/components/_tabs.scss +%%DATADIR%%/public/sass/components/_tags.scss +%%DATADIR%%/public/sass/components/_tagsinput.scss +%%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 +%%DATADIR%%/public/sass/grafana.dark.scss +%%DATADIR%%/public/sass/grafana.light.scss +%%DATADIR%%/public/sass/icons.json +%%DATADIR%%/public/sass/layout/_lists.scss +%%DATADIR%%/public/sass/layout/_page.scss +%%DATADIR%%/public/sass/mixins/_animations.scss +%%DATADIR%%/public/sass/mixins/_breakpoints.scss +%%DATADIR%%/public/sass/mixins/_buttons.scss +%%DATADIR%%/public/sass/mixins/_drop_element.scss +%%DATADIR%%/public/sass/mixins/_forms.scss +%%DATADIR%%/public/sass/mixins/_grid-framework.scss +%%DATADIR%%/public/sass/mixins/_grid.scss +%%DATADIR%%/public/sass/mixins/_hover.scss +%%DATADIR%%/public/sass/mixins/_mixins.scss +%%DATADIR%%/public/sass/pages/_admin.scss +%%DATADIR%%/public/sass/pages/_alerting.scss +%%DATADIR%%/public/sass/pages/_dashboard.scss +%%DATADIR%%/public/sass/pages/_errorpage.scss +%%DATADIR%%/public/sass/pages/_history.scss +%%DATADIR%%/public/sass/pages/_login.scss +%%DATADIR%%/public/sass/pages/_playlist.scss +%%DATADIR%%/public/sass/pages/_plugins.scss +%%DATADIR%%/public/sass/pages/_signup.scss +%%DATADIR%%/public/sass/pages/_styleguide.scss +%%DATADIR%%/public/sass/utils/_angular.scss +%%DATADIR%%/public/sass/utils/_flex.scss +%%DATADIR%%/public/sass/utils/_spacings.scss +%%DATADIR%%/public/sass/utils/_utils.scss +%%DATADIR%%/public/sass/utils/_validation.scss +%%DATADIR%%/public/sass/utils/_widths.scss +%%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.ts +%%DATADIR%%/public/vendor/angular-other/angular-strap.js +%%DATADIR%%/public/vendor/angular-other/datepicker.js +%%DATADIR%%/public/vendor/angular-other/timepicker.js +%%DATADIR%%/public/vendor/angular-ui/ui-bootstrap-tpls.js +%%DATADIR%%/public/vendor/bootstrap/bootstrap.js +%%DATADIR%%/public/vendor/css/spectrum.css +%%DATADIR%%/public/vendor/css/timepicker.css +%%DATADIR%%/public/vendor/flot/jquery.flot.crosshair.js +%%DATADIR%%/public/vendor/flot/jquery.flot.dashes.js +%%DATADIR%%/public/vendor/flot/jquery.flot.fillbelow.js +%%DATADIR%%/public/vendor/flot/jquery.flot.fillbetween.js +%%DATADIR%%/public/vendor/flot/jquery.flot.gauge.js +%%DATADIR%%/public/vendor/flot/jquery.flot.js +%%DATADIR%%/public/vendor/flot/jquery.flot.pie.js +%%DATADIR%%/public/vendor/flot/jquery.flot.selection.js +%%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/error.html +%%DATADIR%%/public/views/index.html +%%DATADIR%%/public/views/index.template.html +@dir %%DATADIR%%/data/log +@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