Grafana Dashboard Dsl Save Abandoned

DSL for generating Grafana dashboards

Project README

Build Status codecov License: MIT Javadoc Download

Grafana Dashboard DSL

Kotlin DSL for generating Grafana dashboards.

Features

  • Grafana Dashboards as a Code: review and vcs control over dashboards
  • Reusable dashboards, panels, configs, etc
  • Share visualization style across different metrics
  • Easy to keep metrics up-to-date
  • Easy to extend to most features of Grafana
  • Easy to include in CI cycle: dashboard is a JSON-document
  • Power of Kotlin language

Supported data sources

  • Graphite (./src/examples/kotlin/ru/yoomoney/tech/grafana/dsl/examples/GrafanaGraphiteDemoLayouts.kts)
  • Prometheus (./src/examples/kotlin/ru/yoomoney/tech/grafana/dsl/examples/GrafanaPrometheusDemoLayouts.kts)
  • Zabbix

Usage with gradle plugin

See documentation at Grafana Dashboard Plugin

Manual usage

build.gradle

sourceSets {
    grafana {
        kotlin
    }
}

dependencies {
    grafanaCompile 'ru.yoomoney.tech:grafana-dashboard-dsl:3.0.0'    
}

Code for dashboards generation must be placed in ${projectDir}/src/grafana/kotlin/. Generation performed manually:

import ru.yoomoney.tech. grafana.dsl.dashboard

fun main(args: Array<String>) {
    println(dashboard(title = "My custom dashboard") {
        panels {
            // ...
        }
    })
}

Examples

Examples are in ./src/examples/kotlin/ru/yoomoney/tech/grafana/dsl/examples

Development

To create new dashboards, panels, metrics, and others, create a class (usually with postfix *Configuration or*Builder), mark it with annotation ru.yoomoney.tech.grafana.dsl.DashboardElement, and create data-class for it's contents, that's implements ru.yoomoney.tech.grafana.dsl.json.Json

For example see DashboardBuilder and Dashboard classes

How to contribute?

Just fork the repo and send us a pull request.

Make sure your branch builds without any warnings/issues.

Open Source Agenda is not affiliated with "Grafana Dashboard Dsl" Project. README Source: yoomoney/grafana-dashboard-dsl
Stars
51
Open Issues
3
Last Commit
2 years ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating