This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
gitops-tbrnt/monitoring/vendor/github.com/grafana/grafonnet-lib/grafonnet/log_panel.libsonnet

57 lines
1.8 KiB
Plaintext

{
/**
* Creates a [log panel](https://grafana.com/docs/grafana/latest/panels/visualizations/logs-panel/).
* It requires the log panel plugin in grafana, which is built-in.
*
* @name logPanel.new
*
* @param title (default `''`) The title of the log panel.
* @param span (optional) Width of the panel
* @param datasource (optional) Datasource
* @showLabels (default `false`) Whether to show or hide labels
* @showTime (default `true`) Whether to show or hide time for each line
* @wrapLogMessage (default `true`) Whether to wrap log line to the next line
* @sortOrder (default `'Descending'`) sort log by time (can be 'Descending' or 'Ascending' )
*
* @method addTarget(target) Adds a target object
* @method addTargets(targets) Adds an array of targets
*/
new(
title='',
datasource=null,
time_from=null,
time_shift=null,
showLabels=false,
showTime=true,
sortOrder='Descending',
wrapLogMessage=true,
span=12,
height=null,
):: {
[if height != null then 'height']: height,
span: span,
datasource: datasource,
options: {
showLabels: showLabels,
showTime: showTime,
sortOrder: sortOrder,
wrapLogMessage: wrapLogMessage,
},
targets: [
],
_nextTarget:: 0,
addTarget(target):: self {
// automatically ref id in added targets.
// https://github.com/kausalco/public/blob/master/klumps/grafana.libsonnet
local nextTarget = super._nextTarget,
_nextTarget: nextTarget + 1,
targets+: [target { refId: std.char(std.codepoint('A') + nextTarget) }],
},
addTargets(targets):: std.foldl(function(p, t) p.addTarget(t), targets, self),
timeFrom: time_from,
timeShift: time_shift,
title: title,
type: 'logs',
},
}