File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -16,16 +16,12 @@ function(
16
16
g.util.grid.wrapPanels(
17
17
(
18
18
if showLogsVolume then
19
- [panels.logsVolume
20
- + g.panel.timeSeries.gridPos.withH(6 )
21
- + g.panel.timeSeries.gridPos.withW(24 )]
19
+ [panels.logsVolume]
22
20
else []
23
21
)
24
22
+
25
23
[
26
- panels.logs
27
- + g.panel.logs.gridPos.withH(18 )
28
- + g.panel.logs.gridPos.withW(24 ),
24
+ panels.logs,
29
25
]
30
26
)
31
27
),
Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ function(
39
39
},
40
40
}
41
41
)
42
+ // default dimensions
43
+ + g.panel.timeSeries.gridPos.withH(6 )
44
+ + g.panel.timeSeries.gridPos.withW(24 )
42
45
+ timeSeries.standardOptions.withOverridesMixin(
43
46
[
44
47
{
@@ -77,7 +80,10 @@ function(
77
80
+ logsPanel.options.withEnableLogDetails(true )
78
81
+ logsPanel.options.withShowTime(true )
79
82
+ logsPanel.options.withWrapLogMessage(true )
80
- + logsPanel.options.withPrettifyLogMessage(true ),
83
+ + logsPanel.options.withPrettifyLogMessage(true )
84
+ // default dimensions
85
+ + g.panel.logs.gridPos.withH(18 )
86
+ + g.panel.logs.gridPos.withW(24 ),
81
87
82
88
logsVolume: self .logsVolumeInit(logsVolumeTarget),
83
89
logs: self .logsInit(logsTarget),
You can’t perform that action at this time.
0 commit comments