Skip to content

Commit

Permalink
Improve wording.
Browse files Browse the repository at this point in the history
  • Loading branch information
fmassot committed Dec 13, 2023
1 parent 9bea584 commit 23229ed
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/configuration/DataLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,15 @@ export const DataLink = (props: Props) => {
/>
</div>

<div className={styles.row}>
<InlineField label="Field encoded in base64?" labelWidth={labelWidth} tooltip="Must be at true if your trace ID is encoded in base64. This is the case for the `otel-traces-v0_6` index.">
<InlineSwitch
value={base64TraceId}
onChange={() => handleBase64TraceId(!base64TraceId, value)}
/>
</InlineField>
</div>

<InlineFieldRow>
<div className={styles.urlField}>
<InlineLabel htmlFor="elasticsearch-datasource-internal-link" width={labelWidth}>
Expand Down Expand Up @@ -108,15 +117,6 @@ export const DataLink = (props: Props) => {
</div>
</InlineFieldRow>

<div className={styles.row}>
<InlineField label="Field encoded in base64?" labelWidth={labelWidth} tooltip="Quickwit encodes the traceID in base64 by default whereas Jaeger uses hex">
<InlineSwitch
value={base64TraceId}
onChange={() => handleBase64TraceId(!base64TraceId, value)}
/>
</InlineField>
</div>

<div className={styles.row}>
<InlineField label="Internal link" labelWidth={labelWidth}>
<InlineSwitch
Expand Down

0 comments on commit 23229ed

Please sign in to comment.