Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added History -> Alert tag details #555

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions addOns/help/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## Unreleased
### Added
- Details for setting Gnome proxy settings.
- History -> Alert tag details.

## [18] - 2024-05-07
### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ <H1>Tags</H1>
Tags are shown in the <a href="../../ui/tabs/history.html">History tab</a> and can be filtered on using
the <a href="../../ui/dialogs/hist_filter.html">History Filter dialog</a>.<br/>
</p>
<H3>Alert Tags</H3>
If a History tag starts with <code>ALERT-TAG:</code> then the tag will also be associated
with any alerts raised against that request.
The prefix will be dropped, and if the remaining string contains an <code>=</code> character then the alert tag key will
be the string up to the first <code>=</code> and the value will be the rest of the string.
If there is no <code>=</code> then the key will be the string after the prefix and the value will be blank.<br>
A History tag of <code>ALERT-TAG:AAA=BBB</code> will result in an Alert tag with a key of <code>AAA</code>
and a value of <code>BBB</code>, while a History tag of <code>ALERT-TAG:CCC</code> will result in an
Alert tag with a key of <code>CCC</code> and a blank value.

<H2>See also</H2>
<table>
Expand Down