-
Notifications
You must be signed in to change notification settings - Fork 0
Local development guide
Nick Richmond edited this page Feb 11, 2025
·
1 revision
Welcome to the explore-metrics wiki!
- Node.js 22 or higher
- Docker Desktop
- Clone this repo: grafana/metrics-drilldown
- In your terminal, navigate to the location of the metrics-drilldown project
-
npm install
to install the project’s dependencies - Ensure that Docker Desktop is running
-
npm run server
spins up a Grafana instance with a Prometheus data source (in Docker) -
npm run dev
builds the app plugin and makes it reactive to code changes - In the sidebar, go to More apps > Metrics Drilldown
- Clone grafana/metrics-drilldown and switch to your branch of interest.
- Install frontend dependencies (
npm install
) - Build the frontend with the
build
script (npm run build
)
- Create a symlink for
grafana-metricsdrilldown-app
in the Grafana plugins directory. We do this by running the following command from thegrafana/grafana
root:
ln -s ../../../metrics-drilldown data/plugins/grafana-metricsdrilldown-app
- Configure Grafana to allow unsigned plugins by enabling
development
mode for apps inconf/custom.ini
:
app_mode = development
- Also in
conf/custom.ini
, ensure that theexploreMetricsUseExternalAppPlugin
feature toggle is enabled. This can be accomplished with either:
# conf/custom.ini
[feature_toggles]
enable=exploreMetricsUseExternalAppPlugin,someOtherToggleA,someOtherToggleB
or:
# conf/custom.ini
[feature_toggles]
exploreMetricsUseExternalAppPlugin = true
- Start/restart grafana
- In the Sidebar, go to More apps > Explore Metrics