mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
* Add GraphView component * Add service map panel * Add more metadata visuals * Add context menu on click * Add context menu for services * Fix service map in dashboard * Add field proxy in explore linkSupplier * Refactor the link creation * Remove test file * Fix scale change when view is panned * Fix node centering * Don't show context menu if no links * Fix service map containers * Add collapsible around the service map * Fix stats computation * Remove debug log * Fix time stats * Allow string timestamp * Make panning bounded * Add zooming by mouse wheel * Clean up the colors * Fix stats for single trace graph * Don't show debug config * Add more complex layout * Update layout with better fixing of the root nodes * Code cleanup * Change how we pass in link creation function and some more cleanup * Refactor the panel section into separate render methods * Make the edge hover more readable * Move stats computation to data source * Put edge labels to front * Simplify layout for better multi graph layout * Update for dark theme * Move function to utils * Visual improvements * Improve context menu detail * Allow custom details * Rename to NodeGraph * Remove unused dependencies * Use named color palette and add some fallbacks for missing data * Add test data scenario * Rename plugin * Switch scroll zoom direction to align with google maps * Do some perf optimisations and rise the node limit * Update alert styling * Rename function * Add tests * Add more tests * Change data frame column mapping to use column names * Fix test * Fix type errors * Don't show context menu without links * Add beta status to panel * Fix tests * Changed function to standard methods * Fix typing * Clean up yarn.lock * Add some UI improvements - better styling of the zoom buttons - disable buttons when max reached * Fix panel references after rename * Add panel icon
110 lines
6.3 KiB
TypeScript
110 lines
6.3 KiB
TypeScript
const graphitePlugin = async () =>
|
|
await import(/* webpackChunkName: "graphitePlugin" */ 'app/plugins/datasource/graphite/module');
|
|
const cloudwatchPlugin = async () =>
|
|
await import(/* webpackChunkName: "cloudwatchPlugin" */ 'app/plugins/datasource/cloudwatch/module');
|
|
const dashboardDSPlugin = async () =>
|
|
await import(/* webpackChunkName "dashboardDSPlugin" */ 'app/plugins/datasource/dashboard/module');
|
|
const elasticsearchPlugin = async () =>
|
|
await import(/* webpackChunkName: "elasticsearchPlugin" */ 'app/plugins/datasource/elasticsearch/module');
|
|
const opentsdbPlugin = async () =>
|
|
await import(/* webpackChunkName: "opentsdbPlugin" */ 'app/plugins/datasource/opentsdb/module');
|
|
const grafanaPlugin = async () =>
|
|
await import(/* webpackChunkName: "grafanaPlugin" */ 'app/plugins/datasource/grafana/module');
|
|
const influxdbPlugin = async () =>
|
|
await import(/* webpackChunkName: "influxdbPlugin" */ 'app/plugins/datasource/influxdb/module');
|
|
const lokiPlugin = async () => await import(/* webpackChunkName: "lokiPlugin" */ 'app/plugins/datasource/loki/module');
|
|
const jaegerPlugin = async () =>
|
|
await import(/* webpackChunkName: "jaegerPlugin" */ 'app/plugins/datasource/jaeger/module');
|
|
const zipkinPlugin = async () =>
|
|
await import(/* webpackChunkName: "zipkinPlugin" */ 'app/plugins/datasource/zipkin/module');
|
|
const mixedPlugin = async () =>
|
|
await import(/* webpackChunkName: "mixedPlugin" */ 'app/plugins/datasource/mixed/module');
|
|
const mysqlPlugin = async () =>
|
|
await import(/* webpackChunkName: "mysqlPlugin" */ 'app/plugins/datasource/mysql/module');
|
|
const postgresPlugin = async () =>
|
|
await import(/* webpackChunkName: "postgresPlugin" */ 'app/plugins/datasource/postgres/module');
|
|
const prometheusPlugin = async () =>
|
|
await import(/* webpackChunkName: "prometheusPlugin" */ 'app/plugins/datasource/prometheus/module');
|
|
const mssqlPlugin = async () =>
|
|
await import(/* webpackChunkName: "mssqlPlugin" */ 'app/plugins/datasource/mssql/module');
|
|
const testDataDSPlugin = async () =>
|
|
await import(/* webpackChunkName: "testDataDSPlugin" */ 'app/plugins/datasource/testdata/module');
|
|
const cloudMonitoringPlugin = async () =>
|
|
await import(/* webpackChunkName: "cloudMonitoringPlugin" */ 'app/plugins/datasource/cloud-monitoring/module');
|
|
const azureMonitorPlugin = async () =>
|
|
await import(
|
|
/* webpackChunkName: "azureMonitorPlugin" */ 'app/plugins/datasource/grafana-azure-monitor-datasource/module'
|
|
);
|
|
const tempoPlugin = async () =>
|
|
await import(/* webpackChunkName: "tempoPlugin" */ 'app/plugins/datasource/tempo/module');
|
|
|
|
import * as textPanel from 'app/plugins/panel/text/module';
|
|
import * as timeseriesPanel from 'app/plugins/panel/timeseries/module';
|
|
import * as graphPanel from 'app/plugins/panel/graph/module';
|
|
import * as xyChartPanel from 'app/plugins/panel/xychart/module';
|
|
import * as dashListPanel from 'app/plugins/panel/dashlist/module';
|
|
import * as pluginsListPanel from 'app/plugins/panel/pluginlist/module';
|
|
import * as alertListPanel from 'app/plugins/panel/alertlist/module';
|
|
import * as annoListPanel from 'app/plugins/panel/annolist/module';
|
|
import * as heatmapPanel from 'app/plugins/panel/heatmap/module';
|
|
import * as tablePanel from 'app/plugins/panel/table/module';
|
|
import * as oldTablePanel from 'app/plugins/panel/table-old/module';
|
|
import * as singlestatPanel from 'app/plugins/panel/singlestat/module';
|
|
import * as singlestatPanel2 from 'app/plugins/panel/stat/module';
|
|
import * as gettingStartedPanel from 'app/plugins/panel/gettingstarted/module';
|
|
import * as gaugePanel from 'app/plugins/panel/gauge/module';
|
|
import * as pieChartPanel from 'app/plugins/panel/piechart/module';
|
|
import * as barGaugePanel from 'app/plugins/panel/bargauge/module';
|
|
import * as logsPanel from 'app/plugins/panel/logs/module';
|
|
import * as newsPanel from 'app/plugins/panel/news/module';
|
|
import * as livePanel from 'app/plugins/panel/live/module';
|
|
import * as welcomeBanner from 'app/plugins/panel/welcome/module';
|
|
import * as nodeGraph from 'app/plugins/panel/nodeGraph/module';
|
|
|
|
const builtInPlugins: any = {
|
|
'app/plugins/datasource/graphite/module': graphitePlugin,
|
|
'app/plugins/datasource/cloudwatch/module': cloudwatchPlugin,
|
|
'app/plugins/datasource/dashboard/module': dashboardDSPlugin,
|
|
'app/plugins/datasource/elasticsearch/module': elasticsearchPlugin,
|
|
'app/plugins/datasource/opentsdb/module': opentsdbPlugin,
|
|
'app/plugins/datasource/grafana/module': grafanaPlugin,
|
|
'app/plugins/datasource/influxdb/module': influxdbPlugin,
|
|
'app/plugins/datasource/loki/module': lokiPlugin,
|
|
'app/plugins/datasource/jaeger/module': jaegerPlugin,
|
|
'app/plugins/datasource/zipkin/module': zipkinPlugin,
|
|
'app/plugins/datasource/mixed/module': mixedPlugin,
|
|
'app/plugins/datasource/mysql/module': mysqlPlugin,
|
|
'app/plugins/datasource/postgres/module': postgresPlugin,
|
|
'app/plugins/datasource/mssql/module': mssqlPlugin,
|
|
'app/plugins/datasource/prometheus/module': prometheusPlugin,
|
|
'app/plugins/datasource/testdata/module': testDataDSPlugin,
|
|
'app/plugins/datasource/cloud-monitoring/module': cloudMonitoringPlugin,
|
|
'app/plugins/datasource/grafana-azure-monitor-datasource/module': azureMonitorPlugin,
|
|
'app/plugins/datasource/tempo/module': tempoPlugin,
|
|
|
|
'app/plugins/panel/text/module': textPanel,
|
|
'app/plugins/panel/timeseries/module': timeseriesPanel,
|
|
'app/plugins/panel/graph/module': graphPanel,
|
|
'app/plugins/panel/xychart/module': xyChartPanel,
|
|
'app/plugins/panel/dashlist/module': dashListPanel,
|
|
'app/plugins/panel/pluginlist/module': pluginsListPanel,
|
|
'app/plugins/panel/alertlist/module': alertListPanel,
|
|
'app/plugins/panel/annolist/module': annoListPanel,
|
|
'app/plugins/panel/heatmap/module': heatmapPanel,
|
|
'app/plugins/panel/table/module': tablePanel,
|
|
'app/plugins/panel/table-old/module': oldTablePanel,
|
|
'app/plugins/panel/news/module': newsPanel,
|
|
'app/plugins/panel/live/module': livePanel,
|
|
'app/plugins/panel/singlestat/module': singlestatPanel,
|
|
'app/plugins/panel/stat/module': singlestatPanel2,
|
|
'app/plugins/panel/gettingstarted/module': gettingStartedPanel,
|
|
'app/plugins/panel/gauge/module': gaugePanel,
|
|
'app/plugins/panel/piechart/module': pieChartPanel,
|
|
'app/plugins/panel/bargauge/module': barGaugePanel,
|
|
'app/plugins/panel/logs/module': logsPanel,
|
|
'app/plugins/panel/welcome/module': welcomeBanner,
|
|
'app/plugins/panel/nodeGraph/module': nodeGraph,
|
|
};
|
|
|
|
export default builtInPlugins;
|