D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
usr
/
share
/
grafana
/
public
/
app
/
plugins
/
panel
/
gauge
/
Filename :
GaugeMigrations.ts
back
Copy
import { PanelModel } from '@grafana/data'; import { sharedSingleStatPanelChangedHandler, sharedSingleStatMigrationHandler } from '@grafana/ui'; import { Options } from './panelcfg.gen'; // This is called when the panel first loads export const gaugePanelMigrationHandler = (panel: PanelModel<Options>): Partial<Options> => { return sharedSingleStatMigrationHandler(panel); }; // This is called when the panel changes from another panel export const gaugePanelChangedHandler = ( panel: PanelModel<Partial<Options>>, prevPluginId: string, prevOptions: any ) => { // This handles most config changes const opts: Options = sharedSingleStatPanelChangedHandler(panel, prevPluginId, prevOptions); // Changing from angular singlestat if (prevPluginId === 'singlestat' && prevOptions.angular) { const gauge = prevOptions.angular.gauge; if (gauge) { opts.showThresholdMarkers = gauge.thresholdMarkers; opts.showThresholdLabels = gauge.thresholdLabels; } } return opts; };