mirror of
https://github.com/prometheus/node_exporter.git
synced 2025-01-13 15:01:16 -08:00
Use absolute jsonnet import paths
This should be the way forward when importing libraries in jsonnet. It's closer to how Go imports look and makes it more obvious where packages live. This is not breaking anything, as the old imports were already symlinks to the now directly used directories. Signed-off-by: Matthias Loibl <mail@matthiasloibl.com>
This commit is contained in:
parent
9c9c636305
commit
77e76485c0
|
@ -1,10 +1,10 @@
|
|||
local grafana = import 'grafonnet/grafana.libsonnet';
|
||||
local grafana = import 'github.com/grafana/grafonnet-lib/grafonnet/grafana.libsonnet';
|
||||
local dashboard = grafana.dashboard;
|
||||
local row = grafana.row;
|
||||
local prometheus = grafana.prometheus;
|
||||
local template = grafana.template;
|
||||
local graphPanel = grafana.graphPanel;
|
||||
local promgrafonnet = import 'promgrafonnet/promgrafonnet.libsonnet';
|
||||
local promgrafonnet = import 'github.com/kubernetes-monitoring/kubernetes-mixin/lib/promgrafonnet/promgrafonnet.libsonnet';
|
||||
local gauge = promgrafonnet.gauge;
|
||||
|
||||
{
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
local g = import 'grafana-builder/grafana.libsonnet';
|
||||
local g = import 'github.com/grafana/jsonnet-libs/grafana-builder/grafana.libsonnet';
|
||||
|
||||
{
|
||||
grafanaDashboards+:: {
|
||||
|
|
|
@ -29,5 +29,5 @@
|
|||
"version": "master"
|
||||
}
|
||||
],
|
||||
"legacyImports": true
|
||||
"legacyImports": false
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue