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/grafonnet/sql.libsonnet

12 lines
185 B
Plaintext
Raw Normal View History

2020-02-11 21:21:17 +00:00
{
target(
rawSql,
datasource=null,
format='time_series',
):: {
[if datasource != null then 'datasource']: datasource,
format: format,
rawSql: rawSql,
},
}