forked from grafana-tools/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
panel.go
644 lines (611 loc) · 18.7 KB
/
panel.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
package sdk
/*
Copyright 2016 Alexander I.Grafov <grafov@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
ॐ तारे तुत्तारे तुरे स्व
*/
import (
"encoding/json"
"errors"
)
// Each panel may be one of these types.
const (
CustomType panelType = iota
DashlistType
GraphType
TableType
TextType
PluginlistType
SinglestatType
)
const MixedSource = "-- Mixed --"
type (
// Panel represents panels of different types defined in Grafana.
Panel struct {
commonPanel
// Should be initialized only one type of panels.
// OfType field defines which of types below will be used.
*GraphPanel
*TablePanel
*TextPanel
*SinglestatPanel
*DashlistPanel
*PluginlistPanel
*CustomPanel
}
panelType int8
commonPanel struct {
OfType panelType `json:"-"` // it required for defining type of the panel
ID uint `json:"id"`
Title string `json:"title"` // general
Span float32 `json:"span"` // general
Links []link `json:"links,omitempty"` // general
Datasource *string `json:"datasource,omitempty"` // metrics
Height *string `json:"height,omitempty"` // general
Renderer *string `json:"renderer,omitempty"` // display styles
Repeat *string `json:"repeat,omitempty"` // templating options
//RepeatIteration *int64 `json:"repeatIteration,omitempty"`
RepeatPanelID *uint `json:"repeatPanelId,omitempty"`
ScopedVars map[string]struct {
Selected bool `json:"selected"`
Text string `json:"text"`
Value string `json:"value"`
} `json:"scopedVars,omitempty"`
Transparent bool `json:"transparent"`
MinSpan *float32 `json:"minSpan,omitempty"` // templating options
Type string `json:"type"`
Error bool `json:"error"`
IsNew bool `json:"isNew"`
Editable bool `json:"editable"`
HideTimeOverride *bool `json:"hideTimeOverride,omitempty"`
}
GraphPanel struct {
AliasColors interface{} `json:"aliasColors"` // XXX
Bars bool `json:"bars"`
Fill int `json:"fill"`
// Grid grid `json:"grid"` obsoleted in 4.1 by xaxis and yaxis
Legend struct {
AlignAsTable bool `json:"alignAsTable"`
Avg bool `json:"avg"`
Current bool `json:"current"`
HideEmpty bool `json:"hideEmpty"`
HideZero bool `json:"hideZero"`
Max bool `json:"max"`
Min bool `json:"min"`
RightSide bool `json:"rightSide"`
Show bool `json:"show"`
Total bool `json:"total"`
Values bool `json:"values"`
SideWidth *uint `json:"sideWidth,omitempty"`
} `json:"legend,omitempty"`
LeftYAxisLabel *string `json:"leftYAxisLabel,omitempty"`
RightYAxisLabel *string `json:"rightYAxisLabel,omitempty"`
Lines bool `json:"lines"`
Linewidth uint `json:"linewidth"`
NullPointMode string `json:"nullPointMode"`
Percentage bool `json:"percentage"`
Pointradius int `json:"pointradius"`
Points bool `json:"points"`
SeriesOverrides []SeriesOverride `json:"seriesOverrides,omitempty"`
Stack bool `json:"stack"`
SteppedLine bool `json:"steppedLine"`
Targets []Target `json:"targets,omitempty"`
TimeFrom *string `json:"timeFrom,omitempty"`
TimeShift *string `json:"timeShift,omitempty"`
Tooltip Tooltip `json:"tooltip"`
XAxis bool `json:"x-axis,omitempty"`
YAxis bool `json:"y-axis,omitempty"`
YFormats []string `json:"y_formats,omitempty"`
Xaxis Axis `json:"xaxis"` // was added in Grafana 4.x?
Yaxes []Axis `json:"yaxes"` // was added in Grafana 4.x?
Decimals *uint `json:"decimals,omitempty"`
}
Tooltip struct {
Shared bool `json:"shared"`
ValueType string `json:"value_type"`
MsResolution bool `json:"msResolution,omitempty"` // was added in Grafana 3.x
Sort int `json:"sort,omitempty"`
}
TablePanel struct {
Columns []column `json:"columns"`
Sort *struct {
Col uint `json:"col"`
Desc bool `json:"desc"`
} `json:"sort,omitempty"`
Styles []columnStyle `json:"styles"`
Transform string `json:"transform"`
Targets []Target `json:"targets,omitempty"`
Scroll bool `json:"scroll"` // from grafana 3.x
}
TextPanel struct {
Content string `json:"content"`
Mode string `json:"mode"`
PageSize uint `json:"pageSize"`
Scroll bool `json:"scroll"`
ShowHeader bool `json:"showHeader"`
Sort struct {
Col int `json:"col"`
Desc bool `json:"desc"`
} `json:"sort"`
Styles []columnStyle `json:"styles"`
}
SinglestatPanel struct {
Colors []string `json:"colors"`
ColorValue bool `json:"colorValue"`
ColorBackground bool `json:"colorBackground"`
Decimals int `json:"decimals"`
Format string `json:"format"`
MaxDataPoints *int `json:"maxDataPoints,omitempty"`
NullPointMode string `json:"nullPointMode"`
Postfix *string `json:"postfix,omitempty"`
Prefix *string `json:"prefix,omitempty"`
PostfixFontSize *string `json:"postfixFontSize,omitempty"`
PrefixFontSize *string `json:"prefixFontSize,omitempty"`
SparkLine struct {
FillColor *string `json:"fillColor,omitempty"`
Full bool `json:"full,omitempty"`
LineColor *string `json:"lineColor,omitempty"`
Show bool `json:"show,omitempty"`
} `json:"sparkline,omitempty"`
ValueFontSize string `json:"valueFontSize"`
ValueMaps []valueMap `json:"valueMaps"`
ValueName string `json:"valueName"`
Targets []Target `json:"targets,omitempty"`
Thresholds string `json:"thresholds"`
Gauge struct {
MaxValue int `json:"maxValue"`
MinValue int `json:"minValue"`
Show bool `json:"show"`
ThresholdLabels bool `json:"thresholdLabels"`
ThresholdMarkers bool `json:"thresholdMarkers"`
} `json:"gauge,omitempty"`
}
DashlistPanel struct {
Mode string `json:"mode"`
Limit uint `json:"limit"`
Query string `json:"query"`
Tags []string `json:"tags"`
}
PluginlistPanel struct {
Limit int `json:"limit,omitempty"`
}
CustomPanel map[string]interface{}
)
// for a graph panel
type (
// TODO look at schema versions carefully
// grid was obsoleted by xaxis and yaxes
grid struct {
LeftLogBase *int `json:"leftLogBase"`
LeftMax *int `json:"leftMax"`
LeftMin *int `json:"leftMin"`
RightLogBase *int `json:"rightLogBase"`
RightMax *int `json:"rightMax"`
RightMin *int `json:"rightMin"`
Threshold1 *float64 `json:"threshold1"`
Threshold1Color string `json:"threshold1Color"`
Threshold2 *float64 `json:"threshold2"`
Threshold2Color string `json:"threshold2Color"`
ThresholdLine bool `json:"thresholdLine"`
}
xaxis struct {
Mode string `json:"mode"`
Name interface{} `json:"name"` // TODO what is this?
Show bool `json:"show"`
Values *[]string `json:"values,omitempty"`
}
Axis struct {
Format string `json:"format"`
LogBase int `json:"logBase"`
Max *IntString `json:"max,omitempty"`
Min *IntString `json:"min,omitempty"`
Show bool `json:"show"`
}
SeriesOverride struct {
Alias string `json:"alias"`
Bars *bool `json:"bars,omitempty"`
Color *string `json:"color,omitempty"`
Fill *int `json:"fill,omitempty"`
FillBelowTo *string `json:"fillBelowTo,omitempty"`
Legend *bool `json:"legend,omitempty"`
Lines *bool `json:"lines,omitempty"`
Stack *BoolString `json:"stack,omitempty"`
Transform *string `json:"transform,omitempty"`
YAxis *int `json:"yaxis,omitempty"`
ZIndex *int `json:"zindex,omitempty"`
NullPointMode *string `json:"nullPointMode,omitempty"`
}
)
// for a table
type (
column struct {
TextType string `json:"text"`
Value string `json:"value"`
}
columnStyle struct {
DateFormat *string `json:"dateFormat,omitempty"`
Pattern string `json:"pattern"`
Type string `json:"type"`
ColorMode *string `json:"colorMode,omitempty"`
Colors *[]string `json:"colors,omitempty"`
Decimals *uint `json:"decimals,omitempty"`
Thresholds *[]string `json:"thresholds,omitempty"`
Unit *string `json:"unit,omitempty"`
}
)
// for a singlestat
type valueMap struct {
Op string `json:"op"`
TextType string `json:"text"`
Value string `json:"value"`
}
// for an any panel
type Target struct {
RefID string `json:"refId"`
Datasource string `json:"datasource,omitempty"`
// For Prometheus
Expr string `json:"expr,omitempty"`
IntervalFactor int `json:"intervalFactor,omitempty"`
Interval string `json:"interval,omitempty"`
Step int `json:"step,omitempty"`
LegendFormat string `json:"legendFormat,omitempty"`
// For Elasticsearch
DsType *string `json:"dsType,omitempty"`
Metrics []struct {
ID string `json:"id"`
Field string `json:"field"`
Type string `json:"type"`
} `json:"metrics,omitempty"`
Query string `json:"query,omitempty"`
Alias string `json:"alias,omitempty"`
RawQuery bool `json:"rawQuery,omitempty"`
TimeField string `json:"timeField,omitempty"`
BucketAggs []struct {
ID string `json:"id"`
Field string `json:"field"`
Type string `json:"type"`
Settings struct {
Interval string `json:"interval"`
MinDocCount int `json:"min_doc_count"`
} `json:"settings"`
} `json:"bucketAggs,omitempty"`
// For Graphite
Target string `json:"target,omitempty"`
}
// NewDashlist initializes panel with a dashlist panel.
func NewDashlist(title string) *Panel {
if title == "" {
title = "Panel Title"
}
render := "flot"
return &Panel{
commonPanel: commonPanel{
OfType: DashlistType,
Title: title,
Type: "dashlist",
Renderer: &render,
IsNew: true},
DashlistPanel: &DashlistPanel{}}
}
// NewGraph initializes panel with a graph panel.
func NewGraph(title string) *Panel {
if title == "" {
title = "Panel Title"
}
render := "flot"
return &Panel{
commonPanel: commonPanel{
OfType: GraphType,
Title: title,
Type: "graph",
Renderer: &render,
Span: 12,
IsNew: true},
GraphPanel: &GraphPanel{
NullPointMode: "connected",
Pointradius: 5,
XAxis: true,
YAxis: true,
}}
}
// NewTable initializes panel with a table panel.
func NewTable(title string) *Panel {
if title == "" {
title = "Panel Title"
}
render := "flot"
return &Panel{
commonPanel: commonPanel{
OfType: TableType,
Title: title,
Type: "table",
Renderer: &render,
IsNew: true},
TablePanel: &TablePanel{}}
}
// NewText initializes panel with a text panel.
func NewText(title string) *Panel {
if title == "" {
title = "Panel Title"
}
render := "flot"
return &Panel{
commonPanel: commonPanel{
OfType: TextType,
Title: title,
Type: "text",
Renderer: &render,
IsNew: true},
TextPanel: &TextPanel{}}
}
// NewSinglestat initializes panel with a singlestat panel.
func NewSinglestat(title string) *Panel {
if title == "" {
title = "Panel Title"
}
render := "flot"
return &Panel{
commonPanel: commonPanel{
OfType: SinglestatType,
Title: title,
Type: "singlestat",
Renderer: &render,
IsNew: true},
SinglestatPanel: &SinglestatPanel{}}
}
// NewPluginlist initializes panel with a singlestat panel.
func NewPluginlist(title string) *Panel {
if title == "" {
title = "Panel Title"
}
render := "flot"
return &Panel{
commonPanel: commonPanel{
OfType: PluginlistType,
Title: title,
Type: "pluginlist",
Renderer: &render,
IsNew: true},
PluginlistPanel: &PluginlistPanel{}}
}
// NewCustom initializes panel with a singlestat panel.
func NewCustom(title string) *Panel {
if title == "" {
title = "Panel Title"
}
render := "flot"
return &Panel{
commonPanel: commonPanel{
OfType: CustomType,
Title: title,
Type: "singlestat",
Renderer: &render,
IsNew: true},
CustomPanel: &CustomPanel{}}
}
// ResetTargets delete all targets defined for a panel.
func (p *Panel) ResetTargets() {
switch p.OfType {
case GraphType:
p.GraphPanel.Targets = nil
case SinglestatType:
p.SinglestatPanel.Targets = nil
case TableType:
p.TablePanel.Targets = nil
}
}
// AddTarget adds a new target as defined in the argument
// but with refId letter incremented. Value of refID from
// the argument will be used only if no target with such
// value already exists.
func (p *Panel) AddTarget(t *Target) {
switch p.OfType {
case GraphType:
p.GraphPanel.Targets = append(p.GraphPanel.Targets, *t)
case SinglestatType:
p.SinglestatPanel.Targets = append(p.SinglestatPanel.Targets, *t)
case TableType:
p.TablePanel.Targets = append(p.TablePanel.Targets, *t)
}
// TODO check for existing refID
}
// SetTarget updates a target if target with such refId exists
// or creates a new one.
func (p *Panel) SetTarget(t *Target) {
setTarget := func(t *Target, targets *[]Target) {
for i, target := range *targets {
if t.RefID == target.RefID {
(*targets)[i] = *t
return
}
}
(*targets) = append((*targets), *t)
}
switch p.OfType {
case GraphType:
setTarget(t, &p.GraphPanel.Targets)
case SinglestatType:
setTarget(t, &p.SinglestatPanel.Targets)
case TableType:
setTarget(t, &p.TablePanel.Targets)
}
}
// MapDatasources on all existing targets for the panel.
func (p *Panel) RepeatDatasourcesForEachTarget(dsNames ...string) {
repeatDS := func(dsNames []string, targets *[]Target) {
var refID = "A"
originalTargets := *targets
cleanedTargets := make([]Target, 0, len(originalTargets)*len(dsNames))
*targets = cleanedTargets
for _, target := range originalTargets {
for _, ds := range dsNames {
newTarget := target
newTarget.RefID = refID
newTarget.Datasource = ds
refID = incRefID(refID)
*targets = append(*targets, newTarget)
}
}
}
switch p.OfType {
case GraphType:
repeatDS(dsNames, &p.GraphPanel.Targets)
case SinglestatType:
repeatDS(dsNames, &p.SinglestatPanel.Targets)
case TableType:
repeatDS(dsNames, &p.TablePanel.Targets)
}
}
// RepeatTargetsForDatasources repeats all existing targets for a panel
// for all provided in the argument datasources. Existing datasources of
// targets are ignored.
func (p *Panel) RepeatTargetsForDatasources(dsNames ...string) {
repeatTarget := func(dsNames []string, targets *[]Target) {
var lastRefID string
lenTargets := len(*targets)
for i, name := range dsNames {
if i < lenTargets {
(*targets)[i].Datasource = name
lastRefID = (*targets)[i].RefID
} else {
newTarget := (*targets)[i%lenTargets]
lastRefID = incRefID(lastRefID)
newTarget.RefID = lastRefID
newTarget.Datasource = name
*targets = append(*targets, newTarget)
}
}
}
switch p.OfType {
case GraphType:
repeatTarget(dsNames, &p.GraphPanel.Targets)
case SinglestatType:
repeatTarget(dsNames, &p.SinglestatPanel.Targets)
case TableType:
repeatTarget(dsNames, &p.TablePanel.Targets)
}
}
// GetTargets is iterate over all panel targets. It just returns nil if
// no targets defined for panel of concrete type.
func (p *Panel) GetTargets() *[]Target {
switch p.OfType {
case GraphType:
return &p.GraphPanel.Targets
case SinglestatType:
return &p.SinglestatPanel.Targets
case TableType:
return &p.TablePanel.Targets
default:
return nil
}
}
type probePanel struct {
commonPanel
// json.RawMessage
}
func (p *Panel) UnmarshalJSON(b []byte) (err error) {
var probe probePanel
if err = json.Unmarshal(b, &probe); err == nil {
p.commonPanel = probe.commonPanel
switch probe.Type {
case "graph":
var graph GraphPanel
p.OfType = GraphType
if err = json.Unmarshal(b, &graph); err == nil {
p.GraphPanel = &graph
}
case "table":
var table TablePanel
p.OfType = TableType
if err = json.Unmarshal(b, &table); err == nil {
p.TablePanel = &table
}
case "text":
var text TextPanel
p.OfType = TextType
if err = json.Unmarshal(b, &text); err == nil {
p.TextPanel = &text
}
case "singlestat":
var singlestat SinglestatPanel
p.OfType = SinglestatType
if err = json.Unmarshal(b, &singlestat); err == nil {
p.SinglestatPanel = &singlestat
}
case "dashlist":
var dashlist DashlistPanel
p.OfType = DashlistType
if err = json.Unmarshal(b, &dashlist); err == nil {
p.DashlistPanel = &dashlist
}
default:
var custom = make(CustomPanel)
p.OfType = CustomType
if err = json.Unmarshal(b, &custom); err == nil {
p.CustomPanel = &custom
}
}
}
return
}
func (p *Panel) MarshalJSON() ([]byte, error) {
switch p.OfType {
case GraphType:
var outGraph = struct {
commonPanel
GraphPanel
}{p.commonPanel, *p.GraphPanel}
return json.Marshal(outGraph)
case TableType:
var outTable = struct {
commonPanel
TablePanel
}{p.commonPanel, *p.TablePanel}
return json.Marshal(outTable)
case TextType:
var outText = struct {
commonPanel
TextPanel
}{p.commonPanel, *p.TextPanel}
return json.Marshal(outText)
case SinglestatType:
var outSinglestat = struct {
commonPanel
SinglestatPanel
}{p.commonPanel, *p.SinglestatPanel}
return json.Marshal(outSinglestat)
case DashlistType:
var outDashlist = struct {
commonPanel
DashlistPanel
}{p.commonPanel, *p.DashlistPanel}
return json.Marshal(outDashlist)
case PluginlistType:
var outPluginlist = struct {
commonPanel
PluginlistPanel
}{p.commonPanel, *p.PluginlistPanel}
return json.Marshal(outPluginlist)
case CustomType:
var outCustom = struct {
commonPanel
CustomPanel
}{p.commonPanel, *p.CustomPanel}
return json.Marshal(outCustom)
}
return nil, errors.New("can't marshal unknown panel type")
}
func incRefID(refID string) string {
firstLetter := refID[0]
ordinal := int(firstLetter)
ordinal++
return string(rune(ordinal))
}