文件操作 - module.ts
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/grafana/public/app/plugins/datasource/postgres/module.ts
编辑文件内容
import { PostgresDatasource } from './datasource'; import { PostgresQueryCtrl } from './query_ctrl'; import { PostgresConfigCtrl } from './config_ctrl'; const defaultQuery = `SELECT extract(epoch from time_column) AS time, text_column as text, tags_column as tags FROM metric_table WHERE $__timeFilter(time_column) `; class PostgresAnnotationsQueryCtrl { static templateUrl = 'partials/annotations.editor.html'; annotation: any; /** @ngInject */ constructor() { this.annotation.rawQuery = this.annotation.rawQuery || defaultQuery; } } export { PostgresDatasource, PostgresDatasource as Datasource, PostgresQueryCtrl as QueryCtrl, PostgresConfigCtrl as ConfigCtrl, PostgresAnnotationsQueryCtrl as AnnotationsQueryCtrl, };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件