Skip to content

Commit 23229ed

Browse files
committed
Improve wording.
1 parent 9bea584 commit 23229ed

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/configuration/DataLink.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,15 @@ export const DataLink = (props: Props) => {
7373
/>
7474
</div>
7575

76+
<div className={styles.row}>
77+
<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.">
78+
<InlineSwitch
79+
value={base64TraceId}
80+
onChange={() => handleBase64TraceId(!base64TraceId, value)}
81+
/>
82+
</InlineField>
83+
</div>
84+
7685
<InlineFieldRow>
7786
<div className={styles.urlField}>
7887
<InlineLabel htmlFor="elasticsearch-datasource-internal-link" width={labelWidth}>
@@ -108,15 +117,6 @@ export const DataLink = (props: Props) => {
108117
</div>
109118
</InlineFieldRow>
110119

111-
<div className={styles.row}>
112-
<InlineField label="Field encoded in base64?" labelWidth={labelWidth} tooltip="Quickwit encodes the traceID in base64 by default whereas Jaeger uses hex">
113-
<InlineSwitch
114-
value={base64TraceId}
115-
onChange={() => handleBase64TraceId(!base64TraceId, value)}
116-
/>
117-
</InlineField>
118-
</div>
119-
120120
<div className={styles.row}>
121121
<InlineField label="Internal link" labelWidth={labelWidth}>
122122
<InlineSwitch

0 commit comments

Comments
 (0)