Skip to content

Commit

Permalink
Add escaped example to tag search help popup (#2354)
Browse files Browse the repository at this point in the history
## Which problem is this PR solving?
- Resolves jaegertracing/jaeger#5290

## Description of the changes
- Add example of escaping reserved characters

## How was this change tested?
<img width="1000" alt="image"
src="https://github.com/jaegertracing/jaeger-ui/assets/3523016/16424fc8-9fab-4735-88bc-116448f5dcb0">

Signed-off-by: Yuri Shkuro <github@ysh.us>
  • Loading branch information
yurishkuro committed Jun 23, 2024
1 parent 0c2af5b commit e3277e0
Showing 1 changed file with 48 additions and 23 deletions.
71 changes: 48 additions & 23 deletions packages/jaeger-ui/src/components/SearchTracePage/SearchForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -328,37 +328,62 @@ export class SearchFormImpl extends React.PureComponent {
<Popover
placement="topLeft"
trigger="click"
title={[
title={
<h3 key="title" className="SearchForm--tagsHintTitle">
Values should be in the{' '}
<a href="https://brandur.org/logfmt" rel="noopener noreferrer" target="_blank">
logfmt
</a>{' '}
format.
</h3>,
<ul key="info" className="SearchForm--tagsHintInfo">
<li>Use space for AND conjunctions</li>
<li>
Values containing whitespace or equal-sign &apos;=&apos; should be enclosed in quotes
</li>
<li>
Elasticsearch/OpenSearch storage supports regexp query, therefore{' '}
<a
href="https://lucene.apache.org/core/9_0_0/core/org/apache/lucene/util/automaton/RegExp.html"
rel="noopener noreferrer"
target="_blank"
>
reserved characters
</a>{' '}
need to be escaped for exact match queries.
</li>
</ul>,
]}
</h3>
}
content={
<div>
<code className="SearchForm--tagsHintEg">
error=true db.statement=&quot;select * from User&quot;
</code>
<ul key="info" className="SearchForm--tagsHintInfo">
<li>Use space for AND conjunctions.</li>
<li>
Values containing whitespace or equal-sign &apos;=&apos; should be enclosed in quotes.
</li>
<li>
Elasticsearch/OpenSearch storage supports regex query, therefore{' '}
<a
href="https://lucene.apache.org/core/9_0_0/core/org/apache/lucene/util/automaton/RegExp.html"
rel="noopener noreferrer"
target="_blank"
>
reserved characters
</a>{' '}
need to be escaped for exact match queries.
</li>
</ul>
<p>Examples:</p>
<ul className="SearchForm--tagsHintInfo">
<li>
<code className="SearchForm--tagsHintEg">error=true</code>
</li>
<li>
<code className="SearchForm--tagsHintEg">
db.statement=&quot;select * from User&quot;
</code>
</li>
<li>
<code className="SearchForm--tagsHintEg">
http.url=&quot;http://0.0.0.0:8081/customer\\?customer=123&quot;
</code>
<div>
Note: when using Elasticsearch/OpenSearch the{' '}
<a
href="https://lucene.apache.org/core/9_0_0/core/org/apache/lucene/util/automaton/RegExp.html"
rel="noopener noreferrer"
target="_blank"
>
regex-reserved
</a>{' '}
character <code className="SearchForm--tagsHintEg">&quot;?&quot;</code> must be
escaped with <code className="SearchForm--tagsHintEg">&quot;\\&quot;</code>.
</div>
</li>
</ul>
</div>
}
>
Expand Down

0 comments on commit e3277e0

Please sign in to comment.