This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
gitops-tbrnt/monitoring/vendor/github.com/grafana/grafonnet-lib/grafonnet/link.libsonnet

25 lines
416 B
Plaintext

{
dashboards(
title,
tags,
asDropdown=true,
includeVars=false,
keepTime=false,
icon='external link',
url='',
targetBlank=false,
type='dashboards',
)::
{
asDropdown: asDropdown,
icon: icon,
includeVars: includeVars,
keepTime: keepTime,
tags: tags,
title: title,
type: type,
url: url,
targetBlank: targetBlank,
},
}