Is there any more documentation on how to use the jira.conf file? The documentation only says
"Configure which keys to display in the table with the keys, time_keys, and custom_keys fields."
I am running the command | jira issues 22618 | table Key Summary Assignee Created "Affected Systems"
Assignee is coming out as a multi field value, all i really want is displayName.
The following regex works
| jira issues 22618 | rex field=Assignee ".\"name\": \"(?\w+)\""| rex field=Assignee ".\"displayName\": \"(?[^\"]+)\"," | table Assignee_userid Assignee_displayName Assignee
Is this something I can configure with the jira.conf file or should I run the regex ?
... View more