Skip to content

LibrarypanelLibraryPanelModelπŸ”—

ConstructorπŸ”—

LibrarypanelLibraryPanelModel()

MethodsπŸ”—

buildπŸ”—

Builds the object.

def build() -> librarypanel.LibrarypanelLibraryPanelModel

cache_timeoutπŸ”—

Sets panel queries cache timeout.

def cache_timeout(cache_timeout: str) -> typing.Self

datasourceπŸ”—

The datasource used in all targets.

def datasource(datasource: dashboard.DataSourceRef) -> typing.Self

descriptionπŸ”—

Panel description.

def description(description: str) -> typing.Self

field_configπŸ”—

Field options allow you to change how the data is displayed in your visualizations.

def field_config(field_config: dashboard.FieldConfigSource) -> typing.Self

hide_time_overrideπŸ”—

Controls if the timeFrom or timeShift overrides are shown in the panel header

def hide_time_override(hide_time_override: bool) -> typing.Self

intervalπŸ”—

The min time interval setting defines a lower limit for the $__interval and $__interval_ms variables.

This value must be formatted as a number followed by a valid time

identifier like: "40s", "3d", etc.

See: https://grafana.com/docs/grafana/latest/panels-visualizations/query-transform-data/#query-options

def interval(interval: str) -> typing.Self

Panel links.

def links(links: list[cogbuilder.Builder[dashboard.DashboardLink]]) -> typing.Self

max_data_pointsπŸ”—

The maximum number of data points that the panel queries are retrieving.

def max_data_points(max_data_points: float) -> typing.Self

max_per_rowπŸ”—

Option for repeated panels that controls max items per row

Only relevant for horizontally repeated panels

def max_per_row(max_per_row: float) -> typing.Self

optionsπŸ”—

It depends on the panel plugin. They are specified by the Options field in panel plugin schemas.

def options(options: object) -> typing.Self

plugin_versionπŸ”—

The version of the plugin that is used for this panel. This is used to find the plugin to display the panel and to migrate old panel configs.

def plugin_version(plugin_version: str) -> typing.Self

query_caching_ttlπŸ”—

Overrides the data source configured time-to-live for a query cache item in milliseconds

def query_caching_ttl(query_caching_ttl: float) -> typing.Self

repeatπŸ”—

Name of template variable to repeat for.

def repeat(repeat: str) -> typing.Self

repeat_directionπŸ”—

Direction to repeat in if 'repeat' is set.

h for horizontal, v for vertical.

def repeat_direction(repeat_direction: typing.Literal["h", "v"]) -> typing.Self

targetsπŸ”—

Depends on the panel plugin. See the plugin documentation for details.

def targets(targets: list[cogbuilder.Builder[cogvariants.Dataquery]]) -> typing.Self

time_fromπŸ”—

Overrides the relative time range for individual panels,

which causes them to be different than what is selected in

the dashboard time picker in the top-right corner of the dashboard. You can use this to show metrics from different

time periods or days on the same dashboard.

The value is formatted as time operation like: now-5m (Last 5 minutes), now/d (the day so far),

now-5d/d(Last 5 days), now/w (This week so far), now-2y/y (Last 2 years).

Note: Panel time overrides have no effect when the dashboard’s time range is absolute.

See: https://grafana.com/docs/grafana/latest/panels-visualizations/query-transform-data/#query-options

def time_from(time_from: str) -> typing.Self

time_shiftπŸ”—

Overrides the time range for individual panels by shifting its start and end relative to the time picker.

For example, you can shift the time range for the panel to be two hours earlier than the dashboard time picker setting 2h.

Note: Panel time overrides have no effect when the dashboard’s time range is absolute.

See: https://grafana.com/docs/grafana/latest/panels-visualizations/query-transform-data/#query-options

def time_shift(time_shift: str) -> typing.Self

titleπŸ”—

Panel title.

def title(title: str) -> typing.Self

transformationsπŸ”—

List of transformations that are applied to the panel data before rendering.

When there are multiple transformations, Grafana applies them in the order they are listed.

Each transformation creates a result set that then passes on to the next transformation in the processing pipeline.

def transformations(transformations: list[dashboard.DataTransformerConfig]) -> typing.Self

transparentπŸ”—

Whether to display the panel without a background.

def transparent(transparent: bool) -> typing.Self

type_valπŸ”—

The panel plugin type id. This is used to find the plugin to display the panel.

def type_val(type_val: str) -> typing.Self

See alsoπŸ”—