mirror of
https://github.com/cuigh/swirl
synced 2025-06-26 18:16:50 +00:00
Allow adding metric charts to home page
This commit is contained in:
@@ -21,17 +21,18 @@ type Chart struct {
|
||||
Options data.Map `json:"options"`
|
||||
}
|
||||
|
||||
func NewChart(name, title, label, query, unit string) *Chart {
|
||||
func NewChart(dashboard, name, title, label, query, unit string) *Chart {
|
||||
return &Chart{
|
||||
Name: name,
|
||||
Title: title,
|
||||
Description: title,
|
||||
Label: label,
|
||||
Query: query,
|
||||
Dashboard: dashboard,
|
||||
Type: "line",
|
||||
Unit: unit,
|
||||
Width: 12,
|
||||
Height: 50,
|
||||
Height: 150,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user