The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/docs/sources/packages_api/data/datalink.md

2.0 KiB

+++

-----------------------------------------------------------------------

Do not edit this file. It is automatically generated by API Documenter.

-----------------------------------------------------------------------

title = "DataLink" keywords = ["grafana","documentation","sdk","@grafana/data"] type = "docs" +++

Link configuration. The values may contain variables that need to be processed before showing the link to user.

TODO: <T extends DataQuery> is not strictly true for internal links as we do not need refId for example but all data source defined queries extend this so this is more for documentation.

Signature

export interface DataLink<T extends DataQuery = any> 

Import

import { DataLink } from '@grafana/data';

Properties

Property Type Description
internal {
query: T;
datasourceUid: string;
}
onBuildUrl (event: DataLinkClickEvent) => string
onClick (event: DataLinkClickEvent) => void
targetBlank boolean
title string
url string

internal property

Signature

internal?: {
        query: T;
        datasourceUid: string;
    };

onBuildUrl property

Signature

onBuildUrl?: (event: DataLinkClickEvent) => string;

onClick property

Signature

onClick?: (event: DataLinkClickEvent) => void;

targetBlank property

Signature

targetBlank?: boolean;

title property

Signature

title: string;

url property

Signature

url: string;