Menu

Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.

Enterprise Open source

BackendSrv interface

Used to communicate via http(s) to a remote backend such as the Grafana backend, a datasource etc. The BackendSrv is using the Fetch API under the hood to handle all the communication.

The request function can be used to perform a remote call by specifying a BackendSrvRequest. To make the BackendSrv a bit easier to use we have added a couple of shorthand functions that will use default values executing the request.

Signature

typescript
export interface BackendSrv 

Import

typescript
import { BackendSrv } from '@grafana/runtime';

Remarks

By default, Grafana displays an error message alert if the remote call fails. To prevent this from happening showErrorAlert = true on the options object.

Methods

MethodDescription
datasourceRequest(options)
delete(url)
fetch(options)Observable http request interface
get(url, params, requestId)
patch(url, data)
post(url, data)
put(url, data)
request(options)

datasourceRequest method

Signature

typescript
datasourceRequest(options: BackendSrvRequest): Promise<any>;

Parameters

ParameterTypeDescription
optionsBackendSrvRequest

Returns:

Promise<any>

delete method

Signature

typescript
delete(url: string): Promise<any>;

Parameters

ParameterTypeDescription
urlstring

Returns:

Promise<any>

fetch method

Observable http request interface

Signature

typescript
fetch<T>(options: BackendSrvRequest): Observable<FetchResponse<T>>;

Parameters

ParameterTypeDescription
optionsBackendSrvRequest

Returns:

Observable<FetchResponse<T>>

get method

Signature

typescript
get(url: string, params?: any, requestId?: string): Promise<any>;

Parameters

ParameterTypeDescription
urlstring
paramsany
requestIdstring

Returns:

Promise<any>

patch method

Signature

typescript
patch(url: string, data?: any): Promise<any>;

Parameters

ParameterTypeDescription
urlstring
dataany

Returns:

Promise<any>

post method

Signature

typescript
post(url: string, data?: any): Promise<any>;

Parameters

ParameterTypeDescription
urlstring
dataany

Returns:

Promise<any>

put method

Signature

typescript
put(url: string, data?: any): Promise<any>;

Parameters

ParameterTypeDescription
urlstring
dataany

Returns:

Promise<any>

request method

Signature

typescript
request(options: BackendSrvRequest): Promise<any>;

Parameters

ParameterTypeDescription
optionsBackendSrvRequest

Returns:

Promise<any>