mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* 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 * Fix some null errors * Fix test after strict null changes * Review feedback fixes * Fix toggle name Co-authored-by: David Kaltschmidt <david.kaltschmidt@gmail.com>
122 lines
3.2 KiB
TypeScript
122 lines
3.2 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { css } from 'emotion';
|
|
import cx from 'classnames';
|
|
import { FormField } from '@grafana/ui';
|
|
import { DerivedFieldConfig } from '../types';
|
|
import { getLinksFromLogsField } from '../../../../features/panel/panellinks/linkSuppliers';
|
|
import { ArrayVector, Field, FieldType, LinkModel } from '@grafana/data';
|
|
|
|
type Props = {
|
|
derivedFields: DerivedFieldConfig[];
|
|
className?: string;
|
|
};
|
|
export const DebugSection = (props: Props) => {
|
|
const { derivedFields, className } = props;
|
|
const [debugText, setDebugText] = useState('');
|
|
|
|
let debugFields: DebugField[] = [];
|
|
if (debugText && derivedFields) {
|
|
debugFields = makeDebugFields(derivedFields, debugText);
|
|
}
|
|
|
|
return (
|
|
<div className={className}>
|
|
<FormField
|
|
labelWidth={12}
|
|
label={'Debug log message'}
|
|
inputEl={
|
|
<textarea
|
|
placeholder={'Paste an example log line here to test the regular expressions of your derived fields'}
|
|
className={cx(
|
|
'gf-form-input gf-form-textarea',
|
|
css`
|
|
width: 100%;
|
|
`
|
|
)}
|
|
value={debugText}
|
|
onChange={event => setDebugText(event.currentTarget.value)}
|
|
/>
|
|
}
|
|
/>
|
|
{!!debugFields.length && <DebugFields fields={debugFields} />}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
type DebugFieldItemProps = {
|
|
fields: DebugField[];
|
|
};
|
|
const DebugFields = ({ fields }: DebugFieldItemProps) => {
|
|
return (
|
|
<table className={'filter-table'}>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Value</th>
|
|
<th>Url</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{fields.map(field => {
|
|
let value: any = field.value;
|
|
if (field.error) {
|
|
value = field.error.message;
|
|
} else if (field.href) {
|
|
value = <a href={field.href}>{value}</a>;
|
|
}
|
|
return (
|
|
<tr key={`${field.name}=${field.value}`}>
|
|
<td>{field.name}</td>
|
|
<td>{value}</td>
|
|
<td>{field.href ? <a href={field.href}>{field.href}</a> : ''}</td>
|
|
</tr>
|
|
);
|
|
})}
|
|
</tbody>
|
|
</table>
|
|
);
|
|
};
|
|
|
|
type DebugField = {
|
|
name: string;
|
|
error?: any;
|
|
value?: string;
|
|
href?: string;
|
|
};
|
|
function makeDebugFields(derivedFields: DerivedFieldConfig[], debugText: string): DebugField[] {
|
|
return derivedFields
|
|
.filter(field => field.name && field.matcherRegex)
|
|
.map(field => {
|
|
try {
|
|
const testMatch = debugText.match(field.matcherRegex);
|
|
const value = testMatch && testMatch[1];
|
|
let link: LinkModel<Field>;
|
|
|
|
if (field.url && value) {
|
|
link = getLinksFromLogsField(
|
|
{
|
|
name: '',
|
|
type: FieldType.string,
|
|
values: new ArrayVector([value]),
|
|
config: {
|
|
links: [{ title: '', url: field.url }],
|
|
},
|
|
},
|
|
0
|
|
)[0].linkModel;
|
|
}
|
|
|
|
return {
|
|
name: field.name,
|
|
value: value || '<no match>',
|
|
href: link && link.href,
|
|
} as DebugField;
|
|
} catch (error) {
|
|
return {
|
|
name: field.name,
|
|
error,
|
|
} as DebugField;
|
|
}
|
|
});
|
|
}
|