Skip to content

sivukhin/cuemon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cuemon

cuemon is a tool for managing Grafana dashboards and panels using CUE language modules. It provides functionality for bootstrapping and updating monitoring configurations by converting Grafana JSON dashboards and panels into CUE format.

Installation

To install cuemon, follow these steps:

  1. Install the Go programming language if you haven't already
  2. Run the following command to install cuemon:
$> go get github.com/sivukhin/cuemon

Usage

cuemon provides two main commands: bootstrap and update.

bootstrap

The bootstrap command is used to initialize monitoring configurations from a Grafana dashboard JSON file. It converts the dashboard JSON into CUE format.

$> cuemon bootstrap -input <dashboard.json> -module <module-name> -dir <output-directory> -overwrite
  • -input: Path to the input Grafana dashboard JSON file.
  • -module: Name of the CUE module to create.
  • -dir: Target directory where the cuemon setup will be initialized.
  • -overwrite: Enable unsafe mode to allow overwriting files.

update

The update command updates existing monitoring configurations with new panels. It updates CUE files by converting the new panel JSON into CUE format and inserting it into the appropriate location.

$> cuemon update -input <panel.json> -dir <cuemon-directory> -overwrite
  • -input: Path to the input Grafana panel JSON file.
  • -dir: Directory containing the cuemon setup to update.
  • -overwrite: Enable unsafe mode to allow overwriting files.