From f8e5e38614b5bc29a310553e55c0cd73fc3e6445 Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Mon, 20 Aug 2018 12:40:27 -0400 Subject: [PATCH] enable output filtering by start / end line --- awx/ui/client/features/output/constants.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui/client/features/output/constants.js b/awx/ui/client/features/output/constants.js index 06c782b4fe..a3acc997b6 100644 --- a/awx/ui/client/features/output/constants.js +++ b/awx/ui/client/features/output/constants.js @@ -25,8 +25,8 @@ export const OUTPUT_PAGE_SIZE = 50; export const OUTPUT_SCROLL_DELAY = 100; export const OUTPUT_SCROLL_THRESHOLD = 0.1; export const OUTPUT_SEARCH_DOCLINK = 'https://docs.ansible.com/ansible-tower/3.3.0/html/userguide/search_sort.html'; -export const OUTPUT_SEARCH_FIELDS = ['changed', 'created', 'failed', 'host_name', 'stdout', 'task', 'role', 'playbook', 'play']; -export const OUTPUT_SEARCH_KEY_EXAMPLES = ['host_name:localhost', 'task:set', 'created:>=2000-01-01']; +export const OUTPUT_SEARCH_FIELDS = ['changed', 'created', 'failed', 'host_name', 'stdout', 'task', 'role', 'playbook', 'play', 'start_line', 'end_line']; +export const OUTPUT_SEARCH_KEY_EXAMPLES = ['host_name:localhost', 'task:set', 'created:>=2000-01-01', 'start_line:>=9000']; export const OUTPUT_EVENT_LIMIT = OUTPUT_PAGE_LIMIT * OUTPUT_PAGE_SIZE; export const WS_PREFIX = 'ws';