mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
a4d4dd325f
* Add integration with Jeager Add Jaeger datasource and modify derived fields in loki to allow for opening a trace in Jager in separate split. Modifies build so that this branch docker images are pushed to docker hub Add a traceui dir with docker-compose and provision files for demoing.:wq * Enable docker logger plugin to send logs to loki * Add placeholder zipkin datasource * Fixed rebase issues, added enhanceDataFrame to non-legacy code path * Trace selector for jaeger query field * Fix logs default mode for Loki * Fix loading jaeger query field services on split * Updated grafana image in traceui/compose file * Fix prettier error * Hide behind feature flag, clean up unused code. * Fix tests * Fix tests * Cleanup code and review feedback * Remove traceui directory * Remove circle build changes * Fix feature toggles object * Fix merge issues * Add trace ui in Explore * WIP * WIP * WIP * Make jaeger datasource return trace data instead of link * Allow js in jest tests * Return data from Jaeger datasource * Take yarn.lock from master * Fix missing component * Update yarn lock * Fix some ts and lint errors * Fix merge * Fix type errors * Make tests pass again * Add tests * Fix es5 compatibility Co-authored-by: David Kaltschmidt <david.kaltschmidt@gmail.com>
142 lines
3.6 KiB
JavaScript
142 lines
3.6 KiB
JavaScript
const path = require('path');
|
|
|
|
// https://github.com/visionmedia/debug/issues/701#issuecomment-505487361
|
|
function shouldExclude(filename) {
|
|
// There is external js code inside this which needs to be processed by babel.
|
|
if (filename.indexOf(`jaeger-ui-components`) > 0) {
|
|
return false;
|
|
}
|
|
|
|
const packagesToProcessbyBabel = ['debug', 'lru-cache', 'yallist', 'apache-arrow', 'react-hook-form', 'rc-trigger'];
|
|
for (const package of packagesToProcessbyBabel) {
|
|
if (filename.indexOf(`node_modules/${package}`) > 0) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
console.log(path.resolve());
|
|
module.exports = {
|
|
target: 'web',
|
|
entry: {
|
|
app: './public/app/index.ts',
|
|
},
|
|
output: {
|
|
path: path.resolve(__dirname, '../../public/build'),
|
|
filename: '[name].[hash].js',
|
|
// Keep publicPath relative for host.com/grafana/ deployments
|
|
publicPath: 'public/build/',
|
|
},
|
|
resolve: {
|
|
extensions: ['.ts', '.tsx', '.es6', '.js', '.json', '.svg'],
|
|
alias: {
|
|
// rc-trigger uses babel-runtime which has internal dependency to core-js@2
|
|
// this alias maps that dependency to core-js@t3
|
|
'core-js/library/fn': 'core-js/stable',
|
|
},
|
|
modules: [
|
|
'node_modules',
|
|
path.resolve('public'),
|
|
// we need full path to root node_modules for grafana-enterprise symlink to work
|
|
path.resolve('node_modules'),
|
|
],
|
|
},
|
|
stats: {
|
|
children: false,
|
|
warningsFilter: /export .* was not found in/,
|
|
source: false,
|
|
},
|
|
node: {
|
|
fs: 'empty',
|
|
},
|
|
module: {
|
|
rules: [
|
|
/**
|
|
* Some npm packages are bundled with es2015 syntax, ie. debug
|
|
* To make them work with PhantomJS we need to transpile them
|
|
* to get rid of unsupported syntax.
|
|
*/
|
|
{
|
|
test: /\.js$/,
|
|
exclude: shouldExclude,
|
|
use: [
|
|
{
|
|
loader: 'babel-loader',
|
|
options: {
|
|
presets: [['@babel/preset-env']],
|
|
},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
test: require.resolve('jquery'),
|
|
use: [
|
|
{
|
|
loader: 'expose-loader',
|
|
query: 'jQuery',
|
|
},
|
|
{
|
|
loader: 'expose-loader',
|
|
query: '$',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
test: /\.html$/,
|
|
exclude: /(index|error)\-template\.html/,
|
|
use: [
|
|
{
|
|
loader: 'ngtemplate-loader?relativeTo=' + path.resolve(__dirname, '../../public') + '&prefix=public',
|
|
},
|
|
{
|
|
loader: 'html-loader',
|
|
options: {
|
|
attrs: [],
|
|
minimize: true,
|
|
removeComments: false,
|
|
collapseWhitespace: false,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
// https://webpack.js.org/plugins/split-chunks-plugin/#split-chunks-example-3
|
|
optimization: {
|
|
moduleIds: 'hashed',
|
|
runtimeChunk: 'single',
|
|
splitChunks: {
|
|
chunks: 'all',
|
|
minChunks: 1,
|
|
cacheGroups: {
|
|
moment: {
|
|
test: /[\\/]node_modules[\\/]moment[\\/].*[jt]sx?$/,
|
|
chunks: 'initial',
|
|
priority: 20,
|
|
enforce: true,
|
|
},
|
|
angular: {
|
|
test: /[\\/]node_modules[\\/]angular[\\/].*[jt]sx?$/,
|
|
chunks: 'initial',
|
|
priority: 50,
|
|
enforce: true,
|
|
},
|
|
vendors: {
|
|
test: /[\\/]node_modules[\\/].*[jt]sx?$/,
|
|
chunks: 'initial',
|
|
priority: -10,
|
|
reuseExistingChunk: true,
|
|
enforce: true,
|
|
},
|
|
default: {
|
|
priority: -20,
|
|
chunks: 'all',
|
|
test: /.*[jt]sx?$/,
|
|
reuseExistingChunk: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|