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

DataSourceInstanceSettings interface

Frontend settings model that is passed to Datasource constructor. This differs a bit from the model above as this data model is available to every user who has access to a data source (Viewers+). This is loaded in bootData (on page load), or from: /api/frontend/settings

Signature

typescript
export interface DataSourceInstanceSettings<T extends DataSourceJsonData = DataSourceJsonData> 

Import

typescript
import { DataSourceInstanceSettings } from '@grafana/data';

Properties

PropertyTypeDescription
basicAuthstringThis is the full Authorization header if basic auth is ennabled. Only available here when access is Browser (direct), when access is Server (proxy) The basic auth header, username & password is never exposted to browser/Frontend so this will be empty then.
databasestring
idnumber
jsonDataT
metaDataSourcePluginMeta
namestring
passwordstring
typestring
uidstring
urlstring
usernamestring
withCredentialsboolean

basicAuth property

This is the full Authorization header if basic auth is ennabled. Only available here when access is Browser (direct), when access is Server (proxy) The basic auth header, username & password is never exposted to browser/Frontend so this will be empty then.

Signature

typescript
basicAuth?: string;

database property

Signature

typescript
database?: string;

id property

Signature

typescript
id: number;

jsonData property

Signature

typescript
jsonData: T;

meta property

Signature

typescript
meta: DataSourcePluginMeta;

name property

Signature

typescript
name: string;

password property

Signature

typescript
password?: string;

type property

Signature

typescript
type: string;

uid property

Signature

typescript
uid: string;

url property

Signature

typescript
url?: string;

username property

Signature

typescript
username?: string;

withCredentials property

Signature

typescript
withCredentials?: boolean;