1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
|
=head1 Introduction
The Ticket Query Builder is RT's search engine. It lets you find tickets matching
some (potentially very complex) criteria. There are loads of criteria you can
specify in order to perform a search. Strategies for narrowing your searches
to find exactly what you're looking for (and no more) are discussed below.
Newer RT versions also include a Transaction query builder, which allows
you to search for specific changes or types of changes in tickets.
The Query Builder is the heart of reporting in RT, which is covered in the
L<Dashboard and Reports|docs/dashboards_reporting.pod> document.
=head1 Basic Ticket Searches
Let's look for tickets in the "RT" queue (RT's bugtracker for itself) that have
been resolved in the last year. (These examples assume it's currently mid June,
2015). To do that, we specify the search criteria (Queue is RT, Status is
resolved, and Resolved after 2014-06-15) in the upper left hand section of the
Query Builder.
=for html <img alt="Search Criteria"
src="images/search-criteria.png">
=for :text [Search Criteria F<docs/images/search-criteria.png>]
=for :man [Search Criteria F<docs/images/search-criteria.png>]
RT also has two meta-statuses, 'active' and 'inactive'. By selecting either of
these from the status dropdown of the query builder, your search will include
tickets in all active or inactive statuses without adding each individual
status name.
The sets of active and inactive statuses for a queue are defined by the
associated lifecycle. Active tickets are those listed for the 'active' and
'initial' configurations. Inactive tickets are those defined as 'inactive'.
For the default RT lifecycle, for example, the active statuses are new, open,
and stalled, and the inactive statuses are resolved, rejected and deleted. See
F<docs/customizing/lifecycles.pod> for more information.
After you select some criteria, you can click either Add These Terms to start
to build your query.
=for html <img alt="Added Terms"
src="images/added-terms.png">
=for :text [Added Terms F<docs/images/added-terms.png>]
=for :man [Added Terms F<docs/images/added-terms.png>]
The upper right hand side presents all the logic you have specified. This view is
a nice way proofread your search: Have you captured everything you want? Are
there things you'd maybe prefer to leave out for now?
You can continue to modify and refine your search, adding or removing criteria.
For example, to see all queues and not just the RT queue, you click that part
of the query and click Delete.
=for html <img alt="Delete Term"
src="images/delete-term.png">
=for :text [Delete Term F<docs/images/delete-term.png>]
=for :man [Delete Term F<docs/images/delete-term.png>]
The updated search has just the remaining criteria:
=for html <img alt="Deleted Term"
src="images/deleted-term.png">
=for :text [Deleted Term F<docs/images/deleted-term.png>]
=for :man [Deleted Term F<docs/images/deleted-term.png>]
To run the search, click either 'Add these terms and Search', 'Update format
and Search' at the very bottom, or Show Results in the submenu near the top.
=for html <img alt="Search Results"
src="images/search-results.png">
=for :text [Search Results F<docs/images/search-results.png>]
=for :man [Search Results F<docs/images/search-results.png>]
=head1 Customizing Search Result Fields
This is the default view of your results. However, like nearly everything in RT,
it's configurable. You can select additional columns to appear in your results,
eliminate columns you don't find useful, or reorder them. To start, notice that
at the bottom of the query builder page there are two panes: Sorting and Display
Columns.
=for html <img alt="Sorting and Display Columns"
src="images/sorting-display-columns.png">
=for :text [Sorting and Display Columns
F<docs/images/sorting-display-columns.png>]
=for :man [Sorting and Display Columns F<docs/images/sorting-display-columns.png>]
There is more than one option for Sorting so that you can break apart tickets
with the same search values into a meaningful order. For example, let's say you
start off by sorting tickets in a search by their owner. Since you've only
specified to sort by owner, RT doesn't order the tickets owned by the same user
in a meaningful way. This is where the multiple sort criteria comes in handy.
You can use a second sorting criteria to sort within the set of tickets owned by
a single user. For example, you could add a sort by due date to see tickets
sorted first by owner, and then tickets with the same order are ordered by due
date.
The Display Columns tab allows you to add or eliminate information displayed in
the results of your search. NEWLINE indicates a line break, or new row, in how
the results are displayed. NBSP for adding an empty column (such as what shows
up underneath id in the following screenshot).
Here is a search with NEWLINE where it is by default:
=for html <img alt="With NEWLINE"
src="images/with-newline.png">
=for :text [With NEWLINE F<docs/images/with-newline.png>]
=for :man [With NEWLINE F<docs/images/with-newline.png>]
Notice that the structure of the data that's displayed is stacked: Subject on
top of Requestor, Status on top of Created, etc.. Because we're displaying a
lot of information (10 fields for each ticket), having the NEWLINE is
important for the results more comprehensible.
Here is that same search but without the NEWLINE:
=for html <img alt="Without NEWLINE"
src="images/without-newline.png">
=for :text [Without NEWLINE F<docs/images/without-newline.png>]
=for :man [Without NEWLINE F<docs/images/without-newline.png>]
The same pieces of information are now spread across the display next to one
another, which can be harder to read. So when you tell RT to display a lot of
columns, it's usually worth adding a well-placed NEWLINE.
=head1 Searching for Users on Tickets
The Query Builder provides ways to search for tickets based on how a
given user is related to the ticket. This works for all ticket roles,
so you can find all active tickets where a given user is the Requestor,
meaning they opened the ticket. You can also search for all tickets
with a given user as the owner, meaning that's what they are working on.
=head2 Groups on Roles
Ticket roles, except for Owner, can also accept a group as a value.
When you search for a user, by default the Query Builder does a
recursive or "deep" search, meaning it searches the role and it checks
the membership of any groups it finds in the role as well.
For example, assume you have a group "Helpdesk", the staff1 user is a
member, and Helpdesk is set as an AdminCc on a ticket. If you perform
this search:
AdminCc.Name = 'staff1'
the results will contain that ticket.
You can also search for group names on roles. For core roles, you can
select from the dropdown with group names containing "Owner Group", etc.
Following the example above, if you wanted to find tickets with
the Helpdesk group assigned to the AdminCc role, you can use this search:
AdminCCGroup = 'Helpdesk'
You can also search for groups on custom roles using the Name value.
A search for a group on a custom role looks like:
CustomRole.{Department}.Name = 'Helpdesk'
Note that if you also have a user with the name 'Helpdesk', the custom
role search will return all matches, so you will see tickets with both
username 'Helpdesk' and the group 'Helpdesk' assigned.
=head2 Shallow Searches
In some cases you may want to see tickets only when the user you are
searching for is a direct member of a role and not if they are in
any groups. For that case, use the "shallow" options, like "shallow is"
to generate a search like this:
AdminCc.Name SHALLOW = 'staff1'
That will show tickets where 'staff1' is directly in the AdminCc role,
but not the ticket from the previous example where staff1 is in the
Helpdesk group on the AdminCc role.
=head1 Searching Custom Fields on Tickets
If you use custom fields on your tickets, you might initially load the Query
Builder and not see them listed. If your custom fields are applied to
individual queues and not globally, they won't show up as options on a
new search. However, once you add a queue to your search, as shown above, the
custom fields applied to the queue or queues in your search will be displayed.
You can then add custom field values to your search just like other fields.
In addition to exact queue name searches like "Queue = 'RT'", the query builder
also allows 'LIKE' searches. This can be useful if you have several queues that
follow some naming pattern, like "IT Support", "Printer Support", and "Email Support".
To include all of these, you can use "Queue LIKE 'Support'".
Using the Advanced tab, you can also type one other criteria to search for queues
by their lifecycle. TicketSQL supports "Lifecycle = 'support'" if you type it
directly into the Advanced search box.
=head2 Basic Custom Field Searches
Once you add a queue to your search using one of the options above, you'll see
any custom fields applied to those queues at the bottom of the list of values in
the Add Criteria section. To search for all tickets with a custom field that
has some value, pick the comparision ("matches", "is", etc.), add a value,
and click "Add these terms" to build the search.
If you have a custom field named "Transport Type", for example, that has
the values, "Car", "Bus" or "Train", you can search for all tickets that
reference cars by picking "is" next to "Transport Type", typing "Car"
and clicking Add these terms. You should then see a search term like:
'CF.{Transport Type}' = 'Car'
For custom fields that have a dropdown with values to pick from a list,
the Query Builder will show the available values as a dropdown and
you can pick from the options without typing a value.
When searching for custom fields, you can also add them as a column in
your search results as described above.
=head2 Searching for Empty Custom Fields
Sometimes you want to search for all tickets where a given custom
field doesn't have a particular value. For example, you might search
for all tickets where "Transport Type" is not set to "Car" using the
"isn't" option, and that would create:
'CF.{Transport Type}' != 'Car'
The search would contain all tickets in that queue with "Transport Type"
values of "Bus", "Train", and no value.
To remove tickets where Transport Type has no set value, add the
following to your query:
AND 'CF.{Transport Type}' IS NOT NULL
Similarly, to see all tickets where "Transport Type" hasn't be set,
you can search for :
'CF.{Transport Type}' IS NULL
=head1 Transaction Query Builder
Similar to the Ticket Query Builder, the Transaction Query Builder provides an
interface to search for individual transactions. Transactions are all of the
changes made to a ticket through its life. Each of the entries displayed in the
ticket history at the bottom of the ticket display page is a transaction.
In some cases, RT users looking for a particular reply on a ticket will
search in their email client rather than in RT because they will remenber
getting the email with the information they need. On a busy ticket, it
can be a challenge to find the reply from Jane some time this week. The
Transaction Query Builder now makes that sort of search easy.
=head2 Basic Transaction Searches
In the example above, suppose you remember getting a reply from Jane in email
on a ticket and you know it was in the last week. But it's been a busy week
and Jane is on a bunch of active tickets, so you're not sure where to start.
With the Transaction Query Builder, you can easily create a search to show all
replies from Jane.
First find Creator, select "is", and type Jane's username. The "Creator" of a
transaction is always the person who made the change. For a reply, by email or
in RT itself, the person who replied will be the Creator of the transaction.
Next, for Created select "after" and type "1 week ago". RT will then automatically
figure out the date 7 days ago and show you only results in the last 7 days.
Finally for Type select "is" and select "Correspond". Correspond is the name RT
users internally for all replies on a ticket.
Run the search and you'll see all replies from Jane on any tickets over the
last week. Note that you'll see all transactions you have rights to see, even
if you aren't a watcher and possibly didn't get an email originally.
=head2 Including Ticket Information
When searching for transactions, you can also add criteria about the types of
tickets the transactions should be on. In our example, we probably only want
to see active tickets, so in the bottom Ticket Fields section you can select
Status "is" and "Active". This will then filter out inactive statuses.
=head1 Advanced
In addition to the graphical query builder, RT also has an Advanced page
where you can write and modify queries and formats directly. For example,
you can type the following query directly in the Query box:
Status = 'resolved' AND Resolved > '2019-04-01' AND Queue = 'RT'
and then click "Apply" to let RT validate it. RT will display any syntax errors
if you make any mistakes so you can fix them.
=head2 Valid Search Values
In the above example, search values like C<'resolved'>, C<'2019-04-01'>,
and C<'RT'> are all literal search terms: a status, a date, and a string
representing the name of a queue. These are all static values that will then
return matching tickets. However, sometimes you want to compare 2 columns
in RT tables without knowing exact values. This is also supported, for
example:
=over
=item Search tickets where LastUpdated is after (later than) Resolved
LastUpdated > Resolved
This finds tickets that have been commented on or otherwise updated after
they were resolved. Note that C<Resolved> is not quoted, indicating that it's
the relative date value from a ticket instead of the literal string "Resolved".
=item Search tickets where the Requestor is also the Owner
Requestor.id = Owner
=item Search tickets where custom fields Foo and Bar have the same value
CF.Foo = CF.Bar
This is equal to:
CF.{Foo} = CF.{Bar}
CF.Foo = CF.Bar.Content
To compare LargeContent instead:
CF.IP = CF.IPRange.LargeContent
=back
=head1 Learn More
To use the query builder to build and save reports, see
L<Dashboard and Reports|docs/dashboards_reporting.pod>. For definitions of
RT metadata, see L<Ticket Metadata|docs/ticket_metadata.pod>.
=cut
|