文件操作 - module.tsx
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/grafana/public/app/plugins/panel/gauge/module.tsx
编辑文件内容
import { PanelPlugin } from '@grafana/data'; import { GaugePanel } from './GaugePanel'; import { GaugeOptions } from './types'; import { addStandardDataReduceOptions } from '../stat/types'; import { gaugePanelMigrationHandler, gaugePanelChangedHandler } from './GaugeMigrations'; export const plugin = new PanelPlugin<GaugeOptions>(GaugePanel) .useFieldConfig() .setPanelOptions(builder => { addStandardDataReduceOptions(builder, false); builder .addBooleanSwitch({ path: 'showThresholdLabels', name: 'Show threshold labels', description: 'Render the threshold values around the gauge bar', defaultValue: false, }) .addBooleanSwitch({ path: 'showThresholdMarkers', name: 'Show threshold markers', description: 'Renders the thresholds as an outer bar', defaultValue: true, }); }) .setPanelChangeHandler(gaugePanelChangedHandler) .setMigrationHandler(gaugePanelMigrationHandler);
修改文件时间
将文件时间修改为当前时间的前一年
删除文件