mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
14 lines
633 B
TypeScript
14 lines
633 B
TypeScript
|
/** @ngInject */
|
||
|
export function StackdriverDatasource(this: any, instanceSettings, $q, backendSrv, templateSrv) {
|
||
|
// this.basicAuth = instanceSettings.basicAuth;
|
||
|
// this.url = instanceSettings.url;
|
||
|
// this.name = instanceSettings.name;
|
||
|
// this.graphiteVersion = instanceSettings.jsonData.graphiteVersion || '0.9';
|
||
|
// this.supportsTags = supportsTags(this.graphiteVersion);
|
||
|
// this.cacheTimeout = instanceSettings.cacheTimeout;
|
||
|
// this.withCredentials = instanceSettings.withCredentials;
|
||
|
// this.render_method = instanceSettings.render_method || 'POST';
|
||
|
// this.funcDefs = null;
|
||
|
// this.funcDefsPromise = null;
|
||
|
}
|