/usr/share/grafana/public/app/plugins/datasource/graphite
import { last } from 'lodash'; import { GraphiteParserError } from './types'; /** * Graphite-web before v1.6 returns HTTP 500 with full stack traces in an HTML page * when a query fails. It results in massive error alerts with HTML tags in the UI. * This function removes all HTML tags and keeps only the last line from the stack * trace which should be the most meaningful. */ export function reduceError(error: any) { if (error && error.status === 500 && error.data?.message?.startsWith('<body')) { // Remove all HTML tags and take the last line from the stack trace const newMessage = last<string>( error.data.message .replace(/(<([^>]+)>)/gi, '') .trim() .split(/\n/) )!.replace(/u?&#[^;]+;/g, ''); error.data.message = `Graphite encountered an unexpected error while handling your request. ${newMessage}`; } return error; } export function isGraphiteParserError(e: unknown): e is GraphiteParserError { return typeof e === 'object' && e !== null && 'message' in e && 'pos' in e; } export const arrayMove = <T>(array: T[], fromIndex: number, toIndex: number): T[] => { array.splice(toIndex, 0, array.splice(fromIndex, 1)[0]); return array; };
.
Edit
..
Edit
CHANGELOG.md
Edit
README.md
Edit
components
Edit
configuration
Edit
dashboards
Edit
datasource.test.ts
Edit
datasource.ts
Edit
datasource_integration.test.ts
Edit
dist
Edit
gfunc.test.ts
Edit
gfunc.ts
Edit
graphite_query.ts
Edit
img
Edit
jest-setup.js
Edit
jest.config.js
Edit
lexer.ts
Edit
meta.test.ts
Edit
meta.ts
Edit
migrations.ts
Edit
module.ts
Edit
package.json
Edit
parser.ts
Edit
plugin.json
Edit
project.json
Edit
query_help.md
Edit
specs
Edit
state
Edit
tsconfig.json
Edit
types.ts
Edit
utils.test.ts
Edit
utils.ts
Edit
versions.ts
Edit
webpack.config.ts
Edit