package
Version:
v0.2.0
Opens a new window with list of versions in this module.
Published: Jun 15, 2022
License: AGPL-3.0
Opens a new window with license information.
Imports: 3
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
View Source
const (
UnitNanosecond = "ns"
UnitMicrosecond = "us"
UnitMillisecond = "ms"
UnitSecond = "s"
UnitMinute = "m"
UnitHour = "h"
)
type Chart struct {
Name string `yaml:"name" json:"name"`
Unit string `yaml:"unit,omitempty" json:"unit,omitempty"`
Metrics []string `yaml:"metrics" json:"metrics"`
}
type Config struct {
Projects map[string]*Project `yaml:"projects" json:"projects"`
}
type Dashboard struct {
Name string `yaml:"name" json:"name"`
Charts []*Chart `yaml:"charts" json:"charts"`
}
type Project struct {
Name string `yaml:"name" json:"name"`
Dashboards []*Dashboard `yaml:"dashboards" json:"dashboards"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.