mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Add phlare datasource * Rename * Add parca * Add self field to parca * Make sure phlare works with add to dashboard flow * Add profiling category and hide behind feature flag * Update description and logos * Update phlare icon * Cleanup logging * Clean up logging * Fix for shift+enter * onRunQuery to set label * Update type naming * Fix lint * Fix test and quality issues Co-authored-by: Joey Tawadrous <joey.tawadrous@grafana.com>
13 lines
246 B
TypeScript
13 lines
246 B
TypeScript
import { language, languageConfiguration } from './fireql';
|
|
|
|
export const languageDefinition = {
|
|
id: 'fireql',
|
|
extensions: ['.fireql'],
|
|
aliases: ['fire', 'fireql'],
|
|
mimetypes: [],
|
|
def: {
|
|
language,
|
|
languageConfiguration,
|
|
},
|
|
};
|