diff options
author | softwarefactory-project-zuul[bot] <33884098+softwarefactory-project-zuul[bot]@users.noreply.github.com> | 2021-03-19 17:38:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-19 17:38:23 +0100 |
commit | 7a512c1de7f0501e5d8a43bed42df63b881357df (patch) | |
tree | 35732bf2740a13a40f1af48390dbb19031e928ee | |
parent | Merge pull request #9497 from ryanpetrello/bump-18 (diff) | |
parent | Adds ouiaId's to output page control buttons (diff) | |
download | awx-7a512c1de7f0501e5d8a43bed42df63b881357df.tar.xz awx-7a512c1de7f0501e5d8a43bed42df63b881357df.zip |
Merge pull request #9208 from mabashian/job-output-search-2
Add support for filtering and pagination on job output
SUMMARY
link #6612
link #5906
This PR adds the ability to filter job events and also includes logic to handle fetching filtered job events across different pages.
Note that the verbosity dropdown included in #5906 is not included in this work. I don't think that's possible without api changes.
As part of this work, I converted JobOutput.jsx from a class based component to a functional component. I've tried my best to make sure that all existing functionality has remained the same by comparing the experience of this branch to devel.
Like the old UI, the output filter is disabled while the job is running.
ISSUE TYPE
Feature Pull Request
COMPONENT NAME
UI
Reviewed-by: Jake McDermott <yo@jakemcdermott.me>
Reviewed-by: Marliana Lara <marliana.lara@gmail.com>
19 files changed, 12382 insertions, 8965 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 61b4a8b43d..827299ffd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,6 +45,7 @@ To learn more about Ansible Builder and Execution Environments, see: https://www - Added user interface for management jobs: https://github.com/ansible/awx/pull/9224 - Added toast message to show notification template test result to notification templates list https://github.com/ansible/awx/pull/9318 - Replaced CodeMirror with AceEditor for editing template variables and notification templates https://github.com/ansible/awx/pull/9281 +- Added support for filtering and pagination on job output https://github.com/ansible/awx/pull/9208 # 17.1.0 (March 9th, 2021) - Addressed a security issue in AWX (CVE-2021-20253) diff --git a/awx/ui_next/src/api/models/Jobs.js b/awx/ui_next/src/api/models/Jobs.js index db28e172b6..026ae671f0 100644 --- a/awx/ui_next/src/api/models/Jobs.js +++ b/awx/ui_next/src/api/models/Jobs.js @@ -53,6 +53,16 @@ class Jobs extends RelaunchMixin(Base) { } return this.http.get(endpoint, { params }); } + + readEventOptions(id, type = 'playbook') { + let endpoint; + if (type === 'playbook') { + endpoint = `/api/v2${getBaseURL(type)}${id}/job_events/`; + } else { + endpoint = `/api/v2${getBaseURL(type)}${id}/events/`; + } + return this.http.options(endpoint); + } } export default Jobs; diff --git a/awx/ui_next/src/components/JobList/JobList.jsx b/awx/ui_next/src/components/JobList/JobList.jsx index 30804d4b7f..5c331fd8a5 100644 --- a/awx/ui_next/src/components/JobList/JobList.jsx +++ b/awx/ui_next/src/components/JobList/JobList.jsx @@ -13,6 +13,7 @@ import useRequest, { useDeleteItems, useDismissableError, } from '../../util/useRequest'; +import isJobRunning from '../../util/jobs'; import { getQSConfig, parseQueryString } from '../../util/qs'; import JobListItem from './JobListItem'; import JobListCancelButton from './JobListCancelButton'; @@ -102,7 +103,7 @@ function JobList({ i18n, defaultParams, showTypeColumn = false }) { useCallback(async () => { return Promise.all( selected.map(job => { - if (['new', 'pending', 'waiting', 'running'].includes(job.status)) { + if (isJobRunning(job.status)) { return JobsAPI.cancel(job.id, job.type); } return Promise.resolve(); diff --git a/awx/ui_next/src/components/JobList/JobListCancelButton.jsx b/awx/ui_next/src/components/JobList/JobListCancelButton.jsx index ff4cf1cda6..5564464f79 100644 --- a/awx/ui_next/src/components/JobList/JobListCancelButton.jsx +++ b/awx/ui_next/src/components/JobList/JobListCancelButton.jsx @@ -4,18 +4,18 @@ import { t } from '@lingui/macro'; import { arrayOf, func } from 'prop-types'; import { Button, DropdownItem, Tooltip } from '@patternfly/react-core'; import { KebabifiedContext } from '../../contexts/Kebabified'; +import isJobRunning from '../../util/jobs'; import AlertModal from '../AlertModal'; import { Job } from '../../types'; function cannotCancelBecausePermissions(job) { return ( - !job.summary_fields.user_capabilities.start && - ['pending', 'waiting', 'running'].includes(job.status) + !job.summary_fields.user_capabilities.start && isJobRunning(job.status) ); } function cannotCancelBecauseNotRunning(job) { - return !['pending', 'waiting', 'running'].includes(job.status); + return !isJobRunning(job.status); } function JobListCancelButton({ i18n, jobsToCancel, onCancel }) { diff --git a/awx/ui_next/src/components/LaunchButton/ReLaunchDropDown.jsx b/awx/ui_next/src/components/LaunchButton/ReLaunchDropDown.jsx index 709d31e06c..6d0539c705 100644 --- a/awx/ui_next/src/components/LaunchButton/ReLaunchDropDown.jsx +++ b/awx/ui_next/src/components/LaunchButton/ReLaunchDropDown.jsx @@ -11,7 +11,7 @@ import { } from '@patternfly/react-core'; import { RocketIcon } from '@patternfly/react-icons'; -function ReLaunchDropDown({ isPrimary = false, handleRelaunch, i18n }) { +function ReLaunchDropDown({ isPrimary = false, handleRelaunch, i18n, ouiaId }) { const [isOpen, setIsOPen] = useState(false); const onToggle = () => { @@ -75,6 +75,7 @@ function ReLaunchDropDown({ isPrimary = false, handleRelaunch, i18n }) { return ( <Dropdown + ouiaId={ouiaId} isPlain position={DropdownPosition.right} isOpen={isOpen} diff --git a/awx/ui_next/src/components/Search/AdvancedSearch.jsx b/awx/ui_next/src/components/Search/AdvancedSearch.jsx index bc14007b32..1700846b02 100644 --- a/awx/ui_next/src/components/Search/AdvancedSearch.jsx +++ b/awx/ui_next/src/components/Search/AdvancedSearch.jsx @@ -29,6 +29,7 @@ function AdvancedSearch({ onSearch, searchableKeys, relatedSearchableKeys, + maxSelectHeight, }) { // TODO: blocked by pf bug, eventually separate these into two groups in the select // for now, I'm spreading set to get rid of duplicate keys...when they are grouped @@ -91,7 +92,7 @@ function AdvancedSearch({ selections={prefixSelection} isOpen={isPrefixDropdownOpen} placeholderText={i18n._(t`Set type`)} - maxHeight="500px" + maxHeight={maxSelectHeight} noResultsFoundText={i18n._(t`No results found`)} > <SelectOption @@ -129,7 +130,7 @@ function AdvancedSearch({ placeholderText={i18n._(t`Key`)} isCreatable onCreateOption={setKeySelection} - maxHeight="500px" + maxHeight={maxSelectHeight} noResultsFoundText={i18n._(t`No results found`)} > {allKeys.map(optionKey => ( @@ -149,7 +150,7 @@ function AdvancedSearch({ selections={lookupSelection} isOpen={isLookupDropdownOpen} placeholderText={i18n._(t`Lookup type`)} - maxHeight="500px" + maxHeight={maxSelectHeight} noResultsFoundText={i18n._(t`No results found`)} > <SelectOption @@ -269,11 +270,13 @@ AdvancedSearch.propTypes = { onSearch: PropTypes.func.isRequired, searchableKeys: PropTypes.arrayOf(PropTypes.string), relatedSearchableKeys: PropTypes.arrayOf(PropTypes.string), + maxSelectHeight: PropTypes.string, }; AdvancedSearch.defaultProps = { searchableKeys: [], relatedSearchableKeys: [], + maxSelectHeight: '300px', }; export default withI18n()(AdvancedSearch); diff --git a/awx/ui_next/src/components/Search/Search.jsx b/awx/ui_next/src/components/Search/Search.jsx index 55d9209e69..2c38f98793 100644 --- a/awx/ui_next/src/components/Search/Search.jsx +++ b/awx/ui_next/src/components/Search/Search.jsx @@ -41,6 +41,8 @@ function Search({ searchableKeys, relatedSearchableKeys, onShowAdvancedSearch, + isDisabled, + maxSelectHeight, }) { const [isSearchDropdownOpen, setIsSearchDropdownOpen] = useState(false); const [searchKey, setSearchKey] = useState( @@ -178,6 +180,7 @@ function Search({ selections={searchColumnName} isOpen={isSearchDropdownOpen} ouiaId="simple-key-select" + isDisabled={isDisabled} > {searchOptions} </Select> @@ -201,6 +204,7 @@ function Search({ onSearch={onSearch} searchableKeys={searchableKeys} relatedSearchableKeys={relatedSearchableKeys} + maxSelectHeight={maxSelectHeight} /> )) || (options && ( @@ -219,6 +223,8 @@ function Search({ isOpen={isFilterDropdownOpen} placeholderText={`Filter By ${name}`} ouiaId={`filter-by-${key}`} + isDisabled={isDisabled} + maxHeight={maxSelectHeight} > {options.map(([optionKey, optionLabel]) => ( <SelectOption @@ -241,6 +247,8 @@ function Search({ isOpen={isFilterDropdownOpen} placeholderText={`Filter By ${name}`} ouiaId={`filter-by-${key}`} + isDisabled={isDisabled} + maxHeight={maxSelectHeight} > <SelectOption key="true" value="true"> {booleanLabels.true || i18n._(t`Yes`)} @@ -265,11 +273,12 @@ function Search({ value={searchValue} onChange={setSearchValue} onKeyDown={handleTextKeyDown} + isDisabled={isDisabled} /> <div css={!searchValue && `cursor:not-allowed`}> <Button variant={ButtonVariant.control} - isDisabled={!searchValue} + isDisabled={!searchValue || isDisabled} aria-label={i18n._(t`Search submit button`)} onClick={handleSearch} > @@ -310,11 +319,15 @@ Search.propTypes = { onSearch: PropTypes.func, onRemove: PropTypes.func, onShowAdvancedSearch: PropTypes.func.isRequired, + isDisabled: PropTypes.bool, + maxSelectHeight: PropTypes.string, }; Search.defaultProps = { onSearch: null, onRemove: null, + isDisabled: false, + maxSelectHeight: '300px', }; export default withI18n()(withRouter(Search)); diff --git a/awx/ui_next/src/screens/Job/Job.jsx b/awx/ui_next/src/screens/Job/Job.jsx index 479eeb6e49..aaf3b4f329 100644 --- a/awx/ui_next/src/screens/Job/Job.jsx +++ b/awx/ui_next/src/screens/Job/Job.jsx @@ -26,28 +26,53 @@ function Job({ i18n, setBreadcrumb }) { const { id, type } = useParams(); const match = useRouteMatch(); - const { isLoading, error, request: fetchJob, result } = useRequest( + const { + isLoading, + error, + request: fetchJob, + result: { jobDetail, eventRelatedSearchableKeys, eventSearchableKeys }, + } = useRequest( useCallback(async () => { - const { data } = await JobsAPI.readDetail(id, type); + const { data: jobDetailData } = await JobsAPI.readDetail(id, type); + const { data: jobEventOptions } = await JobsAPI.readEventOptions( + id, + type + ); if ( - data?.summary_fields?.credentials?.find(cred => cred.kind === 'vault') + jobDetailData?.summary_fields?.credentials?.find( + cred => cred.kind === 'vault' + ) ) { const { data: { results }, - } = await JobsAPI.readCredentials(data.id, type); + } = await JobsAPI.readCredentials(jobDetailData.id, type); - data.summary_fields.credentials = results; + jobDetailData.summary_fields.credentials = results; } - setBreadcrumb(data); - return data; - }, [id, type, setBreadcrumb]) + setBreadcrumb(jobDetailData); + + return { + jobDetail: jobDetailData, + eventRelatedSearchableKeys: ( + jobEventOptions?.related_search_fields || [] + ).map(val => val.slice(0, -8)), + eventSearchableKeys: Object.keys( + jobEventOptions.actions?.GET || {} + ).filter(key => jobEventOptions.actions?.GET[key].filterable), + }; + }, [id, type, setBreadcrumb]), + { + jobDetail: null, + eventRelatedSearchableKeys: [], + eventSearchableKeys: [], + } ); useEffect(() => { fetchJob(); }, [fetchJob]); - const job = useWsJob(result); + const job = useWsJob(jobDetail); const tabsArray = [ { @@ -112,7 +137,12 @@ function Job({ i18n, setBreadcrumb }) { <JobDetail type={type} job={job} /> </Route>, <Route key="output" path="/jobs/:type/:id/output"> - <JobOutput type={type} job={job} /> + <JobOutput + type={type} + job={job} + eventRelatedSearchableKeys={eventRelatedSearchableKeys} + eventSearchableKeys={eventSearchableKeys} + /> </Route>, <Route key="not-found" path="*"> <ContentError isNotFound> diff --git a/awx/ui_next/src/screens/Job/JobOutput/JobOutput.jsx b/awx/ui_next/src/screens/Job/JobOutput/JobOutput.jsx index ac974c44ff..4533dcc585 100644 --- a/awx/ui_next/src/screens/Job/JobOutput/JobOutput.jsx +++ b/awx/ui_next/src/screens/Job/JobOutput/JobOutput.jsx @@ -1,5 +1,5 @@ -import React, { Component, Fragment } from 'react'; -import { withRouter } from 'react-router-dom'; +import React, { useCallback, useEffect, useRef, useState } from 'react'; +import { useHistory, useLocation, withRouter } from 'react-router-dom'; import { I18n } from '@lingui/react'; import { t } from '@lingui/macro'; import styled from 'styled-components'; @@ -10,16 +10,25 @@ import { InfiniteLoader, List, } from 'react-virtualized'; -import { Button } from '@patternfly/react-core'; import Ansi from 'ansi-to-html'; import hasAnsi from 'has-ansi'; import { AllHtmlEntities } from 'html-entities'; +import { + Button, + Toolbar, + ToolbarContent, + ToolbarItem, + ToolbarToggleGroup, + Tooltip, +} from '@patternfly/react-core'; +import { SearchIcon } from '@patternfly/react-icons'; import AlertModal from '../../../components/AlertModal'; -import { CardBody } from '../../../components/Card'; +import { CardBody as _CardBody } from '../../../components/Card'; import ContentError from '../../../components/ContentError'; import ContentLoading from '../../../components/ContentLoading'; import ErrorDetail from '../../../components/ErrorDetail'; +import Search from '../../../components/Search'; import StatusIcon from '../../../components/StatusIcon'; import JobEvent from './JobEvent'; @@ -27,6 +36,17 @@ import JobEventSkeleton from './JobEventSkeleton'; import PageControls from './PageControls'; import HostEventModal from './HostEventModal'; import { HostStatusBar, OutputToolbar } from './shared'; +import getRowRangePageSize from './shared/jobOutputUtils'; +import isJobRunning from '../../../util/jobs'; +import useRequest, { useDismissableError } from '../../../util/useRequest'; +import { + encodeNonDefaultQueryString, + parseQueryString, + mergeParams, + replaceParams, + removeParams, + getQSConfig, +} from '../../../util/qs'; import { JobsAPI, ProjectUpdatesAPI, @@ -36,6 +56,10 @@ import { AdHocCommandsAPI, } from '../../../api'; +const QS_CONFIG = getQSConfig('job_output', { + order_by: 'start_line', +}); + const EVENT_START_TASK = 'playbook_on_task_start'; const EVENT_START_PLAY = 'playbook_on_play_start'; const EVENT_STATS_PLAY = 'playbook_on_stats'; @@ -136,6 +160,12 @@ function getLineTextHtml({ created, event, start_line, stdout }) { }; } +const CardBody = styled(_CardBody)` + display: flex; + flex-flow: column; + height: calc(100vh - 267px); +`; + const HeaderTitle = styled.div` display: inline-flex; align-items: center; @@ -154,9 +184,9 @@ const OutputWrapper = styled.div` background-color: #ffffff; display: flex; flex-direction: column; + flex: 1 1 auto; font-family: monospace; font-size: 15px; - height: calc(100vh - 350px); outline: 1px solid #d7d7d7; ${({ cssMap }) => Object.keys(cssMap).map(className => `.${className}{${cssMap[className]}}`)} @@ -169,6 +199,15 @@ const OutputFooter = styled.div` flex: 1; `; +const SearchToolbar = styled(Toolbar)` + position: inherit !important; +`; + +const SearchToolbarContent = styled(ToolbarContent)` + padding-left: 0px !important; + padding-right: 0px !important; +`; + let ws; function connectJobSocket({ type, id }, onMessage) { ws = new WebSocket( @@ -219,194 +258,112 @@ function range(low, high) { return numbers; } -class JobOutput extends Component { - constructor(props) { - super(props); - this.listRef = React.createRef(); - this.state = { - contentError: null, - deletionError: null, - cancelError: null, - hasContentLoading: true, - results: {}, - currentlyLoading: [], - remoteRowCount: 0, - isHostModalOpen: false, - hostEvent: {}, - cssMap: {}, - jobStatus: props.job.status ?? 'waiting', - showCancelPrompt: false, - cancelInProgress: false, - }; - - this.cache = new CellMeasurerCache({ - fixedWidth: true, - defaultHeight: 25, - }); - - this._isMounted = false; - this.loadJobEvents = this.loadJobEvents.bind(this); - this.handleDeleteJob = this.handleDeleteJob.bind(this); - this.handleCancelOpen = this.handleCancelOpen.bind(this); - this.handleCancelConfirm = this.handleCancelConfirm.bind(this); - this.handleCancelClose = this.handleCancelClose.bind(this); - this.rowRenderer = this.rowRenderer.bind(this); - this.handleHostEventClick = this.handleHostEventClick.bind(this); - this.handleHostModalClose = this.handleHostModalClose.bind(this); - this.handleScrollFirst = this.handleScrollFirst.bind(this); - this.handleScrollLast = this.handleScrollLast.bind(this); - this.handleScrollNext = this.handleScrollNext.bind(this); - this.handleScrollPrevious = this.handleScrollPrevious.bind(this); - this.handleResize = this.handleResize.bind(this); - this.isRowLoaded = this.isRowLoaded.bind(this); - this.loadMoreRows = this.loadMoreRows.bind(this); - this.scrollToRow = this.scrollToRow.bind(this); - this.monitorJobSocketCounter = this.monitorJobSocketCounter.bind(this); +function isHostEvent(jobEvent) { + const { event, event_data, host, type } = jobEvent; + let isHost; + if (typeof host === 'number' || (event_data && event_data.res)) { + isHost = true; + } else if ( + type === 'project_update_event' && + event !== 'runner_on_skipped' && + event_data.host + ) { + isHost = true; + } else { + isHost = false; } + return isHost; +} - componentDidMount() { - const { job } = this.props; - this._isMounted = true; - this.loadJobEvents(); - - if (job.result_traceback) return; +const cache = new CellMeasurerCache({ + fixedWidth: true, + defaultHeight: 25, +}); - connectJobSocket(job, data => { - if (data.group_name === 'job_events') { - if (data.counter && data.counter > this.jobSocketCounter) { - this.jobSocketCounter = data.counter; - } - } - if (data.group_name === 'jobs' && data.unified_job_id === job.id) { - if (data.final_counter) { - this.jobSocketCounter = data.final_counter; +function JobOutput({ + job, + type, + eventRelatedSearchableKeys, + eventSearchableKeys, +}) { + const location = useLocation(); + const listRef = useRef(null); + const isMounted = useRef(false); + const previousWidth = useRef(0); + const jobSocketCounter = useRef(0); + const interval = useRef(null); + const history = useHistory(); + const [contentError, setContentError] = useState(null); + const [cssMap, setCssMap] = useState({}); + const [currentlyLoading, setCurrentlyLoading] = useState([]); + const [hasContentLoading, setHasContentLoading] = useState(true); + const [hostEvent, setHostEvent] = useState({}); + const [isHostModalOpen, setIsHostModalOpen] = useState(false); + const [jobStatus, setJobStatus] = useState(job.status ?? 'waiting'); + const [showCancelModal, setShowCancelModal] = useState(false); + const [remoteRowCount, setRemoteRowCount] = useState(0); + const [results, setResults] = useState({}); + + useEffect(() => { + isMounted.current = true; + loadJobEvents(); + + if (isJobRunning(job.status)) { + connectJobSocket(job, data => { + if (data.group_name === 'job_events') { + if (data.counter && data.counter > jobSocketCounter.current) { + jobSocketCounter.current = data.counter; + } } - if (data.status) { - this.setState({ jobStatus: data.status }); + if (data.group_name === 'jobs' && data.unified_job_id === job.id) { + if (data.final_counter) { + jobSocketCounter.current = data.final_counter; + } + if (data.status) { + setJobStatus(data.status); + } } - } - }); - this.interval = setInterval(() => this.monitorJobSocketCounter(), 5000); - } - - componentDidUpdate(prevProps, prevState) { - // recompute row heights for any job events that have transitioned - // from loading to loaded - const { currentlyLoading, cssMap } = this.state; - let shouldRecomputeRowHeights = false; - prevState.currentlyLoading - .filter(n => !currentlyLoading.includes(n)) - .forEach(n => { - shouldRecomputeRowHeights = true; - this.cache.clear(n); }); - if (Object.keys(cssMap).length !== Object.keys(prevState.cssMap).length) { - shouldRecomputeRowHeights = true; + interval.current = setInterval(() => monitorJobSocketCounter(), 5000); } - if (shouldRecomputeRowHeights) { - if (this.listRef.recomputeRowHeights) { - this.listRef.recomputeRowHeights(); - } - } - } - componentWillUnmount() { - if (ws) { - ws.close(); - } - clearInterval(this.interval); - this._isMounted = false; - } + return function cleanup() { + if (ws) { + ws.close(); + } + clearInterval(interval.current); + isMounted.current = false; + }; + }, [location.search]); // eslint-disable-line react-hooks/exhaustive-deps - monitorJobSocketCounter() { - const { remoteRowCount } = this.state; - if (this.jobSocketCounter >= remoteRowCount) { - this._isMounted && - this.setState({ remoteRowCount: this.jobSocketCounter + 1 }); + useEffect(() => { + if (listRef.current?.recomputeRowHeights) { + listRef.current.recomputeRowHeights(); } - } - - async loadJobEvents() { - const { job, type } = this.props; - - const loadRange = range(1, 50); - this._isMounted && - this.setState(({ currentlyLoading }) => ({ - hasContentLoading: true, - currentlyLoading: currentlyLoading.concat(loadRange), - })); - try { - const { - data: { results: newResults = [], count }, - } = await JobsAPI.readEvents(job.id, type, { - page_size: 50, - order_by: 'start_line', - }); - this._isMounted && - this.setState(({ results }) => { - let countOffset = 1; - if (job?.result_traceback) { - const tracebackEvent = { - counter: 1, - created: null, - event: null, - type: null, - stdout: job?.result_traceback, - start_line: 0, - }; - const firstIndex = newResults.findIndex( - jobEvent => jobEvent.counter === 1 - ); - if (firstIndex && newResults[firstIndex]?.stdout) { - const stdoutLines = newResults[firstIndex].stdout.split('\r\n'); - stdoutLines[0] = tracebackEvent.stdout; - newResults[firstIndex].stdout = stdoutLines.join('\r\n'); - } else { - countOffset += 1; - newResults.unshift(tracebackEvent); - } - } - newResults.forEach(jobEvent => { - results[jobEvent.counter] = jobEvent; - }); - return { results, remoteRowCount: count + countOffset }; - }); - } catch (err) { - this.setState({ contentError: err }); - } finally { - this._isMounted && - this.setState(({ currentlyLoading }) => ({ - hasContentLoading: false, - currentlyLoading: currentlyLoading.filter( - n => !loadRange.includes(n) - ), - })); - } - } - - handleCancelOpen() { - this.setState({ showCancelPrompt: true }); - } - - handleCancelClose() { - this.setState({ showCancelPrompt: false }); - } - - async handleCancelConfirm() { - const { job, type } = this.props; - this.setState({ cancelInProgress: true }); - try { + }, [currentlyLoading, cssMap, remoteRowCount]); + + const { + error: cancelError, + isLoading: isCancelling, + request: cancelJob, + } = useRequest( + useCallback(async () => { await JobsAPI.cancel(job.id, type); - } catch (cancelError) { - this.setState({ cancelError }); - } finally { - this.setState({ showCancelPrompt: false, cancelInProgress: false }); - } - } + }, [job.id, type]), + {} + ); - async handleDeleteJob() { - const { job, history } = this.props; - try { + const { + error: dismissableCancelError, + dismissError: dismissCancelError, + } = useDismissableError(cancelError); + + const { + request: deleteJob, + isLoading: isDeleting, + error: deleteError, + } = useRequest( + useCallback(async () => { switch (job.type) { case 'project_update': await ProjectUpdatesAPI.destroy(job.id); @@ -427,63 +384,122 @@ class JobOutput extends Component { await JobsAPI.destroy(job.id); } history.push('/jobs'); + }, [job, history]) + ); + + const { + error: dismissableDeleteError, + dismissError: dismissDeleteError, + } = useDismissableError(deleteError); + + const monitorJobSocketCounter = () => { + if ( + jobSocketCounter.current === remoteRowCount && + !isJobRunning(job.status) + ) { + clearInterval(interval.current); + } + if (jobSocketCounter.current > remoteRowCount && isMounted.current) { + setRemoteRowCount(jobSocketCounter.current); + } + }; + + const loadJobEvents = async () => { + const loadRange = range(1, 50); + + if (isMounted.current) { + setHasContentLoading(true); + setCurrentlyLoading(prevCurrentlyLoading => + prevCurrentlyLoading.concat(loadRange) + ); + } + + try { + const { + data: { results: fetchedEvents = [], count }, + } = await JobsAPI.readEvents(job.id, type, { + page: 1, + page_size: 50, + ...parseQueryString(QS_CONFIG, location.search), + }); + + if (isMounted.current) { + let countOffset = 0; + if (job?.result_traceback) { + const tracebackEvent = { + counter: 1, + created: null, + event: null, + type: null, + stdout: job?.result_traceback, + start_line: 0, + }; + const firstIndex = fetchedEvents.findIndex( + jobEvent => jobEvent.counter === 1 + ); + if (firstIndex && fetchedEvents[firstIndex]?.stdout) { + const stdoutLines = fetchedEvents[firstIndex].stdout.split('\r\n'); + stdoutLines[0] = tracebackEvent.stdout; + fetchedEvents[firstIndex].stdout = stdoutLines.join('\r\n'); + } else { + countOffset += 1; + fetchedEvents.unshift(tracebackEvent); + } + } + + const newResults = {}; + let newResultsCssMap = {}; + fetchedEvents.forEach((jobEvent, index) => { + newResults[index] = jobEvent; + const { lineCssMap } = getLineTextHtml(jobEvent); + newResultsCssMap = { ...newResultsCssMap, ...lineCssMap }; + }); + setResults(newResults); + setRemoteRowCount(count + countOffset); + setCssMap(newResultsCssMap); + } } catch (err) { - this.setState({ deletionError: err }); + setContentError(err); + } finally { + if (isMounted.current) { + setHasContentLoading(false); + setCurrentlyLoading(prevCurrentlyLoading => + prevCurrentlyLoading.filter(n => !loadRange.includes(n)) + ); + loadRange.forEach(n => { + cache.clear(n); + }); + } } - } + }; - isRowLoaded({ index }) { - const { results, currentlyLoading } = this.state; + const isRowLoaded = ({ index }) => { if (results[index]) { return true; } return currentlyLoading.includes(index); - } - - handleHostEventClick(hostEvent) { - this.setState({ - isHostModalOpen: true, - hostEvent, - }); - } + }; - handleHostModalClose() { - this.setState({ - isHostModalOpen: false, - }); - } + const handleHostEventClick = hostEventToOpen => { + setHostEvent(hostEventToOpen); + setIsHostModalOpen(true); + }; - rowRenderer({ index, parent, key, style }) { - const { results } = this.state; - - const isHostEvent = jobEvent => { - const { event, event_data, host, type } = jobEvent; - let isHost; - if (typeof host === 'number' || (event_data && event_data.res)) { - isHost = true; - } else if ( - type === 'project_update_event' && - event !== 'runner_on_skipped' && - event_data.host - ) { - isHost = true; - } else { - isHost = false; - } - return isHost; - }; + const handleHostModalClose = () => { + setIsHostModalOpen(false); + }; + const rowRenderer = ({ index, parent, key, style }) => { let actualLineTextHtml = []; if (results[index]) { - const { lineTextHtml, lineCssMap } = getLineTextHtml(results[index]); - this.setState(({ cssMap }) => ({ cssMap: { ...cssMap, ...lineCssMap } })); + const { lineTextHtml } = getLineTextHtml(results[index]); actualLineTextHtml = lineTextHtml; } return ( <CellMeasurer key={key} - cache={this.cache} + cache={cache} parent={parent} rowIndex={index} columnIndex={0} @@ -491,10 +507,11 @@ class JobOutput extends Component { {results[index] ? ( <JobEvent isClickable={isHostEvent(results[index])} - onJobEventClick={() => this.handleHostEventClick(results[index])} + onJobEventClick={() => handleHostEventClick(results[index])} className="row" style={style} lineTextHtml={actualLineTextHtml} + index={index} {...results[index]} /> ) : ( @@ -507,235 +524,351 @@ class JobOutput extends Component { )} </CellMeasurer> ); - } + }; - loadMoreRows({ startIndex, stopIndex }) { + const loadMoreRows = ({ startIndex, stopIndex }) => { if (startIndex === 0 && stopIndex === 0) { return Promise.resolve(null); } - const { job, type } = this.props; - const loadRange = range(startIndex, stopIndex); - this._isMounted && - this.setState(({ currentlyLoading }) => ({ - currentlyLoading: currentlyLoading.concat(loadRange), - })); + if (stopIndex > startIndex + 50) { + stopIndex = startIndex + 50; + } + + const { page, pageSize, firstIndex } = getRowRangePageSize( + startIndex, + stopIndex + ); + + const loadRange = range( + firstIndex, + Math.min(firstIndex + pageSize, remoteRowCount) + ); + + if (isMounted.current) { + setCurrentlyLoading(prevCurrentlyLoading => + prevCurrentlyLoading.concat(loadRange) + ); + } + const params = { - counter__gte: startIndex, - counter__lte: stopIndex, - order_by: 'start_line', + page, + page_size: pageSize, + ...parseQueryString(QS_CONFIG, location.search), }; return JobsAPI.readEvents(job.id, type, params).then(response => { - this._isMounted && - this.setState(({ results, currentlyLoading }) => { - response.data.results.forEach(jobEvent => { - results[jobEvent.counter] = jobEvent; - }); - return { - results, - currentlyLoading: currentlyLoading.filter( - n => !loadRange.includes(n) - ), - }; + if (isMounted.current) { + const newResults = {}; + let newResultsCssMap = {}; + response.data.results.forEach((jobEvent, index) => { + newResults[firstIndex + index] = jobEvent; + const { lineCssMap } = getLineTextHtml(jobEvent); + newResultsCssMap = { ...newResultsCssMap, ...lineCssMap }; }); + setResults(prevResults => ({ + ...prevResults, + ...newResults, + })); + setCssMap(prevCssMap => ({ + ...prevCssMap, + ...newResultsCssMap, + })); + setCurrentlyLoading(prevCurrentlyLoading => + prevCurrentlyLoading.filter(n => !loadRange.includes(n)) + ); + loadRange.forEach(n => { + cache.clear(n); + }); + } }); - } + }; - scrollToRow(rowIndex) { - this.listRef.scrollToRow(rowIndex); - } + const scrollToRow = rowIndex => { + listRef.current.scrollToRow(rowIndex); + }; - handleScrollPrevious() { - const startIndex = this.listRef.Grid._renderedRowStartIndex; - const stopIndex = this.listRef.Grid._renderedRowStopIndex; + const handleScrollPrevious = () => { + const startIndex = listRef.current.Grid._renderedRowStartIndex; + const stopIndex = listRef.current.Grid._renderedRowStopIndex; const scrollRange = stopIndex - startIndex + 1; - this.scrollToRow(Math.max(0, startIndex - scrollRange)); - } + scrollToRow(Math.max(0, startIndex - scrollRange)); + }; - handleScrollNext() { - const stopIndex = this.listRef.Grid._renderedRowStopIndex; - this.scrollToRow(stopIndex - 1); - } + const handleScrollNext = () => { + const stopIndex = listRef.current.Grid._renderedRowStopIndex; + scrollToRow(stopIndex - 1); + }; - handleScrollFirst() { - this.scrollToRow(0); - } + const handleScrollFirst = () => { + scrollToRow(0); + }; - handleScrollLast() { - const { remoteRowCount } = this.state; - this.scrollToRow(remoteRowCount - 1); - } + const handleScrollLast = () => { + scrollToRow(remoteRowCount); + }; - handleResize({ width }) { - if (width !== this._previousWidth) { - this.cache.clearAll(); - if (this.listRef?.recomputeRowHeights) { - this.listRef.recomputeRowHeights(); + const handleResize = ({ width }) => { + if (width !== previousWidth) { + cache.clearAll(); + if (listRef.current?.recomputeRowHeights) { + listRef.current.recomputeRowHeights(); } } - this._previousWidth = width; - } + previousWidth.current = width; + }; - render() { - const { job } = this.props; - - const { - contentError, - deletionError, - hasContentLoading, - hostEvent, - isHostModalOpen, - remoteRowCount, - cssMap, - jobStatus, - showCancelPrompt, - cancelError, - cancelInProgress, - } = this.state; - - if (hasContentLoading) { - return <ContentLoading />; - } + const handleSearch = (key, value) => { + let params = parseQueryString(QS_CONFIG, location.search); + params = mergeParams(params, { [key]: value }); + pushHistoryState(params); + }; - if (contentError) { - return <ContentError error={contentError} />; + const handleReplaceSearch = (key, value) => { + const oldParams = parseQueryString(QS_CONFIG, location.search); + pushHistoryState(replaceParams(oldParams, { [key]: value })); + }; + + const handleRemoveSearchTerm = (key, value) => { + let oldParams = parseQueryString(QS_CONFIG, location.search); + if (parseInt(value, 10)) { + oldParams = removeParams(QS_CONFIG, oldParams, { + [key]: parseInt(value, 10), + }); } + pushHistoryState(removeParams(QS_CONFIG, oldParams, { [key]: value })); + }; - return ( - <Fragment> - <CardBody> - {isHostModalOpen && ( - <HostEventModal - onClose={this.handleHostModalClose} - isOpen={isHostModalOpen} - hostEvent={hostEvent} - /> - )} - <OutputHeader> - <HeaderTitle> - <StatusIcon status={job.status} /> - <h1>{job.name}</h1> - </HeaderTitle> - <OutputToolbar - job={job} - jobStatus={jobStatus} - onDelete={this.handleDeleteJob} - onCancel={this.handleCancelOpen} - /> - </OutputHeader> - <HostStatusBar counts={job.host_status_counts} /> - <PageControls - onScrollFirst={this.handleScrollFirst} - onScrollLast={this.handleScrollLast} - onScrollNext={this.handleScrollNext} - onScrollPrevious={this.handleScrollPrevious} - /> - <OutputWrapper cssMap={cssMap}> - <InfiniteLoader - isRowLoaded={this.isRowLoaded} - loadMoreRows={this.loadMoreRows} - rowCount={remoteRowCount} + const handleRemoveAllSearchTerms = () => { + const oldParams = parseQueryString(QS_CONFIG, location.search); + pushHistoryState(removeParams(QS_CONFIG, oldParams, { ...oldParams })); + }; + + const pushHistoryState = params => { + const { pathname } = history.location; + const encodedParams = encodeNonDefaultQueryString(QS_CONFIG, params); + history.push(encodedParams ? `${pathname}?${encodedParams}` : pathname); + }; + + const renderSearchComponent = i18n => ( + <Search + qsConfig={QS_CONFIG} + columns={[ + { + name: i18n._(t`Stdout`), + key: 'stdout__icontains', + isDefault: true, + }, + { + name: i18n._(t`Event`), + key: 'event', + options: [ + ['runner_on_failed', i18n._(t`Host Failed`)], + ['runner_on_start', i18n._(t`Host Started`)], + ['runner_on_ok', i18n._(t`Host OK`)], + ['runner_on_error', i18n._(t`Host Failure`)], + ['runner_on_skipped', i18n._(t`Host Skipped`)], + ['runner_on_unreachable', i18n._(t`Host Unreachable`)], + ['runner_on_no_hosts', i18n._(t`No Hosts Remaining`)], + ['runner_on_async_poll', i18n._(t`Host Polling`)], + ['runner_on_async_ok', i18n._(t`Host Async OK`)], + ['runner_on_async_failed', i18n._(t`Host Async Failure`)], + ['runner_item_on_ok', i18n._(t`Item OK`)], + ['runner_item_on_failed', i18n._(t`Item Failed`)], + ['runner_item_on_skipped', i18n._(t`Item Skipped`)], + ['runner_retry', i18n._(t`Host Retry`)], + ['runner_on_file_diff', i18n._(t`File Difference`)], + ['playbook_on_start', i18n._(t`Playbook Started`)], + ['playbook_on_notify', i18n._(t`Running Handlers`)], + ['playbook_on_include', i18n._(t`Including File`)], + ['playbook_on_no_hosts_matched', i18n._(t`No Hosts Matched`)], + ['playbook_on_no_hosts_remaining', i18n._(t`No Hosts Remaining`)], + ['playbook_on_task_start', i18n._(t`Task Started`)], + ['playbook_on_vars_prompt', i18n._(t`Variables Prompted`)], + ['playbook_on_setup', i18n._(t`Gathering Facts`)], + ['playbook_on_play_start', i18n._(t`Play Started`)], + ['playbook_on_stats', i18n._(t`Playbook Complete`)], + ['debug', i18n._(t`Debug`)], + ['verbose', i18n._(t`Verbose`)], + ['deprecated', i18n._(t`Deprecated`)], + ['warning', i18n._(t`Warning`)], + ['system_warning', i18n._(t`System Warning`)], + ['error', i18n._(t`Error`)], + ], + }, + { name: i18n._(t`Advanced`), key: 'advanced' }, + ]} + searchableKeys={eventSearchableKeys} + relatedSearchableKeys={eventRelatedSearchableKeys} + onSearch={handleSearch} + onReplaceSearch={handleReplaceSearch} + onShowAdvancedSearch={() => {}} + onRemove={handleRemoveSearchTerm} + isDisabled={isJobRunning(job.status)} + /> + ); + + if (contentError) { + return <ContentError error={contentError} />; + } + + return ( + <I18n> + {({ i18n }) => ( + <> + <CardBody> + {isHostModalOpen && ( + <HostEventModal + onClose={handleHostModalClose} + isOpen={isHostModalOpen} + hostEvent={hostEvent} + /> + )} + <OutputHeader> + <HeaderTitle> + <StatusIcon status={job.status} /> + <h1>{job.name}</h1> + </HeaderTitle> + <OutputToolbar + job={job} + jobStatus={jobStatus} + onCancel={() => setShowCancelModal(true)} + onDelete={deleteJob} + isDeleteDisabled={isDeleting} + /> + </OutputHeader> + <HostStatusBar counts={job.host_status_counts} /> + <SearchToolbar + id="job_output-toolbar" + clearAllFilters={handleRemoveAllSearchTerms} + collapseListedFiltersBreakpoint="lg" + clearFiltersButtonText={i18n._(t`Clear all filters`)} > - {({ onRowsRendered, registerChild }) => ( - <AutoSizer nonce={window.NONCE_ID} onResize={this.handleResize}> - {({ width, height }) => { - return ( - <List - ref={ref => { - this.listRef = ref; - registerChild(ref); - }} - deferredMeasurementCache={this.cache} - height={height || 1} - onRowsRendered={onRowsRendered} - rowCount={remoteRowCount} - rowHeight={this.cache.rowHeight} - rowRenderer={this.rowRenderer} - scrollToAlignment="start" - width={width || 1} - overscanRowCount={20} - /> - ); - }} - </AutoSizer> - )} - </InfiniteLoader> - <OutputFooter /> - </OutputWrapper> - </CardBody> - {showCancelPrompt && - ['pending', 'waiting', 'running'].includes(jobStatus) && ( - <I18n> - {({ i18n }) => ( - <AlertModal - isOpen={showCancelPrompt} + <SearchToolbarContent> + <ToolbarToggleGroup toggleIcon={<SearchIcon />} breakpoint="lg"> + <ToolbarItem variant="search-filter"> + {isJobRunning(job.status) ? ( + <Tooltip + content={i18n._( + t`Search is disabled while the job is running` + )} + > + {renderSearchComponent(i18n)} + </Tooltip> + ) : ( + renderSearchComponent(i18n) + )} + </ToolbarItem> + </ToolbarToggleGroup> + </SearchToolbarContent> + </SearchToolbar> + <PageControls + onScrollFirst={handleScrollFirst} + onScrollLast={handleScrollLast} + onScrollNext={handleScrollNext} + onScrollPrevious={handleScrollPrevious} + /> + <OutputWrapper cssMap={cssMap}> + <InfiniteLoader + isRowLoaded={isRowLoaded} + loadMoreRows={loadMoreRows} + rowCount={remoteRowCount} + > + {({ onRowsRendered, registerChild }) => ( + <AutoSizer nonce={window.NONCE_ID} onResize={handleResize}> + {({ width, height }) => { + return ( + <> + {hasContentLoading ? ( + <div style={{ width }}> + <ContentLoading /> + </div> + ) : ( + <List + ref={ref => { + registerChild(ref); + listRef.current = ref; + }} + deferredMeasurementCache={cache} + height={height || 1} + onRowsRendered={onRowsRendered} + rowCount={remoteRowCount} + rowHeight={cache.rowHeight} + rowRenderer={rowRenderer} + scrollToAlignment="start" + width={width || 1} + overscanRowCount={20} + /> + )} + </> + ); + }} + </AutoSizer> + )} + </InfiniteLoader> + <OutputFooter /> + </OutputWrapper> + </CardBody> + {showCancelModal && isJobRunning(job.status) && ( + <AlertModal + isOpen={showCancelModal} + variant="danger" + onClose={() => setShowCancelModal(false)} + title={i18n._(t`Cancel Job`)} + label={i18n._(t`Cancel Job`)} + actions={[ + <Button + id="cancel-job-confirm-button" + key="delete" variant="danger" - onClose={this.handleCancelClose} - title={i18n._(t`Cancel Job`)} - label={i18n._(t`Cancel Job`)} - actions={[ - <Button - id="cancel-job-confirm-button" - key="delete" - variant="danger" - isDisabled={cancelInProgress} - aria-label={i18n._(t`Cancel job`)} - onClick={this.handleCancelConfirm} - > - {i18n._(t`Cancel job`)} - </Button>, - <Button - id="cancel-job-return-button" - key="cancel" - variant="secondary" - aria-label={i18n._(t`Return`)} - onClick={this.handleCancelClose} - > - {i18n._(t`Return`)} - </Button>, - ]} + isDisabled={isCancelling} + aria-label={i18n._(t`Cancel job`)} + onClick={cancelJob} > - {i18n._( - t`Are you sure you want to submit the request to cancel this job?` - )} - </AlertModal> + {i18n._(t`Cancel job`)} + </Button>, + <Button + id="cancel-job-return-button" + key="cancel" + variant="secondary" + aria-label={i18n._(t`Return`)} + onClick={() => setShowCancelModal(false)} + > + {i18n._(t`Return`)} + </Button>, + ]} + > + {i18n._( + t`Are you sure you want to submit the request to cancel this job?` )} - </I18n> + </AlertModal> )} - {cancelError && ( - <I18n> - {({ i18n }) => ( - <AlertModal - isOpen={cancelError} - variant="danger" - onClose={() => this.setState({ cancelError: null })} - title={i18n._(t`Job Cancel Error`)} - label={i18n._(t`Job Cancel Error`)} - > - <ErrorDetail error={cancelError} /> - </AlertModal> - )} - </I18n> - )} - {deletionError && ( - <I18n> - {({ i18n }) => ( - <AlertModal - isOpen={deletionError} - variant="danger" - onClose={() => this.setState({ deletionError: null })} - title={i18n._(t`Job Delete Error`)} - label={i18n._(t`Job Delete Error`)} - > - <ErrorDetail error={deletionError} /> - </AlertModal> - )} - </I18n> - )} - </Fragment> - ); - } + {dismissableDeleteError && ( + <AlertModal + isOpen={dismissableDeleteError} + variant="danger" + onClose={dismissDeleteError} + title={i18n._(t`Job Delete Error`)} + label={i18n._(t`Job Delete Error`)} + > + <ErrorDetail error={dismissableDeleteError} /> + </AlertModal> + )} + {dismissableCancelError && ( + <AlertModal + isOpen={dismissableCancelError} + variant="danger" + onClose={dismissCancelError} + title={i18n._(t`Job Cancel Error`)} + label={i18n._(t`Job Cancel Error`)} + > + <ErrorDetail error={dismissableCancelError} /> + </AlertModal> + )} + </> + )} + </I18n> + ); } export { JobOutput as _JobOutput }; diff --git a/awx/ui_next/src/screens/Job/JobOutput/JobOutput.test.jsx b/awx/ui_next/src/screens/Job/JobOutput/JobOutput.test.jsx index 5531a0ade6..ef2fa35190 100644 --- a/awx/ui_next/src/screens/Job/JobOutput/JobOutput.test.jsx +++ b/awx/ui_next/src/screens/Job/JobOutput/JobOutput.test.jsx @@ -1,15 +1,43 @@ import React from 'react'; +import { act } from 'react-dom/test-utils'; import { mountWithContexts, waitForElement, } from '../../../../testUtils/enzymeHelpers'; -import JobOutput, { _JobOutput } from './JobOutput'; +import JobOutput from './JobOutput'; import { JobsAPI } from '../../../api'; import mockJobData from '../shared/data.job.json'; import mockJobEventsData from './data.job_events.json'; +import mockFilteredJobEventsData from './data.filtered_job_events.json'; jest.mock('../../../api'); +const generateChattyRows = () => { + const rows = [ + '', + 'PLAY [all] *********************************************************************16:17:13', + '', + 'TASK [debug] *******************************************************************16:17:13', + ]; + + for (let i = 1; i < 95; i++) { + rows.push( + `ok: [localhost] => (item=${i}) => {`, + ` "msg": "This is a debug message: ${i}"`, + '}' + ); + } + + rows.push( + '', + 'PLAY RECAP *********************************************************************16:17:15', + 'localhost : ok=1 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 ', + '' + ); + + return rows; +}; + async function checkOutput(wrapper, expectedLines) { await waitForElement(wrapper, 'div[type="job_event"]', el => el.length > 1); const jobEventLines = wrapper.find('JobEventLineText div'); @@ -41,11 +69,19 @@ async function findScrollButtons(wrapper) { }; } +const originalOffsetHeight = Object.getOwnPropertyDescriptor( + HTMLElement.prototype, + 'offsetHeight' +); +const originalOffsetWidth = Object.getOwnPropertyDescriptor( + HTMLElement.prototype, + 'offsetWidth' +); + describe('<JobOutput />', () => { let wrapper; const mockJob = mockJobData; const mockJobEvents = mockJobEventsData; - const scrollMock = jest.fn(); beforeEach(() => { JobsAPI.readEvents.mockResolvedValue({ @@ -64,289 +100,194 @@ describe('<JobOutput />', () => { }); test('initially renders succesfully', async () => { - wrapper = mountWithContexts(<JobOutput job={mockJob} />); + await act(async () => { + wrapper = mountWithContexts(<JobOutput job={mockJob} />); + }); await waitForElement(wrapper, 'JobEvent', el => el.length > 0); - await checkOutput(wrapper, [ - 'ok: [localhost] => (item=37) => {', - ' "msg": "This is a debug message: 37"', - '}', - 'ok: [localhost] => (item=38) => {', - ' "msg": "This is a debug message: 38"', - '}', - 'ok: [localhost] => (item=39) => {', - ' "msg": "This is a debug message: 39"', - '}', - 'ok: [localhost] => (item=40) => {', - ' "msg": "This is a debug message: 40"', - '}', - 'ok: [localhost] => (item=41) => {', - ' "msg": "This is a debug message: 41"', - '}', - 'ok: [localhost] => (item=42) => {', - ' "msg": "This is a debug message: 42"', - '}', - 'ok: [localhost] => (item=43) => {', - ' "msg": "This is a debug message: 43"', - '}', - 'ok: [localhost] => (item=44) => {', - ' "msg": "This is a debug message: 44"', - '}', - 'ok: [localhost] => (item=45) => {', - ' "msg": "This is a debug message: 45"', - '}', - 'ok: [localhost] => (item=46) => {', - ' "msg": "This is a debug message: 46"', - '}', - 'ok: [localhost] => (item=47) => {', - ' "msg": "This is a debug message: 47"', - '}', - 'ok: [localhost] => (item=48) => {', - ' "msg": "This is a debug message: 48"', - '}', - 'ok: [localhost] => (item=49) => {', - ' "msg": "This is a debug message: 49"', - '}', - 'ok: [localhost] => (item=50) => {', - ' "msg": "This is a debug message: 50"', - '}', - 'ok: [localhost] => (item=51) => {', - ' "msg": "This is a debug message: 51"', - '}', - 'ok: [localhost] => (item=52) => {', - ' "msg": "This is a debug message: 52"', - '}', - 'ok: [localhost] => (item=53) => {', - ' "msg": "This is a debug message: 53"', - '}', - 'ok: [localhost] => (item=54) => {', - ' "msg": "This is a debug message: 54"', - '}', - 'ok: [localhost] => (item=55) => {', - ' "msg": "This is a debug message: 55"', - '}', - 'ok: [localhost] => (item=56) => {', - ' "msg": "This is a debug message: 56"', - '}', - 'ok: [localhost] => (item=57) => {', - ' "msg": "This is a debug message: 57"', - '}', - 'ok: [localhost] => (item=58) => {', - ' "msg": "This is a debug message: 58"', - '}', - 'ok: [localhost] => (item=59) => {', - ' "msg": "This is a debug message: 59"', - '}', - 'ok: [localhost] => (item=60) => {', - ' "msg": "This is a debug message: 60"', - '}', - 'ok: [localhost] => (item=61) => {', - ' "msg": "This is a debug message: 61"', - '}', - 'ok: [localhost] => (item=62) => {', - ' "msg": "This is a debug message: 62"', - '}', - 'ok: [localhost] => (item=63) => {', - ' "msg": "This is a debug message: 63"', - '}', - 'ok: [localhost] => (item=64) => {', - ' "msg": "This is a debug message: 64"', - '}', - 'ok: [localhost] => (item=65) => {', - ' "msg": "This is a debug message: 65"', - '}', - 'ok: [localhost] => (item=66) => {', - ' "msg": "This is a debug message: 66"', - '}', - 'ok: [localhost] => (item=67) => {', - ' "msg": "This is a debug message: 67"', - '}', - 'ok: [localhost] => (item=68) => {', - ' "msg": "This is a debug message: 68"', - '}', - 'ok: [localhost] => (item=69) => {', - ' "msg": "This is a debug message: 69"', - '}', - 'ok: [localhost] => (item=70) => {', - ' "msg": "This is a debug message: 70"', - '}', - 'ok: [localhost] => (item=71) => {', - ' "msg": "This is a debug message: 71"', - '}', - 'ok: [localhost] => (item=72) => {', - ' "msg": "This is a debug message: 72"', - '}', - 'ok: [localhost] => (item=73) => {', - ' "msg": "This is a debug message: 73"', - '}', - 'ok: [localhost] => (item=74) => {', - ' "msg": "This is a debug message: 74"', - '}', - 'ok: [localhost] => (item=75) => {', - ' "msg": "This is a debug message: 75"', - '}', - 'ok: [localhost] => (item=76) => {', - ' "msg": "This is a debug message: 76"', - '}', - 'ok: [localhost] => (item=77) => {', - ' "msg": "This is a debug message: 77"', - '}', - 'ok: [localhost] => (item=78) => {', - ' "msg": "This is a debug message: 78"', - '}', - 'ok: [localhost] => (item=79) => {', - ' "msg": "This is a debug message: 79"', - '}', - 'ok: [localhost] => (item=80) => {', - ' "msg": "This is a debug message: 80"', - '}', - 'ok: [localhost] => (item=81) => {', - ' "msg": "This is a debug message: 81"', - '}', - 'ok: [localhost] => (item=82) => {', - ' "msg": "This is a debug message: 82"', - '}', - 'ok: [localhost] => (item=83) => {', - ' "msg": "This is a debug message: 83"', - '}', - 'ok: [localhost] => (item=84) => {', - ' "msg": "This is a debug message: 84"', - '}', - 'ok: [localhost] => (item=85) => {', - ' "msg": "This is a debug message: 85"', - '}', - 'ok: [localhost] => (item=86) => {', - ' "msg": "This is a debug message: 86"', - '}', - 'ok: [localhost] => (item=87) => {', - ' "msg": "This is a debug message: 87"', - '}', - 'ok: [localhost] => (item=88) => {', - ' "msg": "This is a debug message: 88"', - '}', - 'ok: [localhost] => (item=89) => {', - ' "msg": "This is a debug message: 89"', - '}', - 'ok: [localhost] => (item=90) => {', - ' "msg": "This is a debug message: 90"', - '}', - 'ok: [localhost] => (item=91) => {', - ' "msg": "This is a debug message: 91"', - '}', - 'ok: [localhost] => (item=92) => {', - ' "msg": "This is a debug message: 92"', - '}', - 'ok: [localhost] => (item=93) => {', - ' "msg": "This is a debug message: 93"', - '}', - 'ok: [localhost] => (item=94) => {', - ' "msg": "This is a debug message: 94"', - '}', - '', - 'PLAY RECAP *********************************************************************15:37:26', - 'localhost : ok=1 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 ', - '', - ]); + + await checkOutput(wrapper, generateChattyRows()); expect(wrapper.find('JobOutput').length).toBe(1); }); - test('should call scrollToRow with expected index when scroll "previous" button is clicked', async () => { - const handleScrollPrevious = jest.spyOn( - _JobOutput.prototype, - 'handleScrollPrevious' - ); - wrapper = mountWithContexts(<JobOutput job={mockJob} />); + test('navigation buttons should display output properly', async () => { + Object.defineProperty(HTMLElement.prototype, 'offsetHeight', { + configurable: true, + value: 10, + }); + Object.defineProperty(HTMLElement.prototype, 'offsetWidth', { + configurable: true, + value: 100, + }); + await act(async () => { + wrapper = mountWithContexts(<JobOutput job={mockJob} />); + }); await waitForElement(wrapper, 'JobEvent', el => el.length > 0); - const { scrollLastButton, scrollPreviousButton } = await findScrollButtons( - wrapper + const { + scrollFirstButton, + scrollLastButton, + scrollPreviousButton, + } = await findScrollButtons(wrapper); + let jobEvents = wrapper.find('JobEvent'); + expect(jobEvents.at(0).prop('stdout')).toBe(''); + expect(jobEvents.at(1).prop('stdout')).toBe( + '\r\nPLAY [all] *********************************************************************' ); - wrapper.find('JobOutput').instance().scrollToRow = scrollMock; - - scrollLastButton.simulate('click'); - scrollPreviousButton.simulate('click'); - - expect(handleScrollPrevious).toHaveBeenCalled(); - expect(scrollMock).toHaveBeenCalledTimes(2); - expect(scrollMock.mock.calls).toEqual([[100], [0]]); - }); - - test('should call scrollToRow with expected indices on when scroll "first" and "last" buttons are clicked', async () => { - const handleScrollFirst = jest.spyOn( - _JobOutput.prototype, - 'handleScrollFirst' + await act(async () => { + scrollLastButton.simulate('click'); + }); + wrapper.update(); + jobEvents = wrapper.find('JobEvent'); + expect(jobEvents.at(jobEvents.length - 2).prop('stdout')).toBe( + '\r\nPLAY RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : \u001b[0;32mok=1 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n' ); - wrapper = mountWithContexts(<JobOutput job={mockJob} />); - await waitForElement(wrapper, 'JobEvent', el => el.length > 0); - const { scrollFirstButton, scrollLastButton } = await findScrollButtons( - wrapper + expect(jobEvents.at(jobEvents.length - 1).prop('stdout')).toBe(''); + await act(async () => { + scrollPreviousButton.simulate('click'); + }); + wrapper.update(); + jobEvents = wrapper.find('JobEvent'); + expect(jobEvents.at(0).prop('stdout')).toBe( + '\u001b[0;32mok: [localhost] => (item=76) => {\u001b[0m\r\n\u001b[0;32m "msg": "This is a debug message: 76"\u001b[0m\r\n\u001b[0;32m}\u001b[0m' ); - wrapper.find('JobOutput').instance().scrollToRow = scrollMock; - - scrollFirstButton.simulate('click'); - scrollLastButton.simulate('click'); - scrollFirstButton.simulate('click'); - - expect(handleScrollFirst).toHaveBeenCalled(); - expect(scrollMock).toHaveBeenCalledTimes(3); - expect(scrollMock.mock.calls).toEqual([[0], [100], [0]]); - }); - - test('should call scrollToRow with expected index on when scroll "last" button is clicked', async () => { - const handleScrollLast = jest.spyOn( - _JobOutput.prototype, - 'handleScrollLast' + expect(jobEvents.at(1).prop('stdout')).toBe( + '\u001b[0;32mok: [localhost] => (item=77) => {\u001b[0m\r\n\u001b[0;32m "msg": "This is a debug message: 77"\u001b[0m\r\n\u001b[0;32m}\u001b[0m' + ); + await act(async () => { + scrollFirstButton.simulate('click'); + }); + wrapper.update(); + jobEvents = wrapper.find('JobEvent'); + expect(jobEvents.at(0).prop('stdout')).toBe(''); + expect(jobEvents.at(1).prop('stdout')).toBe( + '\r\nPLAY [all] *********************************************************************' + ); + await act(async () => { + scrollLastButton.simulate('click'); + }); + wrapper.update(); + jobEvents = wrapper.find('JobEvent'); + expect(jobEvents.at(jobEvents.length - 2).prop('stdout')).toBe( + '\r\nPLAY RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : \u001b[0;32mok=1 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n' + ); + expect(jobEvents.at(jobEvents.length - 1).prop('stdout')).toBe(''); + Object.defineProperty( + HTMLElement.prototype, + 'offsetHeight', + originalOffsetHeight + ); + Object.defineProperty( + HTMLElement.prototype, + 'offsetWidth', + originalOffsetWidth ); - wrapper = mountWithContexts(<JobOutput job={mockJob} />); - await waitForElement(wrapper, 'EmptyStateBody', el => el.length === 0); - wrapper - .find('JobOutput') - .instance() - .handleResize({ width: 100 }); - const { scrollLastButton } = await findScrollButtons(wrapper); - wrapper.find('JobOutput').instance().scrollToRow = scrollMock; - - scrollLastButton.simulate('click'); - - expect(handleScrollLast).toHaveBeenCalled(); - expect(scrollMock).toHaveBeenCalledTimes(1); - expect(scrollMock.mock.calls).toEqual([[100]]); }); test('should make expected api call for delete', async () => { - wrapper = mountWithContexts(<JobOutput job={mockJob} />); + await act(async () => { + wrapper = mountWithContexts(<JobOutput job={mockJob} />); + }); await waitForElement(wrapper, 'JobEvent', el => el.length > 0); - wrapper.find('button[aria-label="Delete"]').simulate('click'); - await waitForElement( - wrapper, - 'Modal', - el => el.props().isOpen === true && el.props().title === 'Delete Job' - ); - wrapper.find('Modal button[aria-label="Delete"]').simulate('click'); + await act(async () => { + wrapper.find('DeleteButton').invoke('onConfirm')(); + }); expect(JobsAPI.destroy).toHaveBeenCalledTimes(1); }); test('should show error dialog for failed deletion', async () => { - JobsAPI.destroy.mockRejectedValue(new Error({})); - wrapper = mountWithContexts(<JobOutput job={mockJob} />); + JobsAPI.destroy.mockRejectedValue( + new Error({ + response: { + config: { + method: 'delete', + url: `/api/v2/jobs/${mockJob.id}`, + }, + data: 'An error occurred', + status: 403, + }, + }) + ); + await act(async () => { + wrapper = mountWithContexts(<JobOutput job={mockJob} />); + }); await waitForElement(wrapper, 'JobEvent', el => el.length > 0); - wrapper.find('button[aria-label="Delete"]').simulate('click'); + await act(async () => { + wrapper.find('DeleteButton').invoke('onConfirm')(); + }); await waitForElement( wrapper, - 'Modal', - el => el.props().isOpen === true && el.props().title === 'Delete Job' + 'Modal[title="Job Delete Error"]', + el => el.length === 1 ); - wrapper.find('Modal button[aria-label="Delete"]').simulate('click'); - await waitForElement(wrapper, 'Modal ErrorDetail'); - const errorModalCloseBtn = wrapper.find( - 'ModalBox[aria-label="Job Delete Error"] ModalBoxCloseButton' + await act(async () => { + wrapper.find('Modal[title="Job Delete Error"]').invoke('onClose')(); + }); + await waitForElement( + wrapper, + 'Modal[title="Job Delete Error"]', + el => el.length === 0 + ); + expect(JobsAPI.destroy).toHaveBeenCalledTimes(1); + }); + + test('filter should be enabled after job finishes', async () => { + await act(async () => { + wrapper = mountWithContexts(<JobOutput job={mockJob} />); + }); + await waitForElement(wrapper, 'JobEvent', el => el.length > 0); + expect(wrapper.find('Search').props().isDisabled).toBe(false); + }); + + test('filter should be disabled while job is running', async () => { + await act(async () => { + wrapper = mountWithContexts( + <JobOutput job={{ ...mockJob, status: 'running' }} /> + ); + }); + await waitForElement(wrapper, 'JobEvent', el => el.length > 0); + expect(wrapper.find('Search').props().isDisabled).toBe(true); + }); + + test('filter should trigger api call and display correct rows', async () => { + const searchBtn = 'button[aria-label="Search submit button"]'; + const searchTextInput = 'input[aria-label="Search text input"]'; + await act(async () => { + wrapper = mountWithContexts(<JobOutput job={mockJob} />); + }); + await waitForElement(wrapper, 'JobEvent', el => el.length > 0); + JobsAPI.readEvents.mockClear(); + JobsAPI.readEvents.mockResolvedValueOnce({ + data: mockFilteredJobEventsData, + }); + await act(async () => { + wrapper.find(searchTextInput).instance().value = '99'; + wrapper.find(searchTextInput).simulate('change'); + }); + wrapper.update(); + await act(async () => { + wrapper.find(searchBtn).simulate('click'); + }); + wrapper.update(); + expect(JobsAPI.readEvents).toHaveBeenCalledWith(2, undefined, { + order_by: 'start_line', + page: 1, + page_size: 50, + stdout__icontains: '99', + }); + const jobEvents = wrapper.find('JobEvent'); + expect(jobEvents.at(0).prop('stdout')).toBe( + '\u001b[0;32mok: [localhost] => (item=99) => {\u001b[0m\r\n\u001b[0;32m "msg": "This is a debug message: 99"\u001b[0m\r\n\u001b[0;32m}\u001b[0m' + ); + expect(jobEvents.at(1).prop('stdout')).toBe( + '\u001b[0;32mok: [localhost] => (item=199) => {\u001b[0m\r\n\u001b[0;32m "msg": "This is a debug message: 199"\u001b[0m\r\n\u001b[0;32m}\u001b[0m' ); - errorModalCloseBtn.simulate('click'); - await waitForElement(wrapper, 'Modal ErrorDetail', el => el.length === 0); }); test('should throw error', async () => { JobsAPI.readEvents = () => Promise.reject(new Error()); - wrapper = mountWithContexts(<JobOutput job={mockJob} />); + await act(async () => { + wrapper = mountWithContexts(<JobOutput job={mockJob} />); + }); await waitForElement(wrapper, 'ContentError', el => el.length === 1); }); }); diff --git a/awx/ui_next/src/screens/Job/JobOutput/PageControls.jsx b/awx/ui_next/src/screens/Job/JobOutput/PageControls.jsx index ac377569f9..a7d8e6fd86 100644 --- a/awx/ui_next/src/screens/Job/JobOutput/PageControls.jsx +++ b/awx/ui_next/src/screens/Job/JobOutput/PageControls.jsx @@ -33,6 +33,7 @@ const PageControls = ({ }) => ( <Wrapper> <Button + ouiaId="job-output-expand-collapse-lines-button" aria-label={i18n._(t`Toggle expand/collapse event lines`)} variant="plain" css="margin-right: auto" @@ -40,6 +41,7 @@ const PageControls = ({ <PlusIcon /> </Button> <Button + ouiaId="job-output-scroll-previous-button" aria-label={i18n._(t`Scroll previous`)} onClick={onScrollPrevious} variant="plain" @@ -47,6 +49,7 @@ const PageControls = ({ <AngleUpIcon /> </Button> <Button + ouiaId="job-output-scroll-next-button" aria-label={i18n._(t`Scroll next`)} onClick={onScrollNext} variant="plain" @@ -54,6 +57,7 @@ const PageControls = ({ <AngleDownIcon /> </Button> <Button + ouiaId="job-output-scroll-first-button" aria-label={i18n._(t`Scroll first`)} onClick={onScrollFirst} variant="plain" @@ -61,6 +65,7 @@ const PageControls = ({ <AngleDoubleUpIcon /> </Button> <Button + ouiaId="job-output-scroll-last-button" aria-label={i18n._(t`Scroll last`)} onClick={onScrollLast} variant="plain" diff --git a/awx/ui_next/src/screens/Job/JobOutput/data.filtered_job_events.json b/awx/ui_next/src/screens/Job/JobOutput/data.filtered_job_events.json new file mode 100644 index 0000000000..7fed1b8f2a --- /dev/null +++ b/awx/ui_next/src/screens/Job/JobOutput/data.filtered_job_events.json @@ -0,0 +1,3457 @@ +{ + "count": 95, + "next": "/api/v2/jobs/3/job_events/?order_by=start_line&page=2&page_size=50&stdout__icontains=99", + "previous": null, + "results": [ + { + "id": 158, + "type": "job_event", + "url": "/api/v2/job_events/158/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/158/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:35.154973Z", + "modified": "2021-01-25T19:59:35.186637Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 103, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 99", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "99", + "ansible_loop_var": "item", + "_ansible_item_label": "99" + }, + "uuid": "51b43ae5-ebf3-4ec5-8eef-5d2bf5cd8538" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "51b43ae5-ebf3-4ec5-8eef-5d2bf5cd8538", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=99) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 99\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 298, + "end_line": 301, + "verbosity": 0 + }, + { + "id": 261, + "type": "job_event", + "url": "/api/v2/job_events/261/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/261/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:36.201489Z", + "modified": "2021-01-25T19:59:36.296056Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 203, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 199", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "199", + "ansible_loop_var": "item", + "_ansible_item_label": "199" + }, + "uuid": "f9546a1f-b088-47c0-8def-c213f42c1c61" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "f9546a1f-b088-47c0-8def-c213f42c1c61", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=199) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 199\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 598, + "end_line": 601, + "verbosity": 0 + }, + { + "id": 364, + "type": "job_event", + "url": "/api/v2/job_events/364/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/364/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:37.478217Z", + "modified": "2021-01-25T19:59:37.576551Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 303, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 299", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "299", + "ansible_loop_var": "item", + "_ansible_item_label": "299" + }, + "uuid": "496345b6-f8e8-4f09-8be2-14b7ed484c54" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "496345b6-f8e8-4f09-8be2-14b7ed484c54", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=299) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 299\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 898, + "end_line": 901, + "verbosity": 0 + }, + { + "id": 457, + "type": "job_event", + "url": "/api/v2/job_events/457/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/457/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:38.963716Z", + "modified": "2021-01-25T19:59:39.010339Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 403, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 399", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "399", + "ansible_loop_var": "item", + "_ansible_item_label": "399" + }, + "uuid": "eaacb137-d989-4ba0-934f-bd524960d60d" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "eaacb137-d989-4ba0-934f-bd524960d60d", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=399) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 399\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 1198, + "end_line": 1201, + "verbosity": 0 + }, + { + "id": 562, + "type": "job_event", + "url": "/api/v2/job_events/562/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/562/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:40.006197Z", + "modified": "2021-01-25T19:59:40.094331Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 503, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 499", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "499", + "ansible_loop_var": "item", + "_ansible_item_label": "499" + }, + "uuid": "355def14-416a-47ae-a3e9-98bdae551279" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "355def14-416a-47ae-a3e9-98bdae551279", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=499) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 499\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 1498, + "end_line": 1501, + "verbosity": 0 + }, + { + "id": 655, + "type": "job_event", + "url": "/api/v2/job_events/655/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/655/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:41.250536Z", + "modified": "2021-01-25T19:59:41.297211Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 603, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 599", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "599", + "ansible_loop_var": "item", + "_ansible_item_label": "599" + }, + "uuid": "774264d8-fc30-49b6-99f4-3859e7f7b654" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "774264d8-fc30-49b6-99f4-3859e7f7b654", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=599) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 599\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 1798, + "end_line": 1801, + "verbosity": 0 + }, + { + "id": 764, + "type": "job_event", + "url": "/api/v2/job_events/764/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/764/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:42.579121Z", + "modified": "2021-01-25T19:59:42.688693Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 703, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 699", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "699", + "ansible_loop_var": "item", + "_ansible_item_label": "699" + }, + "uuid": "15647ecd-0fa9-4148-91fa-798b3892d3a6" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "15647ecd-0fa9-4148-91fa-798b3892d3a6", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=699) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 699\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 2098, + "end_line": 2101, + "verbosity": 0 + }, + { + "id": 859, + "type": "job_event", + "url": "/api/v2/job_events/859/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/859/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:43.609896Z", + "modified": "2021-01-25T19:59:43.698752Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 803, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 799", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "799", + "ansible_loop_var": "item", + "_ansible_item_label": "799" + }, + "uuid": "82e7e226-961f-4000-a8f4-3281002b22f0" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "82e7e226-961f-4000-a8f4-3281002b22f0", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=799) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 799\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 2398, + "end_line": 2401, + "verbosity": 0 + }, + { + "id": 953, + "type": "job_event", + "url": "/api/v2/job_events/953/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/953/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:44.691259Z", + "modified": "2021-01-25T19:59:44.717190Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 903, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 899", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "899", + "ansible_loop_var": "item", + "_ansible_item_label": "899" + }, + "uuid": "a4ce202b-6c13-42b8-a409-8e36b9db7493" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "a4ce202b-6c13-42b8-a409-8e36b9db7493", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=899) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 899\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 2698, + "end_line": 2701, + "verbosity": 0 + }, + { + "id": 1057, + "type": "job_event", + "url": "/api/v2/job_events/1057/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1057/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:45.950889Z", + "modified": "2021-01-25T19:59:46.019625Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 994, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 990", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "990", + "ansible_loop_var": "item", + "_ansible_item_label": "990" + }, + "uuid": "5e2f09ab-10c9-4967-82be-6ffce7174fe8" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "5e2f09ab-10c9-4967-82be-6ffce7174fe8", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=990) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 990\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 2971, + "end_line": 2974, + "verbosity": 0 + }, + { + "id": 1054, + "type": "job_event", + "url": "/api/v2/job_events/1054/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1054/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:45.961448Z", + "modified": "2021-01-25T19:59:46.003176Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 995, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 991", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "991", + "ansible_loop_var": "item", + "_ansible_item_label": "991" + }, + "uuid": "27ed9c1a-6bf6-4758-b3e2-b0bdad56dd1d" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "27ed9c1a-6bf6-4758-b3e2-b0bdad56dd1d", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=991) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 991\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 2974, + "end_line": 2977, + "verbosity": 0 + }, + { + "id": 1042, + "type": "job_event", + "url": "/api/v2/job_events/1042/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1042/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:45.962508Z", + "modified": "2021-01-25T19:59:45.982840Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 996, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 992", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "992", + "ansible_loop_var": "item", + "_ansible_item_label": "992" + }, + "uuid": "950bfc13-16a8-4d01-8ba7-935b72b5396b" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "950bfc13-16a8-4d01-8ba7-935b72b5396b", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=992) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 992\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 2977, + "end_line": 2980, + "verbosity": 0 + }, + { + "id": 1051, + "type": "job_event", + "url": "/api/v2/job_events/1051/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1051/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:45.966562Z", + "modified": "2021-01-25T19:59:45.992345Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 997, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 993", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "993", + "ansible_loop_var": "item", + "_ansible_item_label": "993" + }, + "uuid": "9188a445-0402-4ec3-8b41-8f174d66d496" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "9188a445-0402-4ec3-8b41-8f174d66d496", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=993) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 993\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 2980, + "end_line": 2983, + "verbosity": 0 + }, + { + "id": 1058, + "type": "job_event", + "url": "/api/v2/job_events/1058/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1058/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:45.971693Z", + "modified": "2021-01-25T19:59:46.019625Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 998, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 994", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "994", + "ansible_loop_var": "item", + "_ansible_item_label": "994" + }, + "uuid": "d980c933-7fe6-41c3-afe6-6bec01aaabc2" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "d980c933-7fe6-41c3-afe6-6bec01aaabc2", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=994) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 994\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 2983, + "end_line": 2986, + "verbosity": 0 + }, + { + "id": 1055, + "type": "job_event", + "url": "/api/v2/job_events/1055/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1055/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:45.976062Z", + "modified": "2021-01-25T19:59:46.003176Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 999, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 995", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "995", + "ansible_loop_var": "item", + "_ansible_item_label": "995" + }, + "uuid": "caf521fb-ab23-4b2b-92d2-753a608bbdfd" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "caf521fb-ab23-4b2b-92d2-753a608bbdfd", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=995) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 995\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 2986, + "end_line": 2989, + "verbosity": 0 + }, + { + "id": 1043, + "type": "job_event", + "url": "/api/v2/job_events/1043/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1043/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:45.980970Z", + "modified": "2021-01-25T19:59:45.982840Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1000, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 996", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "996", + "ansible_loop_var": "item", + "_ansible_item_label": "996" + }, + "uuid": "48d0ae47-a580-4e35-adf5-ea492af7ae4a" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "48d0ae47-a580-4e35-adf5-ea492af7ae4a", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=996) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 996\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 2989, + "end_line": 2992, + "verbosity": 0 + }, + { + "id": 1052, + "type": "job_event", + "url": "/api/v2/job_events/1052/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1052/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:45.988193Z", + "modified": "2021-01-25T19:59:45.992345Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1001, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 997", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "997", + "ansible_loop_var": "item", + "_ansible_item_label": "997" + }, + "uuid": "1c0a5c35-aa2f-4252-8cd5-0929fe3b26dc" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "1c0a5c35-aa2f-4252-8cd5-0929fe3b26dc", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=997) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 997\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 2992, + "end_line": 2995, + "verbosity": 0 + }, + { + "id": 1059, + "type": "job_event", + "url": "/api/v2/job_events/1059/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1059/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:45.999787Z", + "modified": "2021-01-25T19:59:46.019625Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1002, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 998", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "998", + "ansible_loop_var": "item", + "_ansible_item_label": "998" + }, + "uuid": "0ae19129-04ed-4bc4-8b35-382062cbda03" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "0ae19129-04ed-4bc4-8b35-382062cbda03", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=998) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 998\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 2995, + "end_line": 2998, + "verbosity": 0 + }, + { + "id": 1056, + "type": "job_event", + "url": "/api/v2/job_events/1056/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1056/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:46.000661Z", + "modified": "2021-01-25T19:59:46.003176Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1003, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 999", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "999", + "ansible_loop_var": "item", + "_ansible_item_label": "999" + }, + "uuid": "0e0f43ba-e765-4a8d-a97b-d1b8155c2dba" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "0e0f43ba-e765-4a8d-a97b-d1b8155c2dba", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=999) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 999\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 2998, + "end_line": 3001, + "verbosity": 0 + }, + { + "id": 1163, + "type": "job_event", + "url": "/api/v2/job_events/1163/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1163/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:47.092035Z", + "modified": "2021-01-25T19:59:47.135202Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1103, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1099", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1099", + "ansible_loop_var": "item", + "_ansible_item_label": "1099" + }, + "uuid": "cdd8eca6-81af-451a-8746-ca46946534f2" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "cdd8eca6-81af-451a-8746-ca46946534f2", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1099) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1099\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 3298, + "end_line": 3301, + "verbosity": 0 + }, + { + "id": 1259, + "type": "job_event", + "url": "/api/v2/job_events/1259/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1259/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:48.157141Z", + "modified": "2021-01-25T19:59:48.232791Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1203, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1199", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1199", + "ansible_loop_var": "item", + "_ansible_item_label": "1199" + }, + "uuid": "fe7e2db0-484d-495d-ab06-4e6a784b9986" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "fe7e2db0-484d-495d-ab06-4e6a784b9986", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1199) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1199\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 3598, + "end_line": 3601, + "verbosity": 0 + }, + { + "id": 1359, + "type": "job_event", + "url": "/api/v2/job_events/1359/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1359/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:49.357156Z", + "modified": "2021-01-25T19:59:49.404647Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1303, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1299", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1299", + "ansible_loop_var": "item", + "_ansible_item_label": "1299" + }, + "uuid": "3010eea7-30f6-4b2d-b852-d41350c36b6d" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "3010eea7-30f6-4b2d-b852-d41350c36b6d", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1299) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1299\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 3898, + "end_line": 3901, + "verbosity": 0 + }, + { + "id": 1459, + "type": "job_event", + "url": "/api/v2/job_events/1459/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1459/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:50.780261Z", + "modified": "2021-01-25T19:59:50.926274Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1403, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1399", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1399", + "ansible_loop_var": "item", + "_ansible_item_label": "1399" + }, + "uuid": "cfaeddd1-0a80-4b0e-bbd0-1fb9440b84e8" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "cfaeddd1-0a80-4b0e-bbd0-1fb9440b84e8", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1399) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1399\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 4198, + "end_line": 4201, + "verbosity": 0 + }, + { + "id": 1559, + "type": "job_event", + "url": "/api/v2/job_events/1559/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1559/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:51.864216Z", + "modified": "2021-01-25T19:59:51.991617Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1503, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1499", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1499", + "ansible_loop_var": "item", + "_ansible_item_label": "1499" + }, + "uuid": "671e121d-fdf0-443a-b6c3-401d27d79b5d" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "671e121d-fdf0-443a-b6c3-401d27d79b5d", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1499) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1499\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 4498, + "end_line": 4501, + "verbosity": 0 + }, + { + "id": 1656, + "type": "job_event", + "url": "/api/v2/job_events/1656/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1656/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:53.060776Z", + "modified": "2021-01-25T19:59:53.118670Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1603, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1599", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1599", + "ansible_loop_var": "item", + "_ansible_item_label": "1599" + }, + "uuid": "b3235894-e653-48d1-bb6a-232214fdf623" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "b3235894-e653-48d1-bb6a-232214fdf623", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1599) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1599\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 4798, + "end_line": 4801, + "verbosity": 0 + }, + { + "id": 1762, + "type": "job_event", + "url": "/api/v2/job_events/1762/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1762/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:54.283641Z", + "modified": "2021-01-25T19:59:54.353053Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1703, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1699", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1699", + "ansible_loop_var": "item", + "_ansible_item_label": "1699" + }, + "uuid": "ffb5aee1-325d-40f9-91b5-1357e8b65025" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "ffb5aee1-325d-40f9-91b5-1357e8b65025", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1699) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1699\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 5098, + "end_line": 5101, + "verbosity": 0 + }, + { + "id": 1863, + "type": "job_event", + "url": "/api/v2/job_events/1863/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1863/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:55.734279Z", + "modified": "2021-01-25T19:59:55.860839Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1803, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1799", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1799", + "ansible_loop_var": "item", + "_ansible_item_label": "1799" + }, + "uuid": "be5cff27-d68e-4474-94f2-cc38c7cdbfc8" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "be5cff27-d68e-4474-94f2-cc38c7cdbfc8", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1799) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1799\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 5398, + "end_line": 5401, + "verbosity": 0 + }, + { + "id": 1960, + "type": "job_event", + "url": "/api/v2/job_events/1960/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/1960/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:57.193270Z", + "modified": "2021-01-25T19:59:57.287536Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1903, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1899", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1899", + "ansible_loop_var": "item", + "_ansible_item_label": "1899" + }, + "uuid": "766481f0-4728-438f-9cd0-895255ac253e" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "766481f0-4728-438f-9cd0-895255ac253e", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1899) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1899\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 5698, + "end_line": 5701, + "verbosity": 0 + }, + { + "id": 2043, + "type": "job_event", + "url": "/api/v2/job_events/2043/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2043/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:58.374962Z", + "modified": "2021-01-25T19:59:58.425961Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1994, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1990", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1990", + "ansible_loop_var": "item", + "_ansible_item_label": "1990" + }, + "uuid": "0360a8c3-d54f-438d-913e-beeaf771cb95" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "0360a8c3-d54f-438d-913e-beeaf771cb95", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1990) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1990\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 5971, + "end_line": 5974, + "verbosity": 0 + }, + { + "id": 2038, + "type": "job_event", + "url": "/api/v2/job_events/2038/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2038/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:58.405637Z", + "modified": "2021-01-25T19:59:58.409803Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1995, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1991", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1991", + "ansible_loop_var": "item", + "_ansible_item_label": "1991" + }, + "uuid": "c2f23fc8-86b5-4ded-8381-75ff6678bb20" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "c2f23fc8-86b5-4ded-8381-75ff6678bb20", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1991) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1991\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 5974, + "end_line": 5977, + "verbosity": 0 + }, + { + "id": 2051, + "type": "job_event", + "url": "/api/v2/job_events/2051/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2051/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:58.409971Z", + "modified": "2021-01-25T19:59:58.415030Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1996, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1992", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1992", + "ansible_loop_var": "item", + "_ansible_item_label": "1992" + }, + "uuid": "5e650677-9801-49b3-b1e6-66f5fdd030a4" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "5e650677-9801-49b3-b1e6-66f5fdd030a4", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1992) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1992\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 5977, + "end_line": 5980, + "verbosity": 0 + }, + { + "id": 2054, + "type": "job_event", + "url": "/api/v2/job_events/2054/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2054/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:58.412000Z", + "modified": "2021-01-25T19:59:58.450714Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1997, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1993", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1993", + "ansible_loop_var": "item", + "_ansible_item_label": "1993" + }, + "uuid": "b9588b00-0362-40ed-9a67-ad145374d7d6" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "b9588b00-0362-40ed-9a67-ad145374d7d6", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1993) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1993\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 5980, + "end_line": 5983, + "verbosity": 0 + }, + { + "id": 2045, + "type": "job_event", + "url": "/api/v2/job_events/2045/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2045/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:58.415443Z", + "modified": "2021-01-25T19:59:58.425961Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1998, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1994", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1994", + "ansible_loop_var": "item", + "_ansible_item_label": "1994" + }, + "uuid": "6297a5a1-7cc6-486d-b3bc-c3a40a503c20" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "6297a5a1-7cc6-486d-b3bc-c3a40a503c20", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1994) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1994\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 5983, + "end_line": 5986, + "verbosity": 0 + }, + { + "id": 2055, + "type": "job_event", + "url": "/api/v2/job_events/2055/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2055/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:58.437385Z", + "modified": "2021-01-25T19:59:58.450714Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 1999, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1995", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1995", + "ansible_loop_var": "item", + "_ansible_item_label": "1995" + }, + "uuid": "bd4dbb3c-24e7-427c-90a4-d1caf3fdaae1" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "bd4dbb3c-24e7-427c-90a4-d1caf3fdaae1", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1995) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1995\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 5986, + "end_line": 5989, + "verbosity": 0 + }, + { + "id": 2056, + "type": "job_event", + "url": "/api/v2/job_events/2056/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2056/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:58.450193Z", + "modified": "2021-01-25T19:59:58.635719Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 2000, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1996", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1996", + "ansible_loop_var": "item", + "_ansible_item_label": "1996" + }, + "uuid": "a5fed339-1e57-4851-9af5-7e0d15c6ddda" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "a5fed339-1e57-4851-9af5-7e0d15c6ddda", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1996) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1996\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 5989, + "end_line": 5992, + "verbosity": 0 + }, + { + "id": 2057, + "type": "job_event", + "url": "/api/v2/job_events/2057/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2057/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:58.466953Z", + "modified": "2021-01-25T19:59:58.635719Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 2001, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1997", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1997", + "ansible_loop_var": "item", + "_ansible_item_label": "1997" + }, + "uuid": "735fbfd6-c07d-48c4-9332-ad69fdfca878" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "735fbfd6-c07d-48c4-9332-ad69fdfca878", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1997) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1997\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 5992, + "end_line": 5995, + "verbosity": 0 + }, + { + "id": 2058, + "type": "job_event", + "url": "/api/v2/job_events/2058/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2058/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:58.485294Z", + "modified": "2021-01-25T19:59:58.635719Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 2002, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1998", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1998", + "ansible_loop_var": "item", + "_ansible_item_label": "1998" + }, + "uuid": "f95a63b5-ff5d-403d-b25e-c5263520742b" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "f95a63b5-ff5d-403d-b25e-c5263520742b", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1998) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1998\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 5995, + "end_line": 5998, + "verbosity": 0 + }, + { + "id": 2059, + "type": "job_event", + "url": "/api/v2/job_events/2059/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2059/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:58.506554Z", + "modified": "2021-01-25T19:59:58.635719Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 2003, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1999", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "1999", + "ansible_loop_var": "item", + "_ansible_item_label": "1999" + }, + "uuid": "e73e7536-6b84-4092-9b8f-59f79b45d466" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "e73e7536-6b84-4092-9b8f-59f79b45d466", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1999) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1999\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 5998, + "end_line": 6001, + "verbosity": 0 + }, + { + "id": 2158, + "type": "job_event", + "url": "/api/v2/job_events/2158/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2158/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T19:59:59.894830Z", + "modified": "2021-01-25T20:00:00.015101Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 2103, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 2099", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "2099", + "ansible_loop_var": "item", + "_ansible_item_label": "2099" + }, + "uuid": "d17641fc-8c1f-469f-a27a-52bb24e651ee" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "d17641fc-8c1f-469f-a27a-52bb24e651ee", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=2099) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 2099\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 6298, + "end_line": 6301, + "verbosity": 0 + }, + { + "id": 2261, + "type": "job_event", + "url": "/api/v2/job_events/2261/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2261/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T20:00:01.283631Z", + "modified": "2021-01-25T20:00:01.364514Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 2203, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 2199", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "2199", + "ansible_loop_var": "item", + "_ansible_item_label": "2199" + }, + "uuid": "80413f69-7b48-448f-a4f4-24f53b0657a8" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "80413f69-7b48-448f-a4f4-24f53b0657a8", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=2199) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 2199\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 6598, + "end_line": 6601, + "verbosity": 0 + }, + { + "id": 2352, + "type": "job_event", + "url": "/api/v2/job_events/2352/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2352/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T20:00:02.545472Z", + "modified": "2021-01-25T20:00:02.549716Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 2303, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 2299", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "2299", + "ansible_loop_var": "item", + "_ansible_item_label": "2299" + }, + "uuid": "707c37e5-1773-4110-b218-5db807292507" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "707c37e5-1773-4110-b218-5db807292507", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=2299) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 2299\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 6898, + "end_line": 6901, + "verbosity": 0 + }, + { + "id": 2455, + "type": "job_event", + "url": "/api/v2/job_events/2455/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2455/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T20:00:03.783615Z", + "modified": "2021-01-25T20:00:03.867873Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 2403, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 2399", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "2399", + "ansible_loop_var": "item", + "_ansible_item_label": "2399" + }, + "uuid": "b303a4c4-c0e6-4c6b-8058-37d6eab0d3b9" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "b303a4c4-c0e6-4c6b-8058-37d6eab0d3b9", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=2399) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 2399\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 7198, + "end_line": 7201, + "verbosity": 0 + }, + { + "id": 2562, + "type": "job_event", + "url": "/api/v2/job_events/2562/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2562/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T20:00:05.268054Z", + "modified": "2021-01-25T20:00:05.323916Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 2503, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 2499", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "2499", + "ansible_loop_var": "item", + "_ansible_item_label": "2499" + }, + "uuid": "a57db0ba-9185-44bf-b843-498829ddc05c" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "a57db0ba-9185-44bf-b843-498829ddc05c", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=2499) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 2499\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 7498, + "end_line": 7501, + "verbosity": 0 + }, + { + "id": 2659, + "type": "job_event", + "url": "/api/v2/job_events/2659/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2659/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T20:00:06.905923Z", + "modified": "2021-01-25T20:00:06.928694Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 2603, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 2599", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "2599", + "ansible_loop_var": "item", + "_ansible_item_label": "2599" + }, + "uuid": "ea65ded3-b7ca-457d-8286-90565a4660c0" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "ea65ded3-b7ca-457d-8286-90565a4660c0", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=2599) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 2599\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 7798, + "end_line": 7801, + "verbosity": 0 + }, + { + "id": 2761, + "type": "job_event", + "url": "/api/v2/job_events/2761/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2761/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T20:00:08.420576Z", + "modified": "2021-01-25T20:00:08.472109Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 2703, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 2699", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "2699", + "ansible_loop_var": "item", + "_ansible_item_label": "2699" + }, + "uuid": "d075210b-f84b-4327-bf39-3827c9c98a8d" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "d075210b-f84b-4327-bf39-3827c9c98a8d", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=2699) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 2699\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 8098, + "end_line": 8101, + "verbosity": 0 + }, + { + "id": 2858, + "type": "job_event", + "url": "/api/v2/job_events/2858/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2858/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T20:00:09.663555Z", + "modified": "2021-01-25T20:00:09.711445Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 2803, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 2799", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "2799", + "ansible_loop_var": "item", + "_ansible_item_label": "2799" + }, + "uuid": "71f49527-11cd-48e5-9668-0818e7b8ab16" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "71f49527-11cd-48e5-9668-0818e7b8ab16", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=2799) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 2799\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 8398, + "end_line": 8401, + "verbosity": 0 + }, + { + "id": 2959, + "type": "job_event", + "url": "/api/v2/job_events/2959/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/2959/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T20:00:10.903733Z", + "modified": "2021-01-25T20:00:11.024868Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 2903, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 2899", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "2899", + "ansible_loop_var": "item", + "_ansible_item_label": "2899" + }, + "uuid": "46be2034-ec12-4a3c-b64b-557a1daf7db5" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "46be2034-ec12-4a3c-b64b-557a1daf7db5", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=2899) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 2899\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 8698, + "end_line": 8701, + "verbosity": 0 + }, + { + "id": 3050, + "type": "job_event", + "url": "/api/v2/job_events/3050/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/3050/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T20:00:12.118441Z", + "modified": "2021-01-25T20:00:12.134911Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 2994, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 2990", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "2990", + "ansible_loop_var": "item", + "_ansible_item_label": "2990" + }, + "uuid": "095649f8-d185-49c9-82e3-aaa81d7ff644" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "095649f8-d185-49c9-82e3-aaa81d7ff644", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=2990) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 2990\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 8971, + "end_line": 8974, + "verbosity": 0 + }, + { + "id": 3051, + "type": "job_event", + "url": "/api/v2/job_events/3051/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/3051/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T20:00:12.128037Z", + "modified": "2021-01-25T20:00:12.134911Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 2995, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 2991", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "2991", + "ansible_loop_var": "item", + "_ansible_item_label": "2991" + }, + "uuid": "2a946083-b268-4a0e-83c4-b88a03136531" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "2a946083-b268-4a0e-83c4-b88a03136531", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=2991) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 2991\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 8974, + "end_line": 8977, + "verbosity": 0 + }, + { + "id": 3052, + "type": "job_event", + "url": "/api/v2/job_events/3052/", + "related": { + "job": "/api/v2/jobs/3/", + "children": "/api/v2/job_events/3052/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { "id": 1, "name": "localhost", "description": "" }, + "job": { + "id": 3, + "name": "chatty", + "description": "", + "status": "successful", + "failed": false, + "elapsed": 71.24, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-25T20:00:12.139642Z", + "modified": "2021-01-25T20:00:12.298717Z", + "job": 3, + "event": "runner_item_on_ok", + "counter": 2996, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "99069b79-d726-488c-9dd4-acab97997db7", + "play": "all", + "play_uuid": "0242ac12-0004-ad5f-d7aa-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_3_5eu0an6_/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 2992", + "_ansible_verbose_always": true, + "_ansible_no_log": false, + "changed": false, + "item": "2992", + "ansible_loop_var": "item", + "_ansible_item_label": "2992" + }, + "uuid": "720db8bb-3813-4f43-a6ae-c2502aecd0ac" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "720db8bb-3813-4f43-a6ae-c2502aecd0ac", + "parent_uuid": "0242ac12-0004-ad5f-d7aa-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=2992) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 2992\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 8977, + "end_line": 8980, + "verbosity": 0 + } + ] +} diff --git a/awx/ui_next/src/screens/Job/JobOutput/data.job_events.json b/awx/ui_next/src/screens/Job/JobOutput/data.job_events.json index 9ead005938..df90698fb5 100644 --- a/awx/ui_next/src/screens/Job/JobOutput/data.job_events.json +++ b/awx/ui_next/src/screens/Job/JobOutput/data.job_events.json @@ -3,8459 +3,8170 @@ "next": null, "previous": null, "results": [ - { - "id": 1951, - "type": "job_event", - "url": "/api/v2/job_events/1951/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1951/children/" - }, - "summary_fields": { - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:24.987840Z", - "modified": "2019-08-08T15:37:25.048723Z", - "job": 59, - "event": "playbook_on_start", - "counter": 1, - "event_display": "Playbook Started", - "event_data": { - "pid": 3, - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml" - }, - "event_level": 0, + { + "id": 11181, + "type": "job_event", + "url": "/api/v2/job_events/11181/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11181/children/" + }, + "summary_fields": { + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, - "changed": false, - "uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "parent_uuid": "", - "host": null, - "host_name": "", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "", - "task": "", - "role": "", - "stdout": "", - "start_line": 0, - "end_line": 0, - "verbosity": 0 - }, - { - "id": 1952, - "type": "job_event", - "url": "/api/v2/job_events/1952/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1952/children/" - }, - "summary_fields": { - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.061004Z", - "modified": "2019-08-08T15:37:25.085012Z", - "job": 59, - "event": "playbook_on_task_start", - "counter": 3, - "event_display": "Task Started (debug)", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "is_conditional": false, - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8", - "name": "debug" - }, - "event_level": 2, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:13.908757Z", + "modified": "2021-01-28T16:17:13.912569Z", + "job": 8, + "event": "playbook_on_start", + "counter": 1, + "event_display": "Playbook Started", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7" + }, + "event_level": 0, + "failed": false, + "changed": false, + "uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "parent_uuid": "", + "host": null, + "host_name": "", + "playbook": "chatty_tasks.yml", + "play": "", + "task": "", + "role": "", + "stdout": "", + "start_line": 0, + "end_line": 0, + "verbosity": 0 + }, + { + "id": 11182, + "type": "job_event", + "url": "/api/v2/job_events/11182/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11182/children/" + }, + "summary_fields": { + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, - "changed": false, - "uuid": "0242ac13-0005-25a7-452d-000000000008", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000006", - "host": null, - "host_name": "", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\r\nTASK [debug] *******************************************************************", - "start_line": 2, - "end_line": 4, - "verbosity": 0 - }, - { - "id": 1953, - "type": "job_event", - "url": "/api/v2/job_events/1953/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1953/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.061686Z", - "modified": "2019-08-08T15:37:25.095775Z", - "job": 59, - "event": "runner_on_start", - "counter": 4, - "event_display": "runner_on_start", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 0, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:13.914855Z", + "modified": "2021-01-28T16:17:13.919137Z", + "job": 8, + "event": "playbook_on_play_start", + "counter": 2, + "event_display": "Play Started (all)", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "name": "all", + "pattern": "all", + "uuid": "0242ac12-0004-20a0-8d35-000000000006" + }, + "event_level": 1, + "failed": false, + "changed": false, + "uuid": "0242ac12-0004-20a0-8d35-000000000006", + "parent_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "host": null, + "host_name": "", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "", + "role": "", + "stdout": "\r\nPLAY [all] *********************************************************************", + "start_line": 0, + "end_line": 2, + "verbosity": 0 + }, + { + "id": 11183, + "type": "job_event", + "url": "/api/v2/job_events/11183/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11183/children/" + }, + "summary_fields": { + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, - "changed": false, - "uuid": "dc9793ec-0715-4d4a-b426-db88a27031f9", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "", - "start_line": 4, - "end_line": 4, - "verbosity": 0 - }, - { - "id": 1954, - "type": "job_event", - "url": "/api/v2/job_events/1954/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1954/children/" - }, - "summary_fields": { - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.051822Z", - "modified": "2019-08-08T15:37:25.098589Z", - "job": 59, - "event": "playbook_on_play_start", - "counter": 2, - "event_display": "Play Started (all)", - "event_data": { - "play_pattern": "all", - "play": "all", - "name": "all", - "pattern": "all", - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml" - }, - "event_level": 1, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:13.936809Z", + "modified": "2021-01-28T16:17:13.939410Z", + "job": 8, + "event": "playbook_on_task_start", + "counter": 3, + "event_display": "Task Started (debug)", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "name": "debug", + "is_conditional": false, + "uuid": "0242ac12-0004-20a0-8d35-000000000008" + }, + "event_level": 2, + "failed": false, + "changed": false, + "uuid": "0242ac12-0004-20a0-8d35-000000000008", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "host": null, + "host_name": "", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\r\nTASK [debug] *******************************************************************", + "start_line": 2, + "end_line": 4, + "verbosity": 0 + }, + { + "id": 11184, + "type": "job_event", + "url": "/api/v2/job_events/11184/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11184/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, - "changed": false, - "uuid": "0242ac13-0005-25a7-452d-000000000006", - "parent_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "host": null, - "host_name": "", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "", - "role": "", - "stdout": "\r\nPLAY [all] *********************************************************************", - "start_line": 0, - "end_line": 2, - "verbosity": 0 - }, - { - "id": 1955, - "type": "job_event", - "url": "/api/v2/job_events/1955/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1955/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.122464Z", - "modified": "2019-08-08T15:37:25.164373Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 7, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "3", - "changed": false, - "msg": "This is a debug message: 3", - "_ansible_verbose_always": true, - "_ansible_item_label": "3" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:13.939176Z", + "modified": "2021-01-28T16:17:13.943973Z", + "job": 8, + "event": "runner_on_start", + "counter": 4, + "event_display": "Host Started", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "uuid": "d4bc464d-1402-4bb3-b5b8-36ef23c06d52" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "d4bc464d-1402-4bb3-b5b8-36ef23c06d52", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "", + "start_line": 4, + "end_line": 4, + "verbosity": 0 + }, + { + "id": 11186, + "type": "job_event", + "url": "/api/v2/job_events/11186/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11186/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.359276Z", + "modified": "2021-01-28T16:17:14.367680Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 5, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 1", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "7757e0a3-a5f7-43cc-8525-ebaff5110277", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=3) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 3\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 10, - "end_line": 13, - "verbosity": 0 - }, - { - "id": 1956, - "type": "job_event", - "url": "/api/v2/job_events/1956/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1956/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.114591Z", - "modified": "2019-08-08T15:37:25.168145Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 5, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "1", - "changed": false, - "msg": "This is a debug message: 1", - "_ansible_verbose_always": true, - "_ansible_item_label": "1" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "1", + "ansible_loop_var": "item", + "_ansible_item_label": "1" + }, + "uuid": "deba55ca-d702-4f7a-b3f5-67b9b4111194" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "deba55ca-d702-4f7a-b3f5-67b9b4111194", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=1) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 4, + "end_line": 7, + "verbosity": 0 + }, + { + "id": 11185, + "type": "job_event", + "url": "/api/v2/job_events/11185/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11185/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.370749Z", + "modified": "2021-01-28T16:17:14.374644Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 6, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 2", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "287e1747-d115-4c8f-9efd-6749f6b7bcf6", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=1) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 1\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 4, - "end_line": 7, - "verbosity": 0 - }, - { - "id": 1957, - "type": "job_event", - "url": "/api/v2/job_events/1957/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1957/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.154933Z", - "modified": "2019-08-08T15:37:25.188832Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 12, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "8", - "changed": false, - "msg": "This is a debug message: 8", - "_ansible_verbose_always": true, - "_ansible_item_label": "8" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "2", + "ansible_loop_var": "item", + "_ansible_item_label": "2" + }, + "uuid": "6c16b0b2-519a-4111-8c65-4a85e643f7df" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "6c16b0b2-519a-4111-8c65-4a85e643f7df", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=2) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 2\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 7, + "end_line": 10, + "verbosity": 0 + }, + { + "id": 11187, + "type": "job_event", + "url": "/api/v2/job_events/11187/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11187/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.394328Z", + "modified": "2021-01-28T16:17:14.402966Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 7, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 3", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "25ba7f33-0c0d-4bf0-a6f3-17b216be9dc8", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=8) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 8\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 25, - "end_line": 28, - "verbosity": 0 - }, - { - "id": 1958, - "type": "job_event", - "url": "/api/v2/job_events/1958/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1958/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.116393Z", - "modified": "2019-08-08T15:37:25.193501Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 6, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "2", - "changed": false, - "msg": "This is a debug message: 2", - "_ansible_verbose_always": true, - "_ansible_item_label": "2" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "3", + "ansible_loop_var": "item", + "_ansible_item_label": "3" + }, + "uuid": "aebe86cc-db98-4cb5-8620-38dd814f69cd" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "aebe86cc-db98-4cb5-8620-38dd814f69cd", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=3) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 3\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 10, + "end_line": 13, + "verbosity": 0 + }, + { + "id": 11188, + "type": "job_event", + "url": "/api/v2/job_events/11188/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11188/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.415964Z", + "modified": "2021-01-28T16:17:14.420170Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 8, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 4", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "cf5d9970-1f23-4647-a18f-cf8848e4bcc9", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=2) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 2\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 7, - "end_line": 10, - "verbosity": 0 - }, - { - "id": 1959, - "type": "job_event", - "url": "/api/v2/job_events/1959/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1959/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.130725Z", - "modified": "2019-08-08T15:37:25.211164Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 8, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "4", - "changed": false, - "msg": "This is a debug message: 4", - "_ansible_verbose_always": true, - "_ansible_item_label": "4" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "4", + "ansible_loop_var": "item", + "_ansible_item_label": "4" + }, + "uuid": "9d90b79b-d41e-4d8b-a5d4-14cacc3baa74" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "9d90b79b-d41e-4d8b-a5d4-14cacc3baa74", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=4) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 4\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 13, + "end_line": 16, + "verbosity": 0 + }, + { + "id": 11193, + "type": "job_event", + "url": "/api/v2/job_events/11193/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11193/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.447391Z", + "modified": "2021-01-28T16:17:14.620068Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 9, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 5", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "24093058-42f0-4ce2-b106-f079faf6c70a", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=4) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 4\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 13, - "end_line": 16, - "verbosity": 0 - }, - { - "id": 1960, - "type": "job_event", - "url": "/api/v2/job_events/1960/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1960/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.212417Z", - "modified": "2019-08-08T15:37:25.244597Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 17, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "13", - "changed": false, - "msg": "This is a debug message: 13", - "_ansible_verbose_always": true, - "_ansible_item_label": "13" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "5", + "ansible_loop_var": "item", + "_ansible_item_label": "5" + }, + "uuid": "3dc09abd-a2ed-4e27-9c41-aa055e911635" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "3dc09abd-a2ed-4e27-9c41-aa055e911635", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=5) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 5\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 16, + "end_line": 19, + "verbosity": 0 + }, + { + "id": 11189, + "type": "job_event", + "url": "/api/v2/job_events/11189/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11189/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.473838Z", + "modified": "2021-01-28T16:17:14.543706Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 10, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 6", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "e070e2b8-5584-4ca3-8f08-0de79af05a64", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=13) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 13\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 40, - "end_line": 43, - "verbosity": 0 - }, - { - "id": 1961, - "type": "job_event", - "url": "/api/v2/job_events/1961/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1961/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.135172Z", - "modified": "2019-08-08T15:37:25.265542Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 9, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "5", - "changed": false, - "msg": "This is a debug message: 5", - "_ansible_verbose_always": true, - "_ansible_item_label": "5" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "6", + "ansible_loop_var": "item", + "_ansible_item_label": "6" + }, + "uuid": "074206dd-9cc0-4121-88da-84d845aca5cd" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "074206dd-9cc0-4121-88da-84d845aca5cd", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=6) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 6\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 19, + "end_line": 22, + "verbosity": 0 + }, + { + "id": 11191, + "type": "job_event", + "url": "/api/v2/job_events/11191/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11191/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.496577Z", + "modified": "2021-01-28T16:17:14.596578Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 11, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 7", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "885a54b6-066e-4864-a28e-23ed5e4ea04e", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=5) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 5\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 16, - "end_line": 19, - "verbosity": 0 - }, - { - "id": 1962, - "type": "job_event", - "url": "/api/v2/job_events/1962/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1962/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.231698Z", - "modified": "2019-08-08T15:37:25.296171Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 19, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "15", - "changed": false, - "msg": "This is a debug message: 15", - "_ansible_verbose_always": true, - "_ansible_item_label": "15" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "7", + "ansible_loop_var": "item", + "_ansible_item_label": "7" + }, + "uuid": "05d4c436-248d-421e-855c-399ec0269c3c" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "05d4c436-248d-421e-855c-399ec0269c3c", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=7) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 7\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 22, + "end_line": 25, + "verbosity": 0 + }, + { + "id": 11194, + "type": "job_event", + "url": "/api/v2/job_events/11194/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11194/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.520143Z", + "modified": "2021-01-28T16:17:14.620068Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 12, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 8", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "d3ddf636-02d5-4a08-a78b-62eb333c7783", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=15) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 15\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 46, - "end_line": 49, - "verbosity": 0 - }, - { - "id": 1963, - "type": "job_event", - "url": "/api/v2/job_events/1963/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1963/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.136453Z", - "modified": "2019-08-08T15:37:25.306913Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 10, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "6", - "changed": false, - "msg": "This is a debug message: 6", - "_ansible_verbose_always": true, - "_ansible_item_label": "6" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "8", + "ansible_loop_var": "item", + "_ansible_item_label": "8" + }, + "uuid": "d48dbc71-3aa3-4ca2-8ec9-be2159367b7d" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "d48dbc71-3aa3-4ca2-8ec9-be2159367b7d", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=8) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 8\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 25, + "end_line": 28, + "verbosity": 0 + }, + { + "id": 11190, + "type": "job_event", + "url": "/api/v2/job_events/11190/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11190/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.537247Z", + "modified": "2021-01-28T16:17:14.543706Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 13, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 9", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "52597da6-2d20-4d47-a4c7-299cca248c21", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=6) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 6\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 19, - "end_line": 22, - "verbosity": 0 - }, - { - "id": 1964, - "type": "job_event", - "url": "/api/v2/job_events/1964/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1964/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.155770Z", - "modified": "2019-08-08T15:37:25.319527Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 13, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "9", - "changed": false, - "msg": "This is a debug message: 9", - "_ansible_verbose_always": true, - "_ansible_item_label": "9" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "9", + "ansible_loop_var": "item", + "_ansible_item_label": "9" + }, + "uuid": "43eae334-fdde-46a8-9766-a875f25db157" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "43eae334-fdde-46a8-9766-a875f25db157", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=9) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 9\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 28, + "end_line": 31, + "verbosity": 0 + }, + { + "id": 11196, + "type": "job_event", + "url": "/api/v2/job_events/11196/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11196/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.559117Z", + "modified": "2021-01-28T16:17:14.644701Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 14, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 10", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "1173cfdf-6287-4c9d-bff8-1acced310816", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=9) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 9\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 28, - "end_line": 31, - "verbosity": 0 - }, - { - "id": 1965, - "type": "job_event", - "url": "/api/v2/job_events/1965/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1965/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.264301Z", - "modified": "2019-08-08T15:37:25.351689Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 23, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "19", - "changed": false, - "msg": "This is a debug message: 19", - "_ansible_verbose_always": true, - "_ansible_item_label": "19" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "10", + "ansible_loop_var": "item", + "_ansible_item_label": "10" + }, + "uuid": "bf32dcd2-a9c6-4aaa-83af-f60d2c90517c" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "bf32dcd2-a9c6-4aaa-83af-f60d2c90517c", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=10) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 10\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 31, + "end_line": 34, + "verbosity": 0 + }, + { + "id": 11192, + "type": "job_event", + "url": "/api/v2/job_events/11192/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11192/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.591599Z", + "modified": "2021-01-28T16:17:14.596578Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 15, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 11", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "72d786db-19bd-40eb-8d3a-27fea279504c", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=19) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 19\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 58, - "end_line": 61, - "verbosity": 0 - }, - { - "id": 1966, - "type": "job_event", - "url": "/api/v2/job_events/1966/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1966/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.143418Z", - "modified": "2019-08-08T15:37:25.371300Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 11, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "7", - "changed": false, - "msg": "This is a debug message: 7", - "_ansible_verbose_always": true, - "_ansible_item_label": "7" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "11", + "ansible_loop_var": "item", + "_ansible_item_label": "11" + }, + "uuid": "9a3c0707-7e67-4ebe-abf8-7b8eddb9cccc" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "9a3c0707-7e67-4ebe-abf8-7b8eddb9cccc", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=11) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 11\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 34, + "end_line": 37, + "verbosity": 0 + }, + { + "id": 11195, + "type": "job_event", + "url": "/api/v2/job_events/11195/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11195/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.612670Z", + "modified": "2021-01-28T16:17:14.620068Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 16, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 12", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "b59d1599-4271-4f33-8a81-56179e393e49", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=7) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 7\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 22, - "end_line": 25, - "verbosity": 0 - }, - { - "id": 1967, - "type": "job_event", - "url": "/api/v2/job_events/1967/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1967/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.162116Z", - "modified": "2019-08-08T15:37:25.372288Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 14, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "10", - "changed": false, - "msg": "This is a debug message: 10", - "_ansible_verbose_always": true, - "_ansible_item_label": "10" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "12", + "ansible_loop_var": "item", + "_ansible_item_label": "12" + }, + "uuid": "f92efc58-64aa-41b7-88f5-e0d7727b4f5f" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "f92efc58-64aa-41b7-88f5-e0d7727b4f5f", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=12) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 12\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 37, + "end_line": 40, + "verbosity": 0 + }, + { + "id": 11197, + "type": "job_event", + "url": "/api/v2/job_events/11197/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11197/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.635395Z", + "modified": "2021-01-28T16:17:14.644701Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 17, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 13", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "27a0daba-455f-4735-8d59-d98ab739d36a", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=10) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 10\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 31, - "end_line": 34, - "verbosity": 0 - }, - { - "id": 1968, - "type": "job_event", - "url": "/api/v2/job_events/1968/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1968/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.252802Z", - "modified": "2019-08-08T15:37:25.394896Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 21, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "17", - "changed": false, - "msg": "This is a debug message: 17", - "_ansible_verbose_always": true, - "_ansible_item_label": "17" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "13", + "ansible_loop_var": "item", + "_ansible_item_label": "13" + }, + "uuid": "8597d3e4-0515-4137-bf5e-64ad42237918" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "8597d3e4-0515-4137-bf5e-64ad42237918", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=13) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 13\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 40, + "end_line": 43, + "verbosity": 0 + }, + { + "id": 11198, + "type": "job_event", + "url": "/api/v2/job_events/11198/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11198/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.661725Z", + "modified": "2021-01-28T16:17:14.807060Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 18, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 14", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "ae431284-1bf3-415e-90f7-e2ae33a95c4b", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=17) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 17\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 52, - "end_line": 55, - "verbosity": 0 - }, - { - "id": 1969, - "type": "job_event", - "url": "/api/v2/job_events/1969/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1969/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.205213Z", - "modified": "2019-08-08T15:37:25.427928Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 16, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "12", - "changed": false, - "msg": "This is a debug message: 12", - "_ansible_verbose_always": true, - "_ansible_item_label": "12" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "14", + "ansible_loop_var": "item", + "_ansible_item_label": "14" + }, + "uuid": "d9ed3304-99fe-4882-b175-fc6216455f68" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "d9ed3304-99fe-4882-b175-fc6216455f68", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=14) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 14\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 43, + "end_line": 46, + "verbosity": 0 + }, + { + "id": 11199, + "type": "job_event", + "url": "/api/v2/job_events/11199/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11199/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.693482Z", + "modified": "2021-01-28T16:17:14.807060Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 19, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 15", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "69a7d576-bc8d-4edf-a596-0eecf436ff9a", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=12) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 12\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 37, - "end_line": 40, - "verbosity": 0 - }, - { - "id": 1970, - "type": "job_event", - "url": "/api/v2/job_events/1970/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1970/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.299469Z", - "modified": "2019-08-08T15:37:25.463075Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 27, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "23", - "changed": false, - "msg": "This is a debug message: 23", - "_ansible_verbose_always": true, - "_ansible_item_label": "23" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "15", + "ansible_loop_var": "item", + "_ansible_item_label": "15" + }, + "uuid": "1904559c-71f4-4966-aa17-adf6d926e6ae" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "1904559c-71f4-4966-aa17-adf6d926e6ae", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=15) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 15\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 46, + "end_line": 49, + "verbosity": 0 + }, + { + "id": 11200, + "type": "job_event", + "url": "/api/v2/job_events/11200/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11200/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.700143Z", + "modified": "2021-01-28T16:17:14.807060Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 20, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 16", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "a5b42459-e942-4d34-8877-2319af9ef4cf", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=23) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 23\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 70, - "end_line": 73, - "verbosity": 0 - }, - { - "id": 1971, - "type": "job_event", - "url": "/api/v2/job_events/1971/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1971/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.244702Z", - "modified": "2019-08-08T15:37:25.526403Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 20, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "16", - "changed": false, - "msg": "This is a debug message: 16", - "_ansible_verbose_always": true, - "_ansible_item_label": "16" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "16", + "ansible_loop_var": "item", + "_ansible_item_label": "16" + }, + "uuid": "ef18487a-6868-48f1-9cda-bf0a71f52232" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "ef18487a-6868-48f1-9cda-bf0a71f52232", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=16) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 16\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 49, + "end_line": 52, + "verbosity": 0 + }, + { + "id": 11201, + "type": "job_event", + "url": "/api/v2/job_events/11201/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11201/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.716934Z", + "modified": "2021-01-28T16:17:14.807060Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 21, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 17", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "67e4695c-13da-4184-a0df-d3af8354d9aa", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=16) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 16\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 49, - "end_line": 52, - "verbosity": 0 - }, - { - "id": 1972, - "type": "job_event", - "url": "/api/v2/job_events/1972/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1972/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.322576Z", - "modified": "2019-08-08T15:37:25.549772Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 29, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "25", - "changed": false, - "msg": "This is a debug message: 25", - "_ansible_verbose_always": true, - "_ansible_item_label": "25" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "17", + "ansible_loop_var": "item", + "_ansible_item_label": "17" + }, + "uuid": "d7e9ceb1-0abd-4876-a8b2-c195dac60e72" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "d7e9ceb1-0abd-4876-a8b2-c195dac60e72", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=17) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 17\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 52, + "end_line": 55, + "verbosity": 0 + }, + { + "id": 11204, + "type": "job_event", + "url": "/api/v2/job_events/11204/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11204/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.748138Z", + "modified": "2021-01-28T16:17:14.836829Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 22, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 18", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "f9891818-0ee2-4888-a2f9-ae153f7d1357", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=25) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 25\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 76, - "end_line": 79, - "verbosity": 0 - }, - { - "id": 1973, - "type": "job_event", - "url": "/api/v2/job_events/1973/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1973/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.181926Z", - "modified": "2019-08-08T15:37:25.574921Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 15, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "11", - "changed": false, - "msg": "This is a debug message: 11", - "_ansible_verbose_always": true, - "_ansible_item_label": "11" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "18", + "ansible_loop_var": "item", + "_ansible_item_label": "18" + }, + "uuid": "c84218b4-3412-40fb-a713-6e86433377b6" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "c84218b4-3412-40fb-a713-6e86433377b6", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=18) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 18\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 55, + "end_line": 58, + "verbosity": 0 + }, + { + "id": 11202, + "type": "job_event", + "url": "/api/v2/job_events/11202/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11202/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.763518Z", + "modified": "2021-01-28T16:17:14.807060Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 23, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 19", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "878bd798-987b-4a97-afae-0846275358b5", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=11) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 11\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 34, - "end_line": 37, - "verbosity": 0 - }, - { - "id": 1974, - "type": "job_event", - "url": "/api/v2/job_events/1974/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1974/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.393855Z", - "modified": "2019-08-08T15:37:25.619902Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 36, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "32", - "changed": false, - "msg": "This is a debug message: 32", - "_ansible_verbose_always": true, - "_ansible_item_label": "32" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "19", + "ansible_loop_var": "item", + "_ansible_item_label": "19" + }, + "uuid": "c4b322ae-6f95-4cfc-88d1-189a4b2d342d" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "c4b322ae-6f95-4cfc-88d1-189a4b2d342d", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=19) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 19\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 58, + "end_line": 61, + "verbosity": 0 + }, + { + "id": 11209, + "type": "job_event", + "url": "/api/v2/job_events/11209/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11209/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.774866Z", + "modified": "2021-01-28T16:17:14.888588Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 24, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 20", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "cec5c08c-7e2a-4e15-bd67-3e56ac5e73ef", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=32) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 32\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 97, - "end_line": 100, - "verbosity": 0 - }, - { - "id": 1975, - "type": "job_event", - "url": "/api/v2/job_events/1975/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1975/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.303513Z", - "modified": "2019-08-08T15:37:25.723744Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 28, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "24", - "changed": false, - "msg": "This is a debug message: 24", - "_ansible_verbose_always": true, - "_ansible_item_label": "24" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "20", + "ansible_loop_var": "item", + "_ansible_item_label": "20" + }, + "uuid": "f1940fe3-501c-416b-ad51-a90d9a17969a" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "f1940fe3-501c-416b-ad51-a90d9a17969a", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=20) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 20\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 61, + "end_line": 64, + "verbosity": 0 + }, + { + "id": 11205, + "type": "job_event", + "url": "/api/v2/job_events/11205/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11205/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.786440Z", + "modified": "2021-01-28T16:17:14.836829Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 25, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 21", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "8b2db45b-631b-4e7b-82d1-4a439181ba9c", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=24) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 24\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 73, - "end_line": 76, - "verbosity": 0 - }, - { - "id": 1976, - "type": "job_event", - "url": "/api/v2/job_events/1976/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1976/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.283824Z", - "modified": "2019-08-08T15:37:25.730438Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 25, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "21", - "changed": false, - "msg": "This is a debug message: 21", - "_ansible_verbose_always": true, - "_ansible_item_label": "21" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "21", + "ansible_loop_var": "item", + "_ansible_item_label": "21" + }, + "uuid": "54eee051-1c7a-4baa-8a4e-d92d717a1bd2" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "54eee051-1c7a-4baa-8a4e-d92d717a1bd2", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=21) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 21\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 64, + "end_line": 67, + "verbosity": 0 + }, + { + "id": 11207, + "type": "job_event", + "url": "/api/v2/job_events/11207/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11207/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.795702Z", + "modified": "2021-01-28T16:17:14.860501Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 26, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 22", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "ab8d39a6-7239-4965-ac4c-7f7074d0a0ea", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=21) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 21\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 64, - "end_line": 67, - "verbosity": 0 - }, - { - "id": 1977, - "type": "job_event", - "url": "/api/v2/job_events/1977/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1977/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.631074Z", - "modified": "2019-08-08T15:37:25.752209Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 46, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "42", - "changed": false, - "msg": "This is a debug message: 42", - "_ansible_verbose_always": true, - "_ansible_item_label": "42" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "22", + "ansible_loop_var": "item", + "_ansible_item_label": "22" + }, + "uuid": "72dfb0b6-38bd-46a7-a2d0-a022c7b67286" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "72dfb0b6-38bd-46a7-a2d0-a022c7b67286", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=22) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 22\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 67, + "end_line": 70, + "verbosity": 0 + }, + { + "id": 11203, + "type": "job_event", + "url": "/api/v2/job_events/11203/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11203/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.803609Z", + "modified": "2021-01-28T16:17:14.807060Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 27, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 23", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "5dd80c9a-1d5d-49ed-ad19-4914d986d1cf", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=42) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 42\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 127, - "end_line": 130, - "verbosity": 0 - }, - { - "id": 1978, - "type": "job_event", - "url": "/api/v2/job_events/1978/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1978/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.225183Z", - "modified": "2019-08-08T15:37:25.806700Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 18, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "14", - "changed": false, - "msg": "This is a debug message: 14", - "_ansible_verbose_always": true, - "_ansible_item_label": "14" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "23", + "ansible_loop_var": "item", + "_ansible_item_label": "23" + }, + "uuid": "854169e6-6348-4aa7-8fd5-cc9948236cf2" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "854169e6-6348-4aa7-8fd5-cc9948236cf2", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=23) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 23\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 70, + "end_line": 73, + "verbosity": 0 + }, + { + "id": 11210, + "type": "job_event", + "url": "/api/v2/job_events/11210/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11210/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.815935Z", + "modified": "2021-01-28T16:17:14.888588Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 28, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 24", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "84e803f0-d112-4d84-9132-b32b02932975", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=14) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 14\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 43, - "end_line": 46, - "verbosity": 0 - }, - { - "id": 1979, - "type": "job_event", - "url": "/api/v2/job_events/1979/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1979/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.288561Z", - "modified": "2019-08-08T15:37:25.847544Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 26, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "22", - "changed": false, - "msg": "This is a debug message: 22", - "_ansible_verbose_always": true, - "_ansible_item_label": "22" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "24", + "ansible_loop_var": "item", + "_ansible_item_label": "24" + }, + "uuid": "a703751d-eef2-491a-a979-f3789163a032" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "a703751d-eef2-491a-a979-f3789163a032", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=24) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 24\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 73, + "end_line": 76, + "verbosity": 0 + }, + { + "id": 11206, + "type": "job_event", + "url": "/api/v2/job_events/11206/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11206/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.828072Z", + "modified": "2021-01-28T16:17:14.836829Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 29, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 25", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "066f445c-8a27-4320-8777-4bc2ac25b2da", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=22) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 22\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 67, - "end_line": 70, - "verbosity": 0 - }, - { - "id": 1980, - "type": "job_event", - "url": "/api/v2/job_events/1980/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1980/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.345087Z", - "modified": "2019-08-08T15:37:25.850009Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 31, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "27", - "changed": false, - "msg": "This is a debug message: 27", - "_ansible_verbose_always": true, - "_ansible_item_label": "27" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "25", + "ansible_loop_var": "item", + "_ansible_item_label": "25" + }, + "uuid": "732e43a8-e773-4ad4-a0cb-c73c132e709e" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "732e43a8-e773-4ad4-a0cb-c73c132e709e", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=25) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 25\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 76, + "end_line": 79, + "verbosity": 0 + }, + { + "id": 11208, + "type": "job_event", + "url": "/api/v2/job_events/11208/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11208/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.855142Z", + "modified": "2021-01-28T16:17:14.860501Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 30, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 26", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "99136b75-aee0-4b64-acde-d150c0cab0e8", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=27) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 27\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 82, - "end_line": 85, - "verbosity": 0 - }, - { - "id": 1981, - "type": "job_event", - "url": "/api/v2/job_events/1981/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1981/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.684194Z", - "modified": "2019-08-08T15:37:25.897566Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 52, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "48", - "changed": false, - "msg": "This is a debug message: 48", - "_ansible_verbose_always": true, - "_ansible_item_label": "48" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "26", + "ansible_loop_var": "item", + "_ansible_item_label": "26" + }, + "uuid": "0f8ddc1b-7010-445f-b307-bde3bb587927" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "0f8ddc1b-7010-445f-b307-bde3bb587927", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=26) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 26\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 79, + "end_line": 82, + "verbosity": 0 + }, + { + "id": 11211, + "type": "job_event", + "url": "/api/v2/job_events/11211/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11211/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.880929Z", + "modified": "2021-01-28T16:17:14.888588Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 31, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 27", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "d3c0de28-ff94-404d-a105-3bb0990f6d2b", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=48) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 48\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 145, - "end_line": 148, - "verbosity": 0 - }, - { - "id": 1982, - "type": "job_event", - "url": "/api/v2/job_events/1982/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1982/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.259912Z", - "modified": "2019-08-08T15:37:25.947998Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 22, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "18", - "changed": false, - "msg": "This is a debug message: 18", - "_ansible_verbose_always": true, - "_ansible_item_label": "18" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "27", + "ansible_loop_var": "item", + "_ansible_item_label": "27" + }, + "uuid": "c49e007d-75ac-4578-a263-94e6aa733c19" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "c49e007d-75ac-4578-a263-94e6aa733c19", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=27) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 27\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 82, + "end_line": 85, + "verbosity": 0 + }, + { + "id": 11215, + "type": "job_event", + "url": "/api/v2/job_events/11215/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11215/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.909748Z", + "modified": "2021-01-28T16:17:15.091182Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 32, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 28", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "b1231979-cbd3-421e-94cd-96c48a10f2f9", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=18) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 18\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 55, - "end_line": 58, - "verbosity": 0 - }, - { - "id": 1983, - "type": "job_event", - "url": "/api/v2/job_events/1983/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1983/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.357450Z", - "modified": "2019-08-08T15:37:25.967124Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 32, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "28", - "changed": false, - "msg": "This is a debug message: 28", - "_ansible_verbose_always": true, - "_ansible_item_label": "28" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "28", + "ansible_loop_var": "item", + "_ansible_item_label": "28" + }, + "uuid": "4691b7af-3a1b-4bec-aec2-298fe8a86a03" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "4691b7af-3a1b-4bec-aec2-298fe8a86a03", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=28) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 28\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 85, + "end_line": 88, + "verbosity": 0 + }, + { + "id": 11216, + "type": "job_event", + "url": "/api/v2/job_events/11216/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11216/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.930843Z", + "modified": "2021-01-28T16:17:15.091182Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 33, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 29", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "abe4e598-3d45-4955-a4bc-508caa1521a6", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=28) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 28\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 85, - "end_line": 88, - "verbosity": 0 - }, - { - "id": 1984, - "type": "job_event", - "url": "/api/v2/job_events/1984/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1984/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.688599Z", - "modified": "2019-08-08T15:37:25.985948Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 53, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "49", - "changed": false, - "msg": "This is a debug message: 49", - "_ansible_verbose_always": true, - "_ansible_item_label": "49" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "29", + "ansible_loop_var": "item", + "_ansible_item_label": "29" + }, + "uuid": "72741a4c-94cc-4154-9516-7ccfb18db931" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "72741a4c-94cc-4154-9516-7ccfb18db931", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=29) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 29\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 88, + "end_line": 91, + "verbosity": 0 + }, + { + "id": 11217, + "type": "job_event", + "url": "/api/v2/job_events/11217/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11217/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.964814Z", + "modified": "2021-01-28T16:17:15.091182Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 34, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 30", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "0204bc95-47cf-45b4-8451-a3224aac0e93", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=49) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 49\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 148, - "end_line": 151, - "verbosity": 0 - }, - { - "id": 1985, - "type": "job_event", - "url": "/api/v2/job_events/1985/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1985/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.366248Z", - "modified": "2019-08-08T15:37:25.990361Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 33, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "29", - "changed": false, - "msg": "This is a debug message: 29", - "_ansible_verbose_always": true, - "_ansible_item_label": "29" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "30", + "ansible_loop_var": "item", + "_ansible_item_label": "30" + }, + "uuid": "a4bba188-4b24-4750-a1c2-d7a512937322" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "a4bba188-4b24-4750-a1c2-d7a512937322", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=30) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 30\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 91, + "end_line": 94, + "verbosity": 0 + }, + { + "id": 11212, + "type": "job_event", + "url": "/api/v2/job_events/11212/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11212/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.977160Z", + "modified": "2021-01-28T16:17:15.070662Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 35, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 31", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "e8b372ce-7719-44df-851b-a850304eb4fc", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=29) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 29\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 88, - "end_line": 91, - "verbosity": 0 - }, - { - "id": 1986, - "type": "job_event", - "url": "/api/v2/job_events/1986/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1986/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.371939Z", - "modified": "2019-08-08T15:37:26.050993Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 34, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "30", - "changed": false, - "msg": "This is a debug message: 30", - "_ansible_verbose_always": true, - "_ansible_item_label": "30" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "31", + "ansible_loop_var": "item", + "_ansible_item_label": "31" + }, + "uuid": "b141e52e-8fc8-4797-8435-e4a39189e1a6" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "b141e52e-8fc8-4797-8435-e4a39189e1a6", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=31) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 31\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 94, + "end_line": 97, + "verbosity": 0 + }, + { + "id": 11218, + "type": "job_event", + "url": "/api/v2/job_events/11218/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11218/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:14.998965Z", + "modified": "2021-01-28T16:17:15.091182Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 36, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 32", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "795e209a-5d0f-46bf-97b6-3e615c54a7f6", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=30) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 30\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 91, - "end_line": 94, - "verbosity": 0 - }, - { - "id": 1987, - "type": "job_event", - "url": "/api/v2/job_events/1987/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1987/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.270342Z", - "modified": "2019-08-08T15:37:26.098691Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 24, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "20", - "changed": false, - "msg": "This is a debug message: 20", - "_ansible_verbose_always": true, - "_ansible_item_label": "20" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "32", + "ansible_loop_var": "item", + "_ansible_item_label": "32" + }, + "uuid": "00a1196c-8368-4fbc-8b4e-276c70320a1c" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "00a1196c-8368-4fbc-8b4e-276c70320a1c", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=32) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 32\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 97, + "end_line": 100, + "verbosity": 0 + }, + { + "id": 11221, + "type": "job_event", + "url": "/api/v2/job_events/11221/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11221/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.011475Z", + "modified": "2021-01-28T16:17:15.118212Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 37, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 33", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "23232d27-b7dd-4fcb-9c14-19a0b327ff71", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=20) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 20\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 61, - "end_line": 64, - "verbosity": 0 - }, - { - "id": 1988, - "type": "job_event", - "url": "/api/v2/job_events/1988/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1988/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.378638Z", - "modified": "2019-08-08T15:37:26.164846Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 35, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "31", - "changed": false, - "msg": "This is a debug message: 31", - "_ansible_verbose_always": true, - "_ansible_item_label": "31" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "33", + "ansible_loop_var": "item", + "_ansible_item_label": "33" + }, + "uuid": "6ef701e1-922e-4899-9bf3-e76ce94dd99b" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "6ef701e1-922e-4899-9bf3-e76ce94dd99b", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=33) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 33\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 100, + "end_line": 103, + "verbosity": 0 + }, + { + "id": 11213, + "type": "job_event", + "url": "/api/v2/job_events/11213/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11213/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.020982Z", + "modified": "2021-01-28T16:17:15.070662Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 38, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 34", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "2676ddb6-07fc-4974-8cdd-49cd1c871a3c", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=31) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 31\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 94, - "end_line": 97, - "verbosity": 0 - }, - { - "id": 1989, - "type": "job_event", - "url": "/api/v2/job_events/1989/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1989/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.816660Z", - "modified": "2019-08-08T15:37:26.172160Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 56, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "52", - "changed": false, - "msg": "This is a debug message: 52", - "_ansible_verbose_always": true, - "_ansible_item_label": "52" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "34", + "ansible_loop_var": "item", + "_ansible_item_label": "34" + }, + "uuid": "1f2908e0-345f-4267-8903-5935b7725724" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "1f2908e0-345f-4267-8903-5935b7725724", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=34) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 34\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 103, + "end_line": 106, + "verbosity": 0 + }, + { + "id": 11223, + "type": "job_event", + "url": "/api/v2/job_events/11223/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11223/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.030420Z", + "modified": "2021-01-28T16:17:15.120116Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 39, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 35", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "80c90d5c-a7d9-48d0-8ae9-29b0ff01e8a3", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=52) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 52\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 157, - "end_line": 160, - "verbosity": 0 - }, - { - "id": 1990, - "type": "job_event", - "url": "/api/v2/job_events/1990/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1990/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.516207Z", - "modified": "2019-08-08T15:37:26.190950Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 42, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "38", - "changed": false, - "msg": "This is a debug message: 38", - "_ansible_verbose_always": true, - "_ansible_item_label": "38" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "35", + "ansible_loop_var": "item", + "_ansible_item_label": "35" + }, + "uuid": "ad3adecf-45d1-4ee4-acb6-1c4357fb865b" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "ad3adecf-45d1-4ee4-acb6-1c4357fb865b", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=35) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 35\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 106, + "end_line": 109, + "verbosity": 0 + }, + { + "id": 11219, + "type": "job_event", + "url": "/api/v2/job_events/11219/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11219/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.041426Z", + "modified": "2021-01-28T16:17:15.091182Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 40, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 36", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "16de33f2-e1e6-465a-abb1-2d6141576ce6", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=38) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 38\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 115, - "end_line": 118, - "verbosity": 0 - }, - { - "id": 1991, - "type": "job_event", - "url": "/api/v2/job_events/1991/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1991/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.334043Z", - "modified": "2019-08-08T15:37:26.224306Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 30, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "26", - "changed": false, - "msg": "This is a debug message: 26", - "_ansible_verbose_always": true, - "_ansible_item_label": "26" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "36", + "ansible_loop_var": "item", + "_ansible_item_label": "36" + }, + "uuid": "5dc857dd-1f8a-4de7-9304-42724e92d5b8" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "5dc857dd-1f8a-4de7-9304-42724e92d5b8", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=36) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 36\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 109, + "end_line": 112, + "verbosity": 0 + }, + { + "id": 11222, + "type": "job_event", + "url": "/api/v2/job_events/11222/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11222/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.054496Z", + "modified": "2021-01-28T16:17:15.118212Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 41, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 37", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "ad5ce684-620f-4cc6-af17-7a7d05becb0d", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=26) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 26\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 79, - "end_line": 82, - "verbosity": 0 - }, - { - "id": 1992, - "type": "job_event", - "url": "/api/v2/job_events/1992/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1992/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.432490Z", - "modified": "2019-08-08T15:37:26.304362Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 39, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "35", - "changed": false, - "msg": "This is a debug message: 35", - "_ansible_verbose_always": true, - "_ansible_item_label": "35" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "37", + "ansible_loop_var": "item", + "_ansible_item_label": "37" + }, + "uuid": "25480ca3-97fa-4686-a282-ab2f0b7b42b2" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "25480ca3-97fa-4686-a282-ab2f0b7b42b2", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=37) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 37\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 112, + "end_line": 115, + "verbosity": 0 + }, + { + "id": 11214, + "type": "job_event", + "url": "/api/v2/job_events/11214/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11214/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.066146Z", + "modified": "2021-01-28T16:17:15.070662Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 42, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 38", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "e12cebfb-9cda-49a5-8a68-6b3056bbe1f1", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=35) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 35\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 106, - "end_line": 109, - "verbosity": 0 - }, - { - "id": 1993, - "type": "job_event", - "url": "/api/v2/job_events/1993/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1993/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.401634Z", - "modified": "2019-08-08T15:37:26.313193Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 37, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "33", - "changed": false, - "msg": "This is a debug message: 33", - "_ansible_verbose_always": true, - "_ansible_item_label": "33" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "38", + "ansible_loop_var": "item", + "_ansible_item_label": "38" + }, + "uuid": "5a92c663-141d-4350-9bed-9305ca63c746" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "5a92c663-141d-4350-9bed-9305ca63c746", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=38) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 38\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 115, + "end_line": 118, + "verbosity": 0 + }, + { + "id": 11225, + "type": "job_event", + "url": "/api/v2/job_events/11225/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11225/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.073557Z", + "modified": "2021-01-28T16:17:15.120116Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 43, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 39", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "14a428f7-7ace-4313-bb4c-7a23bbf4a4a4", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=33) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 33\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 100, - "end_line": 103, - "verbosity": 0 - }, - { - "id": 1994, - "type": "job_event", - "url": "/api/v2/job_events/1994/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1994/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.978210Z", - "modified": "2019-08-08T15:37:26.375204Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 65, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "61", - "changed": false, - "msg": "This is a debug message: 61", - "_ansible_verbose_always": true, - "_ansible_item_label": "61" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "39", + "ansible_loop_var": "item", + "_ansible_item_label": "39" + }, + "uuid": "bd391aab-6fd1-4773-96ca-9bfd581b1e79" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "bd391aab-6fd1-4773-96ca-9bfd581b1e79", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=39) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 39\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 118, + "end_line": 121, + "verbosity": 0 + }, + { + "id": 11220, + "type": "job_event", + "url": "/api/v2/job_events/11220/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11220/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.087067Z", + "modified": "2021-01-28T16:17:15.091182Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 44, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 40", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "d07105ee-a3fd-4afb-9a6d-6d85d64741eb", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=61) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 61\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 184, - "end_line": 187, - "verbosity": 0 - }, - { - "id": 1995, - "type": "job_event", - "url": "/api/v2/job_events/1995/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1995/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.457296Z", - "modified": "2019-08-08T15:37:26.396251Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 40, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "36", - "changed": false, - "msg": "This is a debug message: 36", - "_ansible_verbose_always": true, - "_ansible_item_label": "36" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "40", + "ansible_loop_var": "item", + "_ansible_item_label": "40" + }, + "uuid": "af87371e-45d6-432a-ad96-5a319ce7a2a4" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "af87371e-45d6-432a-ad96-5a319ce7a2a4", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=40) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 40\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 121, + "end_line": 124, + "verbosity": 0 + }, + { + "id": 11224, + "type": "job_event", + "url": "/api/v2/job_events/11224/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11224/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.100089Z", + "modified": "2021-01-28T16:17:15.118212Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 45, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 41", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "e28f67c3-8804-4524-997a-8ba0f035cee9", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=36) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 36\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 109, - "end_line": 112, - "verbosity": 0 - }, - { - "id": 1996, - "type": "job_event", - "url": "/api/v2/job_events/1996/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1996/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.636518Z", - "modified": "2019-08-08T15:37:26.404285Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 47, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "43", - "changed": false, - "msg": "This is a debug message: 43", - "_ansible_verbose_always": true, - "_ansible_item_label": "43" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "41", + "ansible_loop_var": "item", + "_ansible_item_label": "41" + }, + "uuid": "c964a9d1-3d48-436f-9f6d-ffbe86da540d" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "c964a9d1-3d48-436f-9f6d-ffbe86da540d", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=41) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 41\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 124, + "end_line": 127, + "verbosity": 0 + }, + { + "id": 11226, + "type": "job_event", + "url": "/api/v2/job_events/11226/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11226/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.109339Z", + "modified": "2021-01-28T16:17:15.120116Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 46, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 42", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "39ea55e2-d57e-43ae-a9f7-ba3580eaef66", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=43) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 43\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 130, - "end_line": 133, - "verbosity": 0 - }, - { - "id": 1997, - "type": "job_event", - "url": "/api/v2/job_events/1997/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1997/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.411413Z", - "modified": "2019-08-08T15:37:26.454426Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 38, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "34", - "changed": false, - "msg": "This is a debug message: 34", - "_ansible_verbose_always": true, - "_ansible_item_label": "34" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "42", + "ansible_loop_var": "item", + "_ansible_item_label": "42" + }, + "uuid": "004adef6-12ab-4fa6-a1f0-43084bba9d85" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "004adef6-12ab-4fa6-a1f0-43084bba9d85", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=42) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 42\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 127, + "end_line": 130, + "verbosity": 0 + }, + { + "id": 11227, + "type": "job_event", + "url": "/api/v2/job_events/11227/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11227/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.129119Z", + "modified": "2021-01-28T16:17:15.293300Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 47, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 43", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "0bd44ef6-b477-420b-b2a7-809d85922c4c", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=34) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 34\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 103, - "end_line": 106, - "verbosity": 0 - }, - { - "id": 1998, - "type": "job_event", - "url": "/api/v2/job_events/1998/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1998/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.476510Z", - "modified": "2019-08-08T15:37:26.469731Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 41, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "37", - "changed": false, - "msg": "This is a debug message: 37", - "_ansible_verbose_always": true, - "_ansible_item_label": "37" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "43", + "ansible_loop_var": "item", + "_ansible_item_label": "43" + }, + "uuid": "1eb89f38-4f6a-4af1-929c-f257271095c2" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "1eb89f38-4f6a-4af1-929c-f257271095c2", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=43) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 43\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 130, + "end_line": 133, + "verbosity": 0 + }, + { + "id": 11228, + "type": "job_event", + "url": "/api/v2/job_events/11228/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11228/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.142654Z", + "modified": "2021-01-28T16:17:15.293300Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 48, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 44", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "04793473-b8e1-41c0-a899-d825133d3205", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=37) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 37\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 112, - "end_line": 115, - "verbosity": 0 - }, - { - "id": 1999, - "type": "job_event", - "url": "/api/v2/job_events/1999/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/1999/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.782456Z", - "modified": "2019-08-08T15:37:26.480129Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 55, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "51", - "changed": false, - "msg": "This is a debug message: 51", - "_ansible_verbose_always": true, - "_ansible_item_label": "51" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "44", + "ansible_loop_var": "item", + "_ansible_item_label": "44" + }, + "uuid": "64de39f5-967d-4860-8e7c-60e905b3477d" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "64de39f5-967d-4860-8e7c-60e905b3477d", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=44) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 44\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 133, + "end_line": 136, + "verbosity": 0 + }, + { + "id": 11229, + "type": "job_event", + "url": "/api/v2/job_events/11229/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11229/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.166060Z", + "modified": "2021-01-28T16:17:15.293300Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 49, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 45", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "7672f729-0342-417f-aa26-8280dff2199e", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=51) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 51\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 154, - "end_line": 157, - "verbosity": 0 - }, - { - "id": 2000, - "type": "job_event", - "url": "/api/v2/job_events/2000/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2000/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.108794Z", - "modified": "2019-08-08T15:37:26.509659Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 76, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "72", - "changed": false, - "msg": "This is a debug message: 72", - "_ansible_verbose_always": true, - "_ansible_item_label": "72" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "45", + "ansible_loop_var": "item", + "_ansible_item_label": "45" + }, + "uuid": "733bad3e-c0d4-4ce0-8fa0-2e4235eb4d13" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "733bad3e-c0d4-4ce0-8fa0-2e4235eb4d13", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=45) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 45\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 136, + "end_line": 139, + "verbosity": 0 + }, + { + "id": 11230, + "type": "job_event", + "url": "/api/v2/job_events/11230/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11230/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.187782Z", + "modified": "2021-01-28T16:17:15.293300Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 50, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 46", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "e4629ee0-d3aa-4f2c-b901-7d3d48578b5b", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=72) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 72\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 217, - "end_line": 220, - "verbosity": 0 - }, - { - "id": 2001, - "type": "job_event", - "url": "/api/v2/job_events/2001/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2001/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.562799Z", - "modified": "2019-08-08T15:37:26.527184Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 43, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "39", - "changed": false, - "msg": "This is a debug message: 39", - "_ansible_verbose_always": true, - "_ansible_item_label": "39" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "46", + "ansible_loop_var": "item", + "_ansible_item_label": "46" + }, + "uuid": "fd9df3a9-1c5b-4b81-b16c-f43a7f80b803" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "fd9df3a9-1c5b-4b81-b16c-f43a7f80b803", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=46) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 46\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 139, + "end_line": 142, + "verbosity": 0 + }, + { + "id": 11231, + "type": "job_event", + "url": "/api/v2/job_events/11231/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11231/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.190284Z", + "modified": "2021-01-28T16:17:15.293300Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 51, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 47", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "eb7ee827-dd6d-434f-acb9-cfafe987b8fd", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=39) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 39\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 118, - "end_line": 121, - "verbosity": 0 - }, - { - "id": 2002, - "type": "job_event", - "url": "/api/v2/job_events/2002/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2002/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.875364Z", - "modified": "2019-08-08T15:37:26.547488Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 59, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "55", - "changed": false, - "msg": "This is a debug message: 55", - "_ansible_verbose_always": true, - "_ansible_item_label": "55" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "47", + "ansible_loop_var": "item", + "_ansible_item_label": "47" + }, + "uuid": "3b58e007-a910-45f0-a15c-74614074d7aa" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "3b58e007-a910-45f0-a15c-74614074d7aa", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=47) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 47\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 142, + "end_line": 145, + "verbosity": 0 + }, + { + "id": 11232, + "type": "job_event", + "url": "/api/v2/job_events/11232/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11232/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.208194Z", + "modified": "2021-01-28T16:17:15.293300Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 52, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 48", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "adf680e4-5f4c-4768-ba44-2948b6ef4f62", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=55) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 55\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 166, - "end_line": 169, - "verbosity": 0 - }, - { - "id": 2003, - "type": "job_event", - "url": "/api/v2/job_events/2003/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2003/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.593206Z", - "modified": "2019-08-08T15:37:26.589112Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 44, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "40", - "changed": false, - "msg": "This is a debug message: 40", - "_ansible_verbose_always": true, - "_ansible_item_label": "40" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "48", + "ansible_loop_var": "item", + "_ansible_item_label": "48" + }, + "uuid": "53687193-6117-42f6-aa23-01362a81451c" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "53687193-6117-42f6-aa23-01362a81451c", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=48) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 48\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 145, + "end_line": 148, + "verbosity": 0 + }, + { + "id": 11233, + "type": "job_event", + "url": "/api/v2/job_events/11233/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11233/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.223816Z", + "modified": "2021-01-28T16:17:15.293300Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 53, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 49", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "23cb2160-08d8-4dd9-8f9b-447986e80a2d", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=40) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 40\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 121, - "end_line": 124, - "verbosity": 0 - }, - { - "id": 2004, - "type": "job_event", - "url": "/api/v2/job_events/2004/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2004/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.612613Z", - "modified": "2019-08-08T15:37:26.601979Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 45, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "41", - "changed": false, - "msg": "This is a debug message: 41", - "_ansible_verbose_always": true, - "_ansible_item_label": "41" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "49", + "ansible_loop_var": "item", + "_ansible_item_label": "49" + }, + "uuid": "b9c8360d-16f7-4e00-b32e-5f3246b1d53b" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "b9c8360d-16f7-4e00-b32e-5f3246b1d53b", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=49) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 49\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 148, + "end_line": 151, + "verbosity": 0 + }, + { + "id": 11239, + "type": "job_event", + "url": "/api/v2/job_events/11239/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11239/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.239700Z", + "modified": "2021-01-28T16:17:15.367780Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 54, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 50", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "4a166e98-2a69-4e62-a8e4-e5df71866514", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=41) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 41\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 124, - "end_line": 127, - "verbosity": 0 - }, - { - "id": 2005, - "type": "job_event", - "url": "/api/v2/job_events/2005/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2005/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.142635Z", - "modified": "2019-08-08T15:37:26.628858Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 79, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "75", - "changed": false, - "msg": "This is a debug message: 75", - "_ansible_verbose_always": true, - "_ansible_item_label": "75" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "50", + "ansible_loop_var": "item", + "_ansible_item_label": "50" + }, + "uuid": "56428c4a-f882-4907-a248-ebd4d2da7bc6" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "56428c4a-f882-4907-a248-ebd4d2da7bc6", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=50) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 50\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 151, + "end_line": 154, + "verbosity": 0 + }, + { + "id": 11234, + "type": "job_event", + "url": "/api/v2/job_events/11234/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11234/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.258205Z", + "modified": "2021-01-28T16:17:15.293300Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 55, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 51", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "3fd46a16-fc84-4e94-8b13-a32d947fb5fb", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=75) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 75\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 226, - "end_line": 229, - "verbosity": 0 - }, - { - "id": 2006, - "type": "job_event", - "url": "/api/v2/job_events/2006/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2006/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.921867Z", - "modified": "2019-08-08T15:37:26.632276Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 61, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "57", - "changed": false, - "msg": "This is a debug message: 57", - "_ansible_verbose_always": true, - "_ansible_item_label": "57" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "51", + "ansible_loop_var": "item", + "_ansible_item_label": "51" + }, + "uuid": "05c59e38-8290-4396-bc7b-dd5b127d8a65" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "05c59e38-8290-4396-bc7b-dd5b127d8a65", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=51) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 51\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 154, + "end_line": 157, + "verbosity": 0 + }, + { + "id": 11236, + "type": "job_event", + "url": "/api/v2/job_events/11236/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11236/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.264651Z", + "modified": "2021-01-28T16:17:15.344259Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 56, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 52", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "fa21ba48-9a18-49d1-aaa0-3f61c2d982ce", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=57) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 57\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 172, - "end_line": 175, - "verbosity": 0 - }, - { - "id": 2007, - "type": "job_event", - "url": "/api/v2/job_events/2007/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2007/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.652186Z", - "modified": "2019-08-08T15:37:26.667728Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 49, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "45", - "changed": false, - "msg": "This is a debug message: 45", - "_ansible_verbose_always": true, - "_ansible_item_label": "45" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "52", + "ansible_loop_var": "item", + "_ansible_item_label": "52" + }, + "uuid": "9c6721c2-b777-4771-b0f6-ebbd877cfa29" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "9c6721c2-b777-4771-b0f6-ebbd877cfa29", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=52) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 52\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 157, + "end_line": 160, + "verbosity": 0 + }, + { + "id": 11240, + "type": "job_event", + "url": "/api/v2/job_events/11240/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11240/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.277008Z", + "modified": "2021-01-28T16:17:15.367780Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 57, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 53", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "eed162c5-31cc-4836-b2ed-6aa1f2053bf5", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=45) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 45\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 136, - "end_line": 139, - "verbosity": 0 - }, - { - "id": 2008, - "type": "job_event", - "url": "/api/v2/job_events/2008/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2008/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.961446Z", - "modified": "2019-08-08T15:37:26.708329Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 63, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "59", - "changed": false, - "msg": "This is a debug message: 59", - "_ansible_verbose_always": true, - "_ansible_item_label": "59" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "53", + "ansible_loop_var": "item", + "_ansible_item_label": "53" + }, + "uuid": "95f91cf0-a935-4f1a-949c-ac7b1ef1656d" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "95f91cf0-a935-4f1a-949c-ac7b1ef1656d", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=53) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 53\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 160, + "end_line": 163, + "verbosity": 0 + }, + { + "id": 11235, + "type": "job_event", + "url": "/api/v2/job_events/11235/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11235/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.288250Z", + "modified": "2021-01-28T16:17:15.293300Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 58, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 54", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "75ce69ff-f589-4b61-8a9b-bfe8986d48da", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=59) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 59\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 178, - "end_line": 181, - "verbosity": 0 - }, - { - "id": 2009, - "type": "job_event", - "url": "/api/v2/job_events/2009/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2009/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.648666Z", - "modified": "2019-08-08T15:37:26.714656Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 48, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "44", - "changed": false, - "msg": "This is a debug message: 44", - "_ansible_verbose_always": true, - "_ansible_item_label": "44" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "54", + "ansible_loop_var": "item", + "_ansible_item_label": "54" + }, + "uuid": "b48d7e63-986d-4d80-be7d-383893007675" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "b48d7e63-986d-4d80-be7d-383893007675", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=54) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 54\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 163, + "end_line": 166, + "verbosity": 0 + }, + { + "id": 11237, + "type": "job_event", + "url": "/api/v2/job_events/11237/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11237/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.311707Z", + "modified": "2021-01-28T16:17:15.344259Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 59, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 55", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "bfe0e36b-bf2e-405d-9351-6ed833860724", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=44) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 44\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 133, - "end_line": 136, - "verbosity": 0 - }, - { - "id": 2010, - "type": "job_event", - "url": "/api/v2/job_events/2010/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2010/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.721278Z", - "modified": "2019-08-08T15:37:26.759459Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 54, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "50", - "changed": false, - "msg": "This is a debug message: 50", - "_ansible_verbose_always": true, - "_ansible_item_label": "50" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "55", + "ansible_loop_var": "item", + "_ansible_item_label": "55" + }, + "uuid": "c19f8947-b2e9-4d77-8675-472b48266518" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "c19f8947-b2e9-4d77-8675-472b48266518", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=55) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 55\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 166, + "end_line": 169, + "verbosity": 0 + }, + { + "id": 11241, + "type": "job_event", + "url": "/api/v2/job_events/11241/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11241/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.319871Z", + "modified": "2021-01-28T16:17:15.367780Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 60, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 56", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "b979d166-ad9d-4e37-9d8d-06d5550e5141", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=50) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 50\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 151, - "end_line": 154, - "verbosity": 0 - }, - { - "id": 2011, - "type": "job_event", - "url": "/api/v2/job_events/2011/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2011/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.215385Z", - "modified": "2019-08-08T15:37:26.767222Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 81, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "77", - "changed": false, - "msg": "This is a debug message: 77", - "_ansible_verbose_always": true, - "_ansible_item_label": "77" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "56", + "ansible_loop_var": "item", + "_ansible_item_label": "56" + }, + "uuid": "ef0d848f-bd6b-4edc-9c8f-05c4f85711be" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "ef0d848f-bd6b-4edc-9c8f-05c4f85711be", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=56) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 56\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 169, + "end_line": 172, + "verbosity": 0 + }, + { + "id": 11243, + "type": "job_event", + "url": "/api/v2/job_events/11243/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11243/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.324224Z", + "modified": "2021-01-28T16:17:15.402983Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 61, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 57", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "f8448a5a-950e-4c97-9962-891613b85c03", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=77) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 77\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 232, - "end_line": 235, - "verbosity": 0 - }, - { - "id": 2012, - "type": "job_event", - "url": "/api/v2/job_events/2012/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2012/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.028414Z", - "modified": "2019-08-08T15:37:26.780879Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 69, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "65", - "changed": false, - "msg": "This is a debug message: 65", - "_ansible_verbose_always": true, - "_ansible_item_label": "65" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "57", + "ansible_loop_var": "item", + "_ansible_item_label": "57" + }, + "uuid": "580c7760-f667-4587-9920-5bdbb3368c17" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "580c7760-f667-4587-9920-5bdbb3368c17", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=57) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 57\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 172, + "end_line": 175, + "verbosity": 0 + }, + { + "id": 11238, + "type": "job_event", + "url": "/api/v2/job_events/11238/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11238/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.338862Z", + "modified": "2021-01-28T16:17:15.344259Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 62, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 58", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "aeb6f1c1-cae6-4a4c-b52a-69715153a38a", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=65) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 65\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 196, - "end_line": 199, - "verbosity": 0 - }, - { - "id": 2013, - "type": "job_event", - "url": "/api/v2/job_events/2013/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2013/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.657415Z", - "modified": "2019-08-08T15:37:26.832748Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 50, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "46", - "changed": false, - "msg": "This is a debug message: 46", - "_ansible_verbose_always": true, - "_ansible_item_label": "46" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "58", + "ansible_loop_var": "item", + "_ansible_item_label": "58" + }, + "uuid": "7ad13b4e-6fbf-4c94-b374-d7eeb38cf825" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "7ad13b4e-6fbf-4c94-b374-d7eeb38cf825", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=58) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 58\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 175, + "end_line": 178, + "verbosity": 0 + }, + { + "id": 11242, + "type": "job_event", + "url": "/api/v2/job_events/11242/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11242/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.355083Z", + "modified": "2021-01-28T16:17:15.367780Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 63, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 59", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "3b2477c5-ddf8-4e84-8415-9ea167afe428", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=46) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 46\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 139, - "end_line": 142, - "verbosity": 0 - }, - { - "id": 2014, - "type": "job_event", - "url": "/api/v2/job_events/2014/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2014/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.881794Z", - "modified": "2019-08-08T15:37:26.890635Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 60, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "56", - "changed": false, - "msg": "This is a debug message: 56", - "_ansible_verbose_always": true, - "_ansible_item_label": "56" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "59", + "ansible_loop_var": "item", + "_ansible_item_label": "59" + }, + "uuid": "4c35d0b5-c9d0-4e68-85e0-423b6b910690" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "4c35d0b5-c9d0-4e68-85e0-423b6b910690", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=59) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 59\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 178, + "end_line": 181, + "verbosity": 0 + }, + { + "id": 11244, + "type": "job_event", + "url": "/api/v2/job_events/11244/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11244/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.382672Z", + "modified": "2021-01-28T16:17:15.402983Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 64, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 60", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "d75a0264-d329-4b96-bc42-989792b9f7ad", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=56) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 56\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 169, - "end_line": 172, - "verbosity": 0 - }, - { - "id": 2015, - "type": "job_event", - "url": "/api/v2/job_events/2015/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2015/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.328777Z", - "modified": "2019-08-08T15:37:26.998865Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 85, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "81", - "changed": false, - "msg": "This is a debug message: 81", - "_ansible_verbose_always": true, - "_ansible_item_label": "81" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "60", + "ansible_loop_var": "item", + "_ansible_item_label": "60" + }, + "uuid": "15060a82-0203-40c4-81e1-a0825eb10e95" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "15060a82-0203-40c4-81e1-a0825eb10e95", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=60) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 60\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 181, + "end_line": 184, + "verbosity": 0 + }, + { + "id": 11245, + "type": "job_event", + "url": "/api/v2/job_events/11245/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11245/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.389899Z", + "modified": "2021-01-28T16:17:15.402983Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 65, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 61", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "3bfd47e6-56dc-4dda-8a88-47cccf7c3aab", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=81) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 81\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 244, - "end_line": 247, - "verbosity": 0 - }, - { - "id": 2016, - "type": "job_event", - "url": "/api/v2/job_events/2016/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2016/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.081640Z", - "modified": "2019-08-08T15:37:27.050089Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 74, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "70", - "changed": false, - "msg": "This is a debug message: 70", - "_ansible_verbose_always": true, - "_ansible_item_label": "70" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "61", + "ansible_loop_var": "item", + "_ansible_item_label": "61" + }, + "uuid": "f5084c64-685b-4737-93d8-a892519c9be8" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "f5084c64-685b-4737-93d8-a892519c9be8", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=61) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 61\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 184, + "end_line": 187, + "verbosity": 0 + }, + { + "id": 11246, + "type": "job_event", + "url": "/api/v2/job_events/11246/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11246/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.398489Z", + "modified": "2021-01-28T16:17:15.402983Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 66, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 62", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "9db217cb-a183-4230-8838-d3206ed1c3a2", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=70) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 70\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 211, - "end_line": 214, - "verbosity": 0 - }, - { - "id": 2017, - "type": "job_event", - "url": "/api/v2/job_events/2017/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2017/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.936432Z", - "modified": "2019-08-08T15:37:27.133867Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 62, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "58", - "changed": false, - "msg": "This is a debug message: 58", - "_ansible_verbose_always": true, - "_ansible_item_label": "58" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "62", + "ansible_loop_var": "item", + "_ansible_item_label": "62" + }, + "uuid": "aeecd944-c4c7-47fb-9803-eab5399e39f3" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "aeecd944-c4c7-47fb-9803-eab5399e39f3", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=62) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 62\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 187, + "end_line": 190, + "verbosity": 0 + }, + { + "id": 11247, + "type": "job_event", + "url": "/api/v2/job_events/11247/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11247/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.409578Z", + "modified": "2021-01-28T16:17:15.550420Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 67, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 63", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "3b3508c8-8c75-46c0-bc77-e66ceac4d7f5", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=58) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 58\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 175, - "end_line": 178, - "verbosity": 0 - }, - { - "id": 2018, - "type": "job_event", - "url": "/api/v2/job_events/2018/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2018/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.681942Z", - "modified": "2019-08-08T15:37:27.138805Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 51, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "47", - "changed": false, - "msg": "This is a debug message: 47", - "_ansible_verbose_always": true, - "_ansible_item_label": "47" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "63", + "ansible_loop_var": "item", + "_ansible_item_label": "63" + }, + "uuid": "3501c35c-d3d6-4c65-9fde-cdec9fbed5dd" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "3501c35c-d3d6-4c65-9fde-cdec9fbed5dd", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=63) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 63\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 190, + "end_line": 193, + "verbosity": 0 + }, + { + "id": 11248, + "type": "job_event", + "url": "/api/v2/job_events/11248/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11248/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.416912Z", + "modified": "2021-01-28T16:17:15.550420Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 68, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 64", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "711a4387-1f0d-47b3-9810-6505bcd9f468", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=47) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 47\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 142, - "end_line": 145, - "verbosity": 0 - }, - { - "id": 2019, - "type": "job_event", - "url": "/api/v2/job_events/2019/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2019/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.543726Z", - "modified": "2019-08-08T15:37:27.179624Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 97, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "93", - "changed": false, - "msg": "This is a debug message: 93", - "_ansible_verbose_always": true, - "_ansible_item_label": "93" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "64", + "ansible_loop_var": "item", + "_ansible_item_label": "64" + }, + "uuid": "1435eb01-5d47-409d-b1c9-b750dc74683f" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "1435eb01-5d47-409d-b1c9-b750dc74683f", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=64) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 64\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 193, + "end_line": 196, + "verbosity": 0 + }, + { + "id": 11249, + "type": "job_event", + "url": "/api/v2/job_events/11249/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11249/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.423699Z", + "modified": "2021-01-28T16:17:15.550420Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 69, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 65", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "e8091813-e222-494b-ba35-57fc56b5d593", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=93) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 93\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 280, - "end_line": 283, - "verbosity": 0 - }, - { - "id": 2020, - "type": "job_event", - "url": "/api/v2/job_events/2020/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2020/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.119541Z", - "modified": "2019-08-08T15:37:27.227196Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 77, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "73", - "changed": false, - "msg": "This is a debug message: 73", - "_ansible_verbose_always": true, - "_ansible_item_label": "73" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "65", + "ansible_loop_var": "item", + "_ansible_item_label": "65" + }, + "uuid": "d72f5a04-9036-4934-aca2-315f82731b23" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "d72f5a04-9036-4934-aca2-315f82731b23", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=65) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 65\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 196, + "end_line": 199, + "verbosity": 0 + }, + { + "id": 11250, + "type": "job_event", + "url": "/api/v2/job_events/11250/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11250/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.446275Z", + "modified": "2021-01-28T16:17:15.550420Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 70, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 66", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "d00ffa7a-dff3-4e57-9ba2-fa9f921d931e", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=73) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 73\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 220, - "end_line": 223, - "verbosity": 0 - }, - { - "id": 2021, - "type": "job_event", - "url": "/api/v2/job_events/2021/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2021/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.842870Z", - "modified": "2019-08-08T15:37:27.262791Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 57, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "53", - "changed": false, - "msg": "This is a debug message: 53", - "_ansible_verbose_always": true, - "_ansible_item_label": "53" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "66", + "ansible_loop_var": "item", + "_ansible_item_label": "66" + }, + "uuid": "301ec331-deac-4143-b513-f6a09b1dd15d" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "301ec331-deac-4143-b513-f6a09b1dd15d", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=66) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 66\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 199, + "end_line": 202, + "verbosity": 0 + }, + { + "id": 11251, + "type": "job_event", + "url": "/api/v2/job_events/11251/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11251/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.465117Z", + "modified": "2021-01-28T16:17:15.550420Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 71, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 67", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "810bd4e9-d488-459d-9d6a-4109ad77eda4", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=53) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 53\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 160, - "end_line": 163, - "verbosity": 0 - }, - { - "id": 2022, - "type": "job_event", - "url": "/api/v2/job_events/2022/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2022/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.963586Z", - "modified": "2019-08-08T15:37:27.275525Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 64, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "60", - "changed": false, - "msg": "This is a debug message: 60", - "_ansible_verbose_always": true, - "_ansible_item_label": "60" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "67", + "ansible_loop_var": "item", + "_ansible_item_label": "67" + }, + "uuid": "14cf593a-5fa0-44b3-990c-62ef1bba8116" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "14cf593a-5fa0-44b3-990c-62ef1bba8116", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=67) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 67\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 202, + "end_line": 205, + "verbosity": 0 + }, + { + "id": 11252, + "type": "job_event", + "url": "/api/v2/job_events/11252/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11252/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.479014Z", + "modified": "2021-01-28T16:17:15.550420Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 72, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 68", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "00025b42-8e42-4319-a665-8a77cdb9fbfd", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=60) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 60\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 181, - "end_line": 184, - "verbosity": 0 - }, - { - "id": 2023, - "type": "job_event", - "url": "/api/v2/job_events/2023/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2023/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.133664Z", - "modified": "2019-08-08T15:37:27.335812Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 78, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "74", - "changed": false, - "msg": "This is a debug message: 74", - "_ansible_verbose_always": true, - "_ansible_item_label": "74" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "68", + "ansible_loop_var": "item", + "_ansible_item_label": "68" + }, + "uuid": "b85c1f52-7105-41ee-948e-932aa7b4c45f" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "b85c1f52-7105-41ee-948e-932aa7b4c45f", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=68) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 68\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 205, + "end_line": 208, + "verbosity": 0 + }, + { + "id": 11255, + "type": "job_event", + "url": "/api/v2/job_events/11255/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11255/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.495141Z", + "modified": "2021-01-28T16:17:15.595460Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 73, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 69", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "e62f05bf-04b3-489b-9da8-0115e82e24be", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=74) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 74\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 223, - "end_line": 226, - "verbosity": 0 - }, - { - "id": 2024, - "type": "job_event", - "url": "/api/v2/job_events/2024/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2024/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.860885Z", - "modified": "2019-08-08T15:37:27.346429Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 58, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "54", - "changed": false, - "msg": "This is a debug message: 54", - "_ansible_verbose_always": true, - "_ansible_item_label": "54" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "69", + "ansible_loop_var": "item", + "_ansible_item_label": "69" + }, + "uuid": "a57c8dd7-2a10-4095-8905-0f184db59070" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "a57c8dd7-2a10-4095-8905-0f184db59070", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=69) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 69\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 208, + "end_line": 211, + "verbosity": 0 + }, + { + "id": 11253, + "type": "job_event", + "url": "/api/v2/job_events/11253/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11253/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.515128Z", + "modified": "2021-01-28T16:17:15.550420Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 74, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 70", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "40eacdf0-b24a-4200-aebc-b271059fde60", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=54) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 54\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 163, - "end_line": 166, - "verbosity": 0 - }, - { - "id": 2025, - "type": "job_event", - "url": "/api/v2/job_events/2025/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2025/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:25.990345Z", - "modified": "2019-08-08T15:37:27.392596Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 66, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "62", - "changed": false, - "msg": "This is a debug message: 62", - "_ansible_verbose_always": true, - "_ansible_item_label": "62" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "70", + "ansible_loop_var": "item", + "_ansible_item_label": "70" + }, + "uuid": "f7e0d839-440d-4d82-a6b9-c7c710de0075" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "f7e0d839-440d-4d82-a6b9-c7c710de0075", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=70) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 70\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 211, + "end_line": 214, + "verbosity": 0 + }, + { + "id": 11262, + "type": "job_event", + "url": "/api/v2/job_events/11262/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11262/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.523839Z", + "modified": "2021-01-28T16:17:15.626222Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 75, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 71", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "dff70f80-febf-4b7e-8370-f74a53daf06d", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=62) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 62\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 187, - "end_line": 190, - "verbosity": 0 - }, - { - "id": 2026, - "type": "job_event", - "url": "/api/v2/job_events/2026/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2026/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.292911Z", - "modified": "2019-08-08T15:37:27.486075Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 83, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "79", - "changed": false, - "msg": "This is a debug message: 79", - "_ansible_verbose_always": true, - "_ansible_item_label": "79" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "71", + "ansible_loop_var": "item", + "_ansible_item_label": "71" + }, + "uuid": "463b89c6-5474-4cc8-a644-6fc6e8ad854f" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "463b89c6-5474-4cc8-a644-6fc6e8ad854f", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=71) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 71\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 214, + "end_line": 217, + "verbosity": 0 + }, + { + "id": 11256, + "type": "job_event", + "url": "/api/v2/job_events/11256/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11256/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.532962Z", + "modified": "2021-01-28T16:17:15.595460Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 76, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 72", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "1ff1a537-03a6-4e66-95a9-d664b5334436", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=79) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 79\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 238, - "end_line": 241, - "verbosity": 0 - }, - { - "id": 2027, - "type": "job_event", - "url": "/api/v2/job_events/2027/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2027/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.005857Z", - "modified": "2019-08-08T15:37:27.524324Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 67, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "63", - "changed": false, - "msg": "This is a debug message: 63", - "_ansible_verbose_always": true, - "_ansible_item_label": "63" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "72", + "ansible_loop_var": "item", + "_ansible_item_label": "72" + }, + "uuid": "621d62b0-d17c-497b-8e94-7f5ad5a693db" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "621d62b0-d17c-497b-8e94-7f5ad5a693db", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=72) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 72\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 217, + "end_line": 220, + "verbosity": 0 + }, + { + "id": 11259, + "type": "job_event", + "url": "/api/v2/job_events/11259/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11259/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.540592Z", + "modified": "2021-01-28T16:17:15.608478Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 77, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 73", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "1cb1a21b-5e4f-4c63-a1c0-17a71c7cea99", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=63) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 63\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 190, - "end_line": 193, - "verbosity": 0 - }, - { - "id": 2028, - "type": "job_event", - "url": "/api/v2/job_events/2028/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2028/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.013264Z", - "modified": "2019-08-08T15:37:27.549575Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 68, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "64", - "changed": false, - "msg": "This is a debug message: 64", - "_ansible_verbose_always": true, - "_ansible_item_label": "64" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "73", + "ansible_loop_var": "item", + "_ansible_item_label": "73" + }, + "uuid": "1120ebd3-73dc-48c1-9494-32db35bc6329" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "1120ebd3-73dc-48c1-9494-32db35bc6329", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=73) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 73\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 220, + "end_line": 223, + "verbosity": 0 + }, + { + "id": 11254, + "type": "job_event", + "url": "/api/v2/job_events/11254/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11254/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.546889Z", + "modified": "2021-01-28T16:17:15.550420Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 78, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 74", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "cdfdaf8a-8c42-40e1-9f76-c7b90ec7551c", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=64) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 64\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 193, - "end_line": 196, - "verbosity": 0 - }, - { - "id": 2029, - "type": "job_event", - "url": "/api/v2/job_events/2029/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2029/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.040913Z", - "modified": "2019-08-08T15:37:27.652740Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 70, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "66", - "changed": false, - "msg": "This is a debug message: 66", - "_ansible_verbose_always": true, - "_ansible_item_label": "66" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "74", + "ansible_loop_var": "item", + "_ansible_item_label": "74" + }, + "uuid": "137f2774-8b29-43b7-bf59-b0a05608cdba" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "137f2774-8b29-43b7-bf59-b0a05608cdba", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=74) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 74\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 223, + "end_line": 226, + "verbosity": 0 + }, + { + "id": 11263, + "type": "job_event", + "url": "/api/v2/job_events/11263/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11263/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.557229Z", + "modified": "2021-01-28T16:17:15.626222Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 79, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 75", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "a7370c5c-446b-46ba-b36d-129667df93b0", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=66) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 66\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 199, - "end_line": 202, - "verbosity": 0 - }, - { - "id": 2030, - "type": "job_event", - "url": "/api/v2/job_events/2030/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2030/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.348043Z", - "modified": "2019-08-08T15:37:27.701447Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 86, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "82", - "changed": false, - "msg": "This is a debug message: 82", - "_ansible_verbose_always": true, - "_ansible_item_label": "82" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "75", + "ansible_loop_var": "item", + "_ansible_item_label": "75" + }, + "uuid": "ddf422a6-3282-44a6-8828-774fc80ee769" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "ddf422a6-3282-44a6-8828-774fc80ee769", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=75) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 75\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 226, + "end_line": 229, + "verbosity": 0 + }, + { + "id": 11257, + "type": "job_event", + "url": "/api/v2/job_events/11257/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11257/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.564956Z", + "modified": "2021-01-28T16:17:15.595460Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 80, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 76", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "3f04cd9e-3bb2-47e3-922d-5f765a0f5b02", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=82) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 82\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 247, - "end_line": 250, - "verbosity": 0 - }, - { - "id": 2031, - "type": "job_event", - "url": "/api/v2/job_events/2031/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2031/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.051202Z", - "modified": "2019-08-08T15:37:27.713701Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 71, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "67", - "changed": false, - "msg": "This is a debug message: 67", - "_ansible_verbose_always": true, - "_ansible_item_label": "67" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "76", + "ansible_loop_var": "item", + "_ansible_item_label": "76" + }, + "uuid": "c787ae14-2a8d-45d7-b09a-da0dfc2aec19" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "c787ae14-2a8d-45d7-b09a-da0dfc2aec19", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=76) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 76\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 229, + "end_line": 232, + "verbosity": 0 + }, + { + "id": 11260, + "type": "job_event", + "url": "/api/v2/job_events/11260/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11260/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.573282Z", + "modified": "2021-01-28T16:17:15.608478Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 81, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 77", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "eb2007ce-4711-491c-8d3a-ccbe62fe4045", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=67) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 67\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 202, - "end_line": 205, - "verbosity": 0 - }, - { - "id": 2032, - "type": "job_event", - "url": "/api/v2/job_events/2032/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2032/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.068442Z", - "modified": "2019-08-08T15:37:27.743860Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 73, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "69", - "changed": false, - "msg": "This is a debug message: 69", - "_ansible_verbose_always": true, - "_ansible_item_label": "69" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "77", + "ansible_loop_var": "item", + "_ansible_item_label": "77" + }, + "uuid": "06d26c46-04b8-49e3-8847-145fb3d1ec95" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "06d26c46-04b8-49e3-8847-145fb3d1ec95", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=77) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 77\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 232, + "end_line": 235, + "verbosity": 0 + }, + { + "id": 11264, + "type": "job_event", + "url": "/api/v2/job_events/11264/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11264/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.581281Z", + "modified": "2021-01-28T16:17:15.626222Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 82, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 78", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "19250a89-c8c7-47fe-84eb-af53515333ac", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=69) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 69\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 208, - "end_line": 211, - "verbosity": 0 - }, - { - "id": 2033, - "type": "job_event", - "url": "/api/v2/job_events/2033/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2033/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.092184Z", - "modified": "2019-08-08T15:37:27.821021Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 75, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "71", - "changed": false, - "msg": "This is a debug message: 71", - "_ansible_verbose_always": true, - "_ansible_item_label": "71" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "78", + "ansible_loop_var": "item", + "_ansible_item_label": "78" + }, + "uuid": "8c6a52f7-64c3-4146-9adc-0a050b3624e1" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "8c6a52f7-64c3-4146-9adc-0a050b3624e1", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=78) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 78\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 235, + "end_line": 238, + "verbosity": 0 + }, + { + "id": 11258, + "type": "job_event", + "url": "/api/v2/job_events/11258/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11258/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.591277Z", + "modified": "2021-01-28T16:17:15.595460Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 83, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 79", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "17682380-5ed3-4ac3-ba88-3813929369e4", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=71) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 71\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 214, - "end_line": 217, - "verbosity": 0 - }, - { - "id": 2034, - "type": "job_event", - "url": "/api/v2/job_events/2034/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2034/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.057146Z", - "modified": "2019-08-08T15:37:27.838870Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 72, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "68", - "changed": false, - "msg": "This is a debug message: 68", - "_ansible_verbose_always": true, - "_ansible_item_label": "68" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "79", + "ansible_loop_var": "item", + "_ansible_item_label": "79" + }, + "uuid": "3a4e3794-0959-475f-86d3-b2668e5de29e" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "3a4e3794-0959-475f-86d3-b2668e5de29e", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=79) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 79\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 238, + "end_line": 241, + "verbosity": 0 + }, + { + "id": 11261, + "type": "job_event", + "url": "/api/v2/job_events/11261/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11261/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.602932Z", + "modified": "2021-01-28T16:17:15.608478Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 84, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 80", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "b5a496b7-4cac-4454-87f2-195deeb96f59", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=68) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 68\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 205, - "end_line": 208, - "verbosity": 0 - }, - { - "id": 2035, - "type": "job_event", - "url": "/api/v2/job_events/2035/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2035/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.378788Z", - "modified": "2019-08-08T15:37:27.858412Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 88, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "84", - "changed": false, - "msg": "This is a debug message: 84", - "_ansible_verbose_always": true, - "_ansible_item_label": "84" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "80", + "ansible_loop_var": "item", + "_ansible_item_label": "80" + }, + "uuid": "86f3c122-36af-468c-be14-5c231cadbfbf" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "86f3c122-36af-468c-be14-5c231cadbfbf", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=80) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 80\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 241, + "end_line": 244, + "verbosity": 0 + }, + { + "id": 11265, + "type": "job_event", + "url": "/api/v2/job_events/11265/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11265/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.614756Z", + "modified": "2021-01-28T16:17:15.626222Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 85, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 81", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "aecec084-0d6c-4498-91fd-0103c86f36ce", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=84) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 84\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 253, - "end_line": 256, - "verbosity": 0 - }, - { - "id": 2036, - "type": "job_event", - "url": "/api/v2/job_events/2036/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2036/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.168374Z", - "modified": "2019-08-08T15:37:27.898424Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 80, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "76", - "changed": false, - "msg": "This is a debug message: 76", - "_ansible_verbose_always": true, - "_ansible_item_label": "76" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "81", + "ansible_loop_var": "item", + "_ansible_item_label": "81" + }, + "uuid": "eb3f8b55-afc5-4120-902b-e43fd857abb6" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "eb3f8b55-afc5-4120-902b-e43fd857abb6", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=81) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 81\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 244, + "end_line": 247, + "verbosity": 0 + }, + { + "id": 11276, + "type": "job_event", + "url": "/api/v2/job_events/11276/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11276/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.627821Z", + "modified": "2021-01-28T16:17:17.133034Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 86, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 82", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "79b8e25f-7183-44c0-aed7-83f0f9ea69ac", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=76) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 76\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 229, - "end_line": 232, - "verbosity": 0 - }, - { - "id": 2037, - "type": "job_event", - "url": "/api/v2/job_events/2037/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2037/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.439215Z", - "modified": "2019-08-08T15:37:27.922574Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 91, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "87", - "changed": false, - "msg": "This is a debug message: 87", - "_ansible_verbose_always": true, - "_ansible_item_label": "87" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "82", + "ansible_loop_var": "item", + "_ansible_item_label": "82" + }, + "uuid": "9c2900b1-f681-4c94-91c2-3c04e6482be6" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "9c2900b1-f681-4c94-91c2-3c04e6482be6", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=82) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 82\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 247, + "end_line": 250, + "verbosity": 0 + }, + { + "id": 11273, + "type": "job_event", + "url": "/api/v2/job_events/11273/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11273/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.640647Z", + "modified": "2021-01-28T16:17:16.774628Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 87, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 83", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "b7ef243f-2136-470b-a06e-4beda7295f6e", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=87) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 87\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 262, - "end_line": 265, - "verbosity": 0 - }, - { - "id": 2038, - "type": "job_event", - "url": "/api/v2/job_events/2038/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2038/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.307088Z", - "modified": "2019-08-08T15:37:27.942731Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 84, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "80", - "changed": false, - "msg": "This is a debug message: 80", - "_ansible_verbose_always": true, - "_ansible_item_label": "80" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "83", + "ansible_loop_var": "item", + "_ansible_item_label": "83" + }, + "uuid": "9a469b7a-6d32-4822-acad-4f5c749f6613" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "9a469b7a-6d32-4822-acad-4f5c749f6613", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=83) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 83\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 250, + "end_line": 253, + "verbosity": 0 + }, + { + "id": 11270, + "type": "job_event", + "url": "/api/v2/job_events/11270/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11270/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.653184Z", + "modified": "2021-01-28T16:17:16.773081Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 88, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 84", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "61650cd0-bed6-4cbb-bc6f-a99857997a31", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=80) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 80\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 241, - "end_line": 244, - "verbosity": 0 - }, - { - "id": 2039, - "type": "job_event", - "url": "/api/v2/job_events/2039/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2039/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.258772Z", - "modified": "2019-08-08T15:37:27.955766Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 82, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "78", - "changed": false, - "msg": "This is a debug message: 78", - "_ansible_verbose_always": true, - "_ansible_item_label": "78" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "84", + "ansible_loop_var": "item", + "_ansible_item_label": "84" + }, + "uuid": "8f47c848-e82e-48cc-94cd-8ab35285fd26" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "8f47c848-e82e-48cc-94cd-8ab35285fd26", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=84) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 84\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 253, + "end_line": 256, + "verbosity": 0 + }, + { + "id": 11266, + "type": "job_event", + "url": "/api/v2/job_events/11266/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11266/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.662214Z", + "modified": "2021-01-28T16:17:15.853862Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 89, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 85", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "74c9ae54-4a08-4a5e-958a-715d33d03f8c", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=78) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 78\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 235, - "end_line": 238, - "verbosity": 0 - }, - { - "id": 2040, - "type": "job_event", - "url": "/api/v2/job_events/2040/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2040/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.513963Z", - "modified": "2019-08-08T15:37:27.967600Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 95, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "91", - "changed": false, - "msg": "This is a debug message: 91", - "_ansible_verbose_always": true, - "_ansible_item_label": "91" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "85", + "ansible_loop_var": "item", + "_ansible_item_label": "85" + }, + "uuid": "9fc25ea6-dc68-4805-b0b1-2066f2e62d88" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "9fc25ea6-dc68-4805-b0b1-2066f2e62d88", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=85) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 85\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 256, + "end_line": 259, + "verbosity": 0 + }, + { + "id": 11277, + "type": "job_event", + "url": "/api/v2/job_events/11277/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11277/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.676022Z", + "modified": "2021-01-28T16:17:17.133034Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 90, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 86", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "967894da-b197-4291-8684-a69d47b44186", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=91) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 91\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 274, - "end_line": 277, - "verbosity": 0 - }, - { - "id": 2041, - "type": "job_event", - "url": "/api/v2/job_events/2041/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2041/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.528974Z", - "modified": "2019-08-08T15:37:28.008778Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 96, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "92", - "changed": false, - "msg": "This is a debug message: 92", - "_ansible_verbose_always": true, - "_ansible_item_label": "92" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "86", + "ansible_loop_var": "item", + "_ansible_item_label": "86" + }, + "uuid": "90bcf0b3-2284-4e82-9b5e-c138fb266c74" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "90bcf0b3-2284-4e82-9b5e-c138fb266c74", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=86) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 86\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 259, + "end_line": 262, + "verbosity": 0 + }, + { + "id": 11278, + "type": "job_event", + "url": "/api/v2/job_events/11278/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11278/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.687264Z", + "modified": "2021-01-28T16:17:17.133034Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 91, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 87", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "3fd2bc86-518a-4a6d-8273-7a588260f6d4", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=92) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 92\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 277, - "end_line": 280, - "verbosity": 0 - }, - { - "id": 2042, - "type": "job_event", - "url": "/api/v2/job_events/2042/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2042/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.562362Z", - "modified": "2019-08-08T15:37:28.023718Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 98, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "94", - "changed": false, - "msg": "This is a debug message: 94", - "_ansible_verbose_always": true, - "_ansible_item_label": "94" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "87", + "ansible_loop_var": "item", + "_ansible_item_label": "87" + }, + "uuid": "bb68d101-bf92-41e1-873e-c9326274c29b" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "bb68d101-bf92-41e1-873e-c9326274c29b", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=87) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 87\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 262, + "end_line": 265, + "verbosity": 0 + }, + { + "id": 11267, + "type": "job_event", + "url": "/api/v2/job_events/11267/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11267/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.695268Z", + "modified": "2021-01-28T16:17:15.853862Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 92, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 88", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "44102517-9500-4b5d-8ba0-cfb837f96bee", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=94) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 94\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 283, - "end_line": 286, - "verbosity": 0 - }, - { - "id": 2043, - "type": "job_event", - "url": "/api/v2/job_events/2043/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2043/children/" - }, - "summary_fields": { - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.621574Z", - "modified": "2019-08-08T15:37:28.057416Z", - "job": 59, - "event": "playbook_on_stats", - "counter": 100, - "event_display": "Playbook Complete", - "event_data": { - "ignored": {}, - "skipped": {}, - "ok": { - "localhost": 1 - }, - "artifact_data": {}, - "rescued": {}, - "changed": {}, - "pid": 3, - "dark": {}, - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "failures": {}, - "processed": { - "localhost": 1 - } - }, - "event_level": 1, + "item": "88", + "ansible_loop_var": "item", + "_ansible_item_label": "88" + }, + "uuid": "c64759bf-9998-4a35-911f-4daa96054c17" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "c64759bf-9998-4a35-911f-4daa96054c17", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=88) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 88\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 265, + "end_line": 268, + "verbosity": 0 + }, + { + "id": 11279, + "type": "job_event", + "url": "/api/v2/job_events/11279/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11279/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.707388Z", + "modified": "2021-01-28T16:17:17.133034Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 93, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 89", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "752f3afc-4b84-4a94-987a-118b886c9cac", - "parent_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "host": null, - "host_name": "", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "", - "task": "", - "role": "", - "stdout": "\r\nPLAY RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : \u001b[0;32mok=1 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n", - "start_line": 286, - "end_line": 290, - "verbosity": 0 - }, - { - "id": 2044, - "type": "job_event", - "url": "/api/v2/job_events/2044/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2044/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.358130Z", - "modified": "2019-08-08T15:37:28.082780Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 87, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "83", - "changed": false, - "msg": "This is a debug message: 83", - "_ansible_verbose_always": true, - "_ansible_item_label": "83" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "89", + "ansible_loop_var": "item", + "_ansible_item_label": "89" + }, + "uuid": "574c8e2c-70f6-4489-9927-98a02e75789f" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "574c8e2c-70f6-4489-9927-98a02e75789f", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=89) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 89\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 268, + "end_line": 271, + "verbosity": 0 + }, + { + "id": 11271, + "type": "job_event", + "url": "/api/v2/job_events/11271/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11271/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.717306Z", + "modified": "2021-01-28T16:17:16.773081Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 94, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 90", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "eab79b3f-a96e-4796-96c1-d649e451cfbd", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=83) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 83\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 250, - "end_line": 253, - "verbosity": 0 - }, - { - "id": 2045, - "type": "job_event", - "url": "/api/v2/job_events/2045/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2045/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.391893Z", - "modified": "2019-08-08T15:37:28.159238Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 89, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "85", - "changed": false, - "msg": "This is a debug message: 85", - "_ansible_verbose_always": true, - "_ansible_item_label": "85" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "90", + "ansible_loop_var": "item", + "_ansible_item_label": "90" + }, + "uuid": "1d8fc847-30fb-40fe-affe-2c47eaa64258" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "1d8fc847-30fb-40fe-affe-2c47eaa64258", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=90) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 90\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 271, + "end_line": 274, + "verbosity": 0 + }, + { + "id": 11274, + "type": "job_event", + "url": "/api/v2/job_events/11274/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11274/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.724962Z", + "modified": "2021-01-28T16:17:16.774628Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 95, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 91", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "33745267-bc8a-49b5-98d4-1635e8a7b389", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=85) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 85\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 256, - "end_line": 259, - "verbosity": 0 - }, - { - "id": 2046, - "type": "job_event", - "url": "/api/v2/job_events/2046/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2046/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.409526Z", - "modified": "2019-08-08T15:37:28.203268Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 90, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "86", - "changed": false, - "msg": "This is a debug message: 86", - "_ansible_verbose_always": true, - "_ansible_item_label": "86" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "91", + "ansible_loop_var": "item", + "_ansible_item_label": "91" + }, + "uuid": "cdf99527-31c5-42b1-9556-ca6d7f924bd0" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "cdf99527-31c5-42b1-9556-ca6d7f924bd0", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=91) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 91\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 274, + "end_line": 277, + "verbosity": 0 + }, + { + "id": 11268, + "type": "job_event", + "url": "/api/v2/job_events/11268/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11268/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.737328Z", + "modified": "2021-01-28T16:17:15.853862Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 96, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 92", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "c41b733d-a428-4389-b1fd-fe562cfa1645", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=86) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 86\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 259, - "end_line": 262, - "verbosity": 0 - }, - { - "id": 2047, - "type": "job_event", - "url": "/api/v2/job_events/2047/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2047/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.455792Z", - "modified": "2019-08-08T15:37:28.247902Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 92, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "88", - "changed": false, - "msg": "This is a debug message: 88", - "_ansible_verbose_always": true, - "_ansible_item_label": "88" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "92", + "ansible_loop_var": "item", + "_ansible_item_label": "92" + }, + "uuid": "757726ee-aa7a-49b3-ac14-0001bcb86a81" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "757726ee-aa7a-49b3-ac14-0001bcb86a81", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=92) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 92\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 277, + "end_line": 280, + "verbosity": 0 + }, + { + "id": 11280, + "type": "job_event", + "url": "/api/v2/job_events/11280/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11280/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.742581Z", + "modified": "2021-01-28T16:17:17.133034Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 97, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 93", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "57d5ca96-f245-436e-88e5-04c5d61e9db5", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=88) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 88\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 265, - "end_line": 268, - "verbosity": 0 - }, - { - "id": 2048, - "type": "job_event", - "url": "/api/v2/job_events/2048/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2048/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.475327Z", - "modified": "2019-08-08T15:37:28.289995Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 93, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "89", - "changed": false, - "msg": "This is a debug message: 89", - "_ansible_verbose_always": true, - "_ansible_item_label": "89" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "93", + "ansible_loop_var": "item", + "_ansible_item_label": "93" + }, + "uuid": "c880cc54-1437-4962-9929-9bb2c9bf2cb8" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "c880cc54-1437-4962-9929-9bb2c9bf2cb8", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=93) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 93\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 280, + "end_line": 283, + "verbosity": 0 + }, + { + "id": 11272, + "type": "job_event", + "url": "/api/v2/job_events/11272/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11272/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.749132Z", + "modified": "2021-01-28T16:17:16.773081Z", + "job": 8, + "event": "runner_item_on_ok", + "counter": 98, + "event_display": "Item OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "res": { + "msg": "This is a debug message: 94", + "_ansible_verbose_always": true, + "_ansible_no_log": false, "changed": false, - "uuid": "df145399-0a25-4bfa-90f3-d68a16be3c09", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=89) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 89\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 268, - "end_line": 271, - "verbosity": 0 - }, - { - "id": 2049, - "type": "job_event", - "url": "/api/v2/job_events/2049/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2049/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.496247Z", - "modified": "2019-08-08T15:37:28.332622Z", - "job": 59, - "event": "runner_item_on_ok", - "counter": 94, - "event_display": "Item OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "res": { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "90", - "changed": false, - "msg": "This is a debug message: 90", - "_ansible_verbose_always": true, - "_ansible_item_label": "90" - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "item": "94", + "ansible_loop_var": "item", + "_ansible_item_label": "94" + }, + "uuid": "672f20bd-fa2d-4c2e-9875-3c9ff1dc25ea" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "672f20bd-fa2d-4c2e-9875-3c9ff1dc25ea", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "\u001b[0;32mok: [localhost] => (item=94) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 94\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", + "start_line": 283, + "end_line": 286, + "verbosity": 0 + }, + { + "id": 11269, + "type": "job_event", + "url": "/api/v2/job_events/11269/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11269/children/" + }, + "summary_fields": { + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, - "changed": false, - "uuid": "862a71c3-6e6d-49b0-ab50-a1a2d126a351", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "\u001b[0;32mok: [localhost] => (item=90) => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"This is a debug message: 90\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m", - "start_line": 271, - "end_line": 274, - "verbosity": 0 - }, - { - "id": 2050, - "type": "job_event", - "url": "/api/v2/job_events/2050/", - "related": { - "job": "/api/v2/jobs/59/", - "children": "/api/v2/job_events/2050/children/", - "host": "/api/v2/hosts/1/" - }, - "summary_fields": { - "host": { - "id": 1, - "name": "localhost", - "description": "", - "has_active_failures": false, - "has_inventory_sources": false - }, - "job": { - "id": 59, - "name": "Chatty Tasks", - "description": "", - "status": "successful", - "failed": false, - "elapsed": 8.408, - "type": "job", - "job_template_id": 14, - "job_template_name": "Chatty Tasks" - }, - "role": {} - }, - "created": "2019-08-08T15:37:26.580706Z", - "modified": "2019-08-08T15:37:28.543622Z", - "job": 59, - "event": "runner_on_ok", - "counter": 99, - "event_display": "Host OK", - "event_data": { - "play_pattern": "all", - "play": "all", - "task": "debug", - "task_args": "", - "remote_addr": "localhost", - "res": { - "msg": "All items completed", - "changed": false, - "results": [ - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "1", - "failed": false, - "changed": false, - "msg": "This is a debug message: 1", - "_ansible_verbose_always": true, - "_ansible_item_label": "1" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "2", - "failed": false, - "changed": false, - "msg": "This is a debug message: 2", - "_ansible_verbose_always": true, - "_ansible_item_label": "2" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "3", - "failed": false, - "changed": false, - "msg": "This is a debug message: 3", - "_ansible_verbose_always": true, - "_ansible_item_label": "3" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "4", - "failed": false, - "changed": false, - "msg": "This is a debug message: 4", - "_ansible_verbose_always": true, - "_ansible_item_label": "4" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "5", - "failed": false, - "changed": false, - "msg": "This is a debug message: 5", - "_ansible_verbose_always": true, - "_ansible_item_label": "5" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "6", - "failed": false, - "changed": false, - "msg": "This is a debug message: 6", - "_ansible_verbose_always": true, - "_ansible_item_label": "6" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "7", - "failed": false, - "changed": false, - "msg": "This is a debug message: 7", - "_ansible_verbose_always": true, - "_ansible_item_label": "7" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "8", - "failed": false, - "changed": false, - "msg": "This is a debug message: 8", - "_ansible_verbose_always": true, - "_ansible_item_label": "8" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "9", - "failed": false, - "changed": false, - "msg": "This is a debug message: 9", - "_ansible_verbose_always": true, - "_ansible_item_label": "9" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "10", - "failed": false, - "changed": false, - "msg": "This is a debug message: 10", - "_ansible_verbose_always": true, - "_ansible_item_label": "10" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "11", - "failed": false, - "changed": false, - "msg": "This is a debug message: 11", - "_ansible_verbose_always": true, - "_ansible_item_label": "11" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "12", - "failed": false, - "changed": false, - "msg": "This is a debug message: 12", - "_ansible_verbose_always": true, - "_ansible_item_label": "12" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "13", - "failed": false, - "changed": false, - "msg": "This is a debug message: 13", - "_ansible_verbose_always": true, - "_ansible_item_label": "13" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "14", - "failed": false, - "changed": false, - "msg": "This is a debug message: 14", - "_ansible_verbose_always": true, - "_ansible_item_label": "14" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "15", - "failed": false, - "changed": false, - "msg": "This is a debug message: 15", - "_ansible_verbose_always": true, - "_ansible_item_label": "15" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "16", - "failed": false, - "changed": false, - "msg": "This is a debug message: 16", - "_ansible_verbose_always": true, - "_ansible_item_label": "16" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "17", - "failed": false, - "changed": false, - "msg": "This is a debug message: 17", - "_ansible_verbose_always": true, - "_ansible_item_label": "17" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "18", - "failed": false, - "changed": false, - "msg": "This is a debug message: 18", - "_ansible_verbose_always": true, - "_ansible_item_label": "18" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "19", - "failed": false, - "changed": false, - "msg": "This is a debug message: 19", - "_ansible_verbose_always": true, - "_ansible_item_label": "19" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "20", - "failed": false, - "changed": false, - "msg": "This is a debug message: 20", - "_ansible_verbose_always": true, - "_ansible_item_label": "20" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "21", - "failed": false, - "changed": false, - "msg": "This is a debug message: 21", - "_ansible_verbose_always": true, - "_ansible_item_label": "21" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "22", - "failed": false, - "changed": false, - "msg": "This is a debug message: 22", - "_ansible_verbose_always": true, - "_ansible_item_label": "22" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "23", - "failed": false, - "changed": false, - "msg": "This is a debug message: 23", - "_ansible_verbose_always": true, - "_ansible_item_label": "23" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "24", - "failed": false, - "changed": false, - "msg": "This is a debug message: 24", - "_ansible_verbose_always": true, - "_ansible_item_label": "24" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "25", - "failed": false, - "changed": false, - "msg": "This is a debug message: 25", - "_ansible_verbose_always": true, - "_ansible_item_label": "25" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "26", - "failed": false, - "changed": false, - "msg": "This is a debug message: 26", - "_ansible_verbose_always": true, - "_ansible_item_label": "26" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "27", - "failed": false, - "changed": false, - "msg": "This is a debug message: 27", - "_ansible_verbose_always": true, - "_ansible_item_label": "27" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "28", - "failed": false, - "changed": false, - "msg": "This is a debug message: 28", - "_ansible_verbose_always": true, - "_ansible_item_label": "28" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "29", - "failed": false, - "changed": false, - "msg": "This is a debug message: 29", - "_ansible_verbose_always": true, - "_ansible_item_label": "29" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "30", - "failed": false, - "changed": false, - "msg": "This is a debug message: 30", - "_ansible_verbose_always": true, - "_ansible_item_label": "30" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "31", - "failed": false, - "changed": false, - "msg": "This is a debug message: 31", - "_ansible_verbose_always": true, - "_ansible_item_label": "31" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "32", - "failed": false, - "changed": false, - "msg": "This is a debug message: 32", - "_ansible_verbose_always": true, - "_ansible_item_label": "32" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "33", - "failed": false, - "changed": false, - "msg": "This is a debug message: 33", - "_ansible_verbose_always": true, - "_ansible_item_label": "33" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "34", - "failed": false, - "changed": false, - "msg": "This is a debug message: 34", - "_ansible_verbose_always": true, - "_ansible_item_label": "34" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "35", - "failed": false, - "changed": false, - "msg": "This is a debug message: 35", - "_ansible_verbose_always": true, - "_ansible_item_label": "35" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "36", - "failed": false, - "changed": false, - "msg": "This is a debug message: 36", - "_ansible_verbose_always": true, - "_ansible_item_label": "36" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "37", - "failed": false, - "changed": false, - "msg": "This is a debug message: 37", - "_ansible_verbose_always": true, - "_ansible_item_label": "37" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "38", - "failed": false, - "changed": false, - "msg": "This is a debug message: 38", - "_ansible_verbose_always": true, - "_ansible_item_label": "38" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "39", - "failed": false, - "changed": false, - "msg": "This is a debug message: 39", - "_ansible_verbose_always": true, - "_ansible_item_label": "39" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "40", - "failed": false, - "changed": false, - "msg": "This is a debug message: 40", - "_ansible_verbose_always": true, - "_ansible_item_label": "40" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "41", - "failed": false, - "changed": false, - "msg": "This is a debug message: 41", - "_ansible_verbose_always": true, - "_ansible_item_label": "41" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "42", - "failed": false, - "changed": false, - "msg": "This is a debug message: 42", - "_ansible_verbose_always": true, - "_ansible_item_label": "42" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "43", - "failed": false, - "changed": false, - "msg": "This is a debug message: 43", - "_ansible_verbose_always": true, - "_ansible_item_label": "43" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "44", - "failed": false, - "changed": false, - "msg": "This is a debug message: 44", - "_ansible_verbose_always": true, - "_ansible_item_label": "44" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "45", - "failed": false, - "changed": false, - "msg": "This is a debug message: 45", - "_ansible_verbose_always": true, - "_ansible_item_label": "45" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "46", - "failed": false, - "changed": false, - "msg": "This is a debug message: 46", - "_ansible_verbose_always": true, - "_ansible_item_label": "46" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "47", - "failed": false, - "changed": false, - "msg": "This is a debug message: 47", - "_ansible_verbose_always": true, - "_ansible_item_label": "47" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "48", - "failed": false, - "changed": false, - "msg": "This is a debug message: 48", - "_ansible_verbose_always": true, - "_ansible_item_label": "48" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "49", - "failed": false, - "changed": false, - "msg": "This is a debug message: 49", - "_ansible_verbose_always": true, - "_ansible_item_label": "49" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "50", - "failed": false, - "changed": false, - "msg": "This is a debug message: 50", - "_ansible_verbose_always": true, - "_ansible_item_label": "50" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "51", - "failed": false, - "changed": false, - "msg": "This is a debug message: 51", - "_ansible_verbose_always": true, - "_ansible_item_label": "51" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "52", - "failed": false, - "changed": false, - "msg": "This is a debug message: 52", - "_ansible_verbose_always": true, - "_ansible_item_label": "52" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "53", - "failed": false, - "changed": false, - "msg": "This is a debug message: 53", - "_ansible_verbose_always": true, - "_ansible_item_label": "53" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "54", - "failed": false, - "changed": false, - "msg": "This is a debug message: 54", - "_ansible_verbose_always": true, - "_ansible_item_label": "54" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "55", - "failed": false, - "changed": false, - "msg": "This is a debug message: 55", - "_ansible_verbose_always": true, - "_ansible_item_label": "55" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "56", - "failed": false, - "changed": false, - "msg": "This is a debug message: 56", - "_ansible_verbose_always": true, - "_ansible_item_label": "56" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "57", - "failed": false, - "changed": false, - "msg": "This is a debug message: 57", - "_ansible_verbose_always": true, - "_ansible_item_label": "57" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "58", - "failed": false, - "changed": false, - "msg": "This is a debug message: 58", - "_ansible_verbose_always": true, - "_ansible_item_label": "58" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "59", - "failed": false, - "changed": false, - "msg": "This is a debug message: 59", - "_ansible_verbose_always": true, - "_ansible_item_label": "59" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "60", - "failed": false, - "changed": false, - "msg": "This is a debug message: 60", - "_ansible_verbose_always": true, - "_ansible_item_label": "60" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "61", - "failed": false, - "changed": false, - "msg": "This is a debug message: 61", - "_ansible_verbose_always": true, - "_ansible_item_label": "61" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "62", - "failed": false, - "changed": false, - "msg": "This is a debug message: 62", - "_ansible_verbose_always": true, - "_ansible_item_label": "62" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "63", - "failed": false, - "changed": false, - "msg": "This is a debug message: 63", - "_ansible_verbose_always": true, - "_ansible_item_label": "63" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "64", - "failed": false, - "changed": false, - "msg": "This is a debug message: 64", - "_ansible_verbose_always": true, - "_ansible_item_label": "64" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "65", - "failed": false, - "changed": false, - "msg": "This is a debug message: 65", - "_ansible_verbose_always": true, - "_ansible_item_label": "65" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "66", - "failed": false, - "changed": false, - "msg": "This is a debug message: 66", - "_ansible_verbose_always": true, - "_ansible_item_label": "66" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "67", - "failed": false, - "changed": false, - "msg": "This is a debug message: 67", - "_ansible_verbose_always": true, - "_ansible_item_label": "67" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "68", - "failed": false, - "changed": false, - "msg": "This is a debug message: 68", - "_ansible_verbose_always": true, - "_ansible_item_label": "68" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "69", - "failed": false, - "changed": false, - "msg": "This is a debug message: 69", - "_ansible_verbose_always": true, - "_ansible_item_label": "69" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "70", - "failed": false, - "changed": false, - "msg": "This is a debug message: 70", - "_ansible_verbose_always": true, - "_ansible_item_label": "70" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "71", - "failed": false, - "changed": false, - "msg": "This is a debug message: 71", - "_ansible_verbose_always": true, - "_ansible_item_label": "71" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "72", - "failed": false, - "changed": false, - "msg": "This is a debug message: 72", - "_ansible_verbose_always": true, - "_ansible_item_label": "72" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "73", - "failed": false, - "changed": false, - "msg": "This is a debug message: 73", - "_ansible_verbose_always": true, - "_ansible_item_label": "73" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "74", - "failed": false, - "changed": false, - "msg": "This is a debug message: 74", - "_ansible_verbose_always": true, - "_ansible_item_label": "74" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "75", - "failed": false, - "changed": false, - "msg": "This is a debug message: 75", - "_ansible_verbose_always": true, - "_ansible_item_label": "75" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "76", - "failed": false, - "changed": false, - "msg": "This is a debug message: 76", - "_ansible_verbose_always": true, - "_ansible_item_label": "76" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "77", - "failed": false, - "changed": false, - "msg": "This is a debug message: 77", - "_ansible_verbose_always": true, - "_ansible_item_label": "77" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "78", - "failed": false, - "changed": false, - "msg": "This is a debug message: 78", - "_ansible_verbose_always": true, - "_ansible_item_label": "78" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "79", - "failed": false, - "changed": false, - "msg": "This is a debug message: 79", - "_ansible_verbose_always": true, - "_ansible_item_label": "79" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "80", - "failed": false, - "changed": false, - "msg": "This is a debug message: 80", - "_ansible_verbose_always": true, - "_ansible_item_label": "80" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "81", - "failed": false, - "changed": false, - "msg": "This is a debug message: 81", - "_ansible_verbose_always": true, - "_ansible_item_label": "81" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "82", - "failed": false, - "changed": false, - "msg": "This is a debug message: 82", - "_ansible_verbose_always": true, - "_ansible_item_label": "82" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "83", - "failed": false, - "changed": false, - "msg": "This is a debug message: 83", - "_ansible_verbose_always": true, - "_ansible_item_label": "83" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "84", - "failed": false, - "changed": false, - "msg": "This is a debug message: 84", - "_ansible_verbose_always": true, - "_ansible_item_label": "84" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "85", - "failed": false, - "changed": false, - "msg": "This is a debug message: 85", - "_ansible_verbose_always": true, - "_ansible_item_label": "85" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "86", - "failed": false, - "changed": false, - "msg": "This is a debug message: 86", - "_ansible_verbose_always": true, - "_ansible_item_label": "86" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "87", - "failed": false, - "changed": false, - "msg": "This is a debug message: 87", - "_ansible_verbose_always": true, - "_ansible_item_label": "87" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "88", - "failed": false, - "changed": false, - "msg": "This is a debug message: 88", - "_ansible_verbose_always": true, - "_ansible_item_label": "88" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "89", - "failed": false, - "changed": false, - "msg": "This is a debug message: 89", - "_ansible_verbose_always": true, - "_ansible_item_label": "89" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "90", - "failed": false, - "changed": false, - "msg": "This is a debug message: 90", - "_ansible_verbose_always": true, - "_ansible_item_label": "90" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "91", - "failed": false, - "changed": false, - "msg": "This is a debug message: 91", - "_ansible_verbose_always": true, - "_ansible_item_label": "91" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "92", - "failed": false, - "changed": false, - "msg": "This is a debug message: 92", - "_ansible_verbose_always": true, - "_ansible_item_label": "92" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "93", - "failed": false, - "changed": false, - "msg": "This is a debug message: 93", - "_ansible_verbose_always": true, - "_ansible_item_label": "93" - }, - { - "ansible_loop_var": "item", - "_ansible_no_log": false, - "item": "94", - "failed": false, - "changed": false, - "msg": "This is a debug message: 94", - "_ansible_verbose_always": true, - "_ansible_item_label": "94" - } - ] - }, - "pid": 3, - "play_uuid": "0242ac13-0005-25a7-452d-000000000006", - "task_uuid": "0242ac13-0005-25a7-452d-000000000008", - "event_loop": "sequence", - "playbook_uuid": "4b471a8a-22be-460a-8a64-31a458fbe192", - "playbook": "chatty_tasks.yml", - "task_action": "debug", - "host": "localhost", - "task_path": "/projects/_6__demo_project/chatty_tasks.yml:8" - }, - "event_level": 3, + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.763782Z", + "modified": "2021-01-28T16:17:15.853862Z", + "job": 8, + "event": "playbook_on_stats", + "counter": 100, + "event_display": "Playbook Complete", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "changed": {}, + "dark": {}, + "failures": {}, + "ignored": {}, + "ok": { + "localhost": 1 + }, + "processed": { + "localhost": 1 + }, + "rescued": {}, + "skipped": {}, + "artifact_data": {}, + "uuid": "3ff2cd93-c05f-4418-8707-3e3fb8a517f1" + }, + "event_level": 1, + "failed": false, + "changed": false, + "uuid": "3ff2cd93-c05f-4418-8707-3e3fb8a517f1", + "parent_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "host": null, + "host_name": "", + "playbook": "chatty_tasks.yml", + "play": "", + "task": "", + "role": "", + "stdout": "\r\nPLAY RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : \u001b[0;32mok=1 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n", + "start_line": 286, + "end_line": 290, + "verbosity": 0 + }, + { + "id": 11275, + "type": "job_event", + "url": "/api/v2/job_events/11275/", + "related": { + "job": "/api/v2/jobs/8/", + "children": "/api/v2/job_events/11275/children/", + "host": "/api/v2/hosts/1/" + }, + "summary_fields": { + "host": { + "id": 1, + "name": "localhost", + "description": "" + }, + "job": { + "id": 8, + "name": "chatty", + "description": "", + "status": "successful", "failed": false, - "changed": false, - "uuid": "bf7019dc-b96c-4f1e-81d1-04407e649fcd", - "parent_uuid": "0242ac13-0005-25a7-452d-000000000008", - "host": 1, - "host_name": "localhost", - "parent": null, - "playbook": "chatty_tasks.yml", - "play": "all", - "task": "debug", - "role": "", - "stdout": "", - "start_line": 286, - "end_line": 286, - "verbosity": 0 - } + "elapsed": 6.263, + "type": "job", + "job_template_id": 7, + "job_template_name": "chatty" + }, + "role": {} + }, + "created": "2021-01-28T16:17:15.755721Z", + "modified": "2021-01-28T16:17:16.774628Z", + "job": 8, + "event": "runner_on_ok", + "counter": 99, + "event_display": "Host OK", + "event_data": { + "playbook": "chatty_tasks.yml", + "playbook_uuid": "a60e6549-f49b-401f-b2f0-b03557d3d1d7", + "play": "all", + "play_uuid": "0242ac12-0004-20a0-8d35-000000000006", + "play_pattern": "all", + "task": "debug", + "task_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "task_action": "debug", + "task_args": "", + "task_path": "/tmp/awx_8_2sz9q_jd/project/chatty_tasks.yml:8", + "host": "localhost", + "remote_addr": "localhost", + "res": { + "results": [ + { + "msg": "This is a debug message: 1", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "1", + "ansible_loop_var": "item", + "_ansible_item_label": "1" + }, + { + "msg": "This is a debug message: 2", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "2", + "ansible_loop_var": "item", + "_ansible_item_label": "2" + }, + { + "msg": "This is a debug message: 3", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "3", + "ansible_loop_var": "item", + "_ansible_item_label": "3" + }, + { + "msg": "This is a debug message: 4", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "4", + "ansible_loop_var": "item", + "_ansible_item_label": "4" + }, + { + "msg": "This is a debug message: 5", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "5", + "ansible_loop_var": "item", + "_ansible_item_label": "5" + }, + { + "msg": "This is a debug message: 6", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "6", + "ansible_loop_var": "item", + "_ansible_item_label": "6" + }, + { + "msg": "This is a debug message: 7", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "7", + "ansible_loop_var": "item", + "_ansible_item_label": "7" + }, + { + "msg": "This is a debug message: 8", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "8", + "ansible_loop_var": "item", + "_ansible_item_label": "8" + }, + { + "msg": "This is a debug message: 9", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "9", + "ansible_loop_var": "item", + "_ansible_item_label": "9" + }, + { + "msg": "This is a debug message: 10", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "10", + "ansible_loop_var": "item", + "_ansible_item_label": "10" + }, + { + "msg": "This is a debug message: 11", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "11", + "ansible_loop_var": "item", + "_ansible_item_label": "11" + }, + { + "msg": "This is a debug message: 12", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "12", + "ansible_loop_var": "item", + "_ansible_item_label": "12" + }, + { + "msg": "This is a debug message: 13", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "13", + "ansible_loop_var": "item", + "_ansible_item_label": "13" + }, + { + "msg": "This is a debug message: 14", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "14", + "ansible_loop_var": "item", + "_ansible_item_label": "14" + }, + { + "msg": "This is a debug message: 15", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "15", + "ansible_loop_var": "item", + "_ansible_item_label": "15" + }, + { + "msg": "This is a debug message: 16", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "16", + "ansible_loop_var": "item", + "_ansible_item_label": "16" + }, + { + "msg": "This is a debug message: 17", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "17", + "ansible_loop_var": "item", + "_ansible_item_label": "17" + }, + { + "msg": "This is a debug message: 18", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "18", + "ansible_loop_var": "item", + "_ansible_item_label": "18" + }, + { + "msg": "This is a debug message: 19", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "19", + "ansible_loop_var": "item", + "_ansible_item_label": "19" + }, + { + "msg": "This is a debug message: 20", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "20", + "ansible_loop_var": "item", + "_ansible_item_label": "20" + }, + { + "msg": "This is a debug message: 21", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "21", + "ansible_loop_var": "item", + "_ansible_item_label": "21" + }, + { + "msg": "This is a debug message: 22", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "22", + "ansible_loop_var": "item", + "_ansible_item_label": "22" + }, + { + "msg": "This is a debug message: 23", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "23", + "ansible_loop_var": "item", + "_ansible_item_label": "23" + }, + { + "msg": "This is a debug message: 24", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "24", + "ansible_loop_var": "item", + "_ansible_item_label": "24" + }, + { + "msg": "This is a debug message: 25", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "25", + "ansible_loop_var": "item", + "_ansible_item_label": "25" + }, + { + "msg": "This is a debug message: 26", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "26", + "ansible_loop_var": "item", + "_ansible_item_label": "26" + }, + { + "msg": "This is a debug message: 27", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "27", + "ansible_loop_var": "item", + "_ansible_item_label": "27" + }, + { + "msg": "This is a debug message: 28", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "28", + "ansible_loop_var": "item", + "_ansible_item_label": "28" + }, + { + "msg": "This is a debug message: 29", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "29", + "ansible_loop_var": "item", + "_ansible_item_label": "29" + }, + { + "msg": "This is a debug message: 30", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "30", + "ansible_loop_var": "item", + "_ansible_item_label": "30" + }, + { + "msg": "This is a debug message: 31", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "31", + "ansible_loop_var": "item", + "_ansible_item_label": "31" + }, + { + "msg": "This is a debug message: 32", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "32", + "ansible_loop_var": "item", + "_ansible_item_label": "32" + }, + { + "msg": "This is a debug message: 33", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "33", + "ansible_loop_var": "item", + "_ansible_item_label": "33" + }, + { + "msg": "This is a debug message: 34", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "34", + "ansible_loop_var": "item", + "_ansible_item_label": "34" + }, + { + "msg": "This is a debug message: 35", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "35", + "ansible_loop_var": "item", + "_ansible_item_label": "35" + }, + { + "msg": "This is a debug message: 36", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "36", + "ansible_loop_var": "item", + "_ansible_item_label": "36" + }, + { + "msg": "This is a debug message: 37", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "37", + "ansible_loop_var": "item", + "_ansible_item_label": "37" + }, + { + "msg": "This is a debug message: 38", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "38", + "ansible_loop_var": "item", + "_ansible_item_label": "38" + }, + { + "msg": "This is a debug message: 39", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "39", + "ansible_loop_var": "item", + "_ansible_item_label": "39" + }, + { + "msg": "This is a debug message: 40", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "40", + "ansible_loop_var": "item", + "_ansible_item_label": "40" + }, + { + "msg": "This is a debug message: 41", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "41", + "ansible_loop_var": "item", + "_ansible_item_label": "41" + }, + { + "msg": "This is a debug message: 42", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "42", + "ansible_loop_var": "item", + "_ansible_item_label": "42" + }, + { + "msg": "This is a debug message: 43", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "43", + "ansible_loop_var": "item", + "_ansible_item_label": "43" + }, + { + "msg": "This is a debug message: 44", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "44", + "ansible_loop_var": "item", + "_ansible_item_label": "44" + }, + { + "msg": "This is a debug message: 45", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "45", + "ansible_loop_var": "item", + "_ansible_item_label": "45" + }, + { + "msg": "This is a debug message: 46", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "46", + "ansible_loop_var": "item", + "_ansible_item_label": "46" + }, + { + "msg": "This is a debug message: 47", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "47", + "ansible_loop_var": "item", + "_ansible_item_label": "47" + }, + { + "msg": "This is a debug message: 48", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "48", + "ansible_loop_var": "item", + "_ansible_item_label": "48" + }, + { + "msg": "This is a debug message: 49", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "49", + "ansible_loop_var": "item", + "_ansible_item_label": "49" + }, + { + "msg": "This is a debug message: 50", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "50", + "ansible_loop_var": "item", + "_ansible_item_label": "50" + }, + { + "msg": "This is a debug message: 51", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "51", + "ansible_loop_var": "item", + "_ansible_item_label": "51" + }, + { + "msg": "This is a debug message: 52", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "52", + "ansible_loop_var": "item", + "_ansible_item_label": "52" + }, + { + "msg": "This is a debug message: 53", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "53", + "ansible_loop_var": "item", + "_ansible_item_label": "53" + }, + { + "msg": "This is a debug message: 54", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "54", + "ansible_loop_var": "item", + "_ansible_item_label": "54" + }, + { + "msg": "This is a debug message: 55", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "55", + "ansible_loop_var": "item", + "_ansible_item_label": "55" + }, + { + "msg": "This is a debug message: 56", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "56", + "ansible_loop_var": "item", + "_ansible_item_label": "56" + }, + { + "msg": "This is a debug message: 57", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "57", + "ansible_loop_var": "item", + "_ansible_item_label": "57" + }, + { + "msg": "This is a debug message: 58", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "58", + "ansible_loop_var": "item", + "_ansible_item_label": "58" + }, + { + "msg": "This is a debug message: 59", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "59", + "ansible_loop_var": "item", + "_ansible_item_label": "59" + }, + { + "msg": "This is a debug message: 60", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "60", + "ansible_loop_var": "item", + "_ansible_item_label": "60" + }, + { + "msg": "This is a debug message: 61", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "61", + "ansible_loop_var": "item", + "_ansible_item_label": "61" + }, + { + "msg": "This is a debug message: 62", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "62", + "ansible_loop_var": "item", + "_ansible_item_label": "62" + }, + { + "msg": "This is a debug message: 63", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "63", + "ansible_loop_var": "item", + "_ansible_item_label": "63" + }, + { + "msg": "This is a debug message: 64", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "64", + "ansible_loop_var": "item", + "_ansible_item_label": "64" + }, + { + "msg": "This is a debug message: 65", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "65", + "ansible_loop_var": "item", + "_ansible_item_label": "65" + }, + { + "msg": "This is a debug message: 66", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "66", + "ansible_loop_var": "item", + "_ansible_item_label": "66" + }, + { + "msg": "This is a debug message: 67", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "67", + "ansible_loop_var": "item", + "_ansible_item_label": "67" + }, + { + "msg": "This is a debug message: 68", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "68", + "ansible_loop_var": "item", + "_ansible_item_label": "68" + }, + { + "msg": "This is a debug message: 69", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "69", + "ansible_loop_var": "item", + "_ansible_item_label": "69" + }, + { + "msg": "This is a debug message: 70", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "70", + "ansible_loop_var": "item", + "_ansible_item_label": "70" + }, + { + "msg": "This is a debug message: 71", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "71", + "ansible_loop_var": "item", + "_ansible_item_label": "71" + }, + { + "msg": "This is a debug message: 72", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "72", + "ansible_loop_var": "item", + "_ansible_item_label": "72" + }, + { + "msg": "This is a debug message: 73", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "73", + "ansible_loop_var": "item", + "_ansible_item_label": "73" + }, + { + "msg": "This is a debug message: 74", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "74", + "ansible_loop_var": "item", + "_ansible_item_label": "74" + }, + { + "msg": "This is a debug message: 75", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "75", + "ansible_loop_var": "item", + "_ansible_item_label": "75" + }, + { + "msg": "This is a debug message: 76", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "76", + "ansible_loop_var": "item", + "_ansible_item_label": "76" + }, + { + "msg": "This is a debug message: 77", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "77", + "ansible_loop_var": "item", + "_ansible_item_label": "77" + }, + { + "msg": "This is a debug message: 78", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "78", + "ansible_loop_var": "item", + "_ansible_item_label": "78" + }, + { + "msg": "This is a debug message: 79", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "79", + "ansible_loop_var": "item", + "_ansible_item_label": "79" + }, + { + "msg": "This is a debug message: 80", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "80", + "ansible_loop_var": "item", + "_ansible_item_label": "80" + }, + { + "msg": "This is a debug message: 81", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "81", + "ansible_loop_var": "item", + "_ansible_item_label": "81" + }, + { + "msg": "This is a debug message: 82", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "82", + "ansible_loop_var": "item", + "_ansible_item_label": "82" + }, + { + "msg": "This is a debug message: 83", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "83", + "ansible_loop_var": "item", + "_ansible_item_label": "83" + }, + { + "msg": "This is a debug message: 84", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "84", + "ansible_loop_var": "item", + "_ansible_item_label": "84" + }, + { + "msg": "This is a debug message: 85", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "85", + "ansible_loop_var": "item", + "_ansible_item_label": "85" + }, + { + "msg": "This is a debug message: 86", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "86", + "ansible_loop_var": "item", + "_ansible_item_label": "86" + }, + { + "msg": "This is a debug message: 87", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "87", + "ansible_loop_var": "item", + "_ansible_item_label": "87" + }, + { + "msg": "This is a debug message: 88", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "88", + "ansible_loop_var": "item", + "_ansible_item_label": "88" + }, + { + "msg": "This is a debug message: 89", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "89", + "ansible_loop_var": "item", + "_ansible_item_label": "89" + }, + { + "msg": "This is a debug message: 90", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "90", + "ansible_loop_var": "item", + "_ansible_item_label": "90" + }, + { + "msg": "This is a debug message: 91", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "91", + "ansible_loop_var": "item", + "_ansible_item_label": "91" + }, + { + "msg": "This is a debug message: 92", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "92", + "ansible_loop_var": "item", + "_ansible_item_label": "92" + }, + { + "msg": "This is a debug message: 93", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "93", + "ansible_loop_var": "item", + "_ansible_item_label": "93" + }, + { + "msg": "This is a debug message: 94", + "_ansible_verbose_always": true, + "failed": false, + "_ansible_no_log": false, + "changed": false, + "item": "94", + "ansible_loop_var": "item", + "_ansible_item_label": "94" + } + ], + "msg": "All items completed", + "changed": false + }, + "start": "2021-01-28T16:17:13.938977", + "end": "2021-01-28T16:17:15.755413", + "duration": 1.816436, + "event_loop": "sequence", + "uuid": "c1e7d3ff-9a53-4ae1-aecf-c1faa4a411c0" + }, + "event_level": 3, + "failed": false, + "changed": false, + "uuid": "c1e7d3ff-9a53-4ae1-aecf-c1faa4a411c0", + "parent_uuid": "0242ac12-0004-20a0-8d35-000000000008", + "host": 1, + "host_name": "localhost", + "playbook": "chatty_tasks.yml", + "play": "all", + "task": "debug", + "role": "", + "stdout": "", + "start_line": 286, + "end_line": 286, + "verbosity": 0 + } ] -}
\ No newline at end of file +} diff --git a/awx/ui_next/src/screens/Job/JobOutput/shared/HostStatusBar.jsx b/awx/ui_next/src/screens/Job/JobOutput/shared/HostStatusBar.jsx index 605419bab1..7f08bd30a0 100644 --- a/awx/ui_next/src/screens/Job/JobOutput/shared/HostStatusBar.jsx +++ b/awx/ui_next/src/screens/Job/JobOutput/shared/HostStatusBar.jsx @@ -8,7 +8,7 @@ const BarWrapper = styled.div` background-color: #d7d7d7; display: flex; height: 5px; - margin: 24px 0; + margin-top: 16px; width: 100%; `; diff --git a/awx/ui_next/src/screens/Job/JobOutput/shared/OutputToolbar.jsx b/awx/ui_next/src/screens/Job/JobOutput/shared/OutputToolbar.jsx index f20bbb3d93..03faba1faa 100644 --- a/awx/ui_next/src/screens/Job/JobOutput/shared/OutputToolbar.jsx +++ b/awx/ui_next/src/screens/Job/JobOutput/shared/OutputToolbar.jsx @@ -2,7 +2,7 @@ import React from 'react'; import styled from 'styled-components'; import { withI18n } from '@lingui/react'; import { t } from '@lingui/macro'; -import { shape, func } from 'prop-types'; +import { bool, shape, func } from 'prop-types'; import { MinusCircleIcon, DownloadIcon, @@ -62,7 +62,14 @@ const OUTPUT_NO_COUNT_JOB_TYPES = [ 'inventory_update', ]; -const OutputToolbar = ({ i18n, job, jobStatus, onDelete, onCancel }) => { +const OutputToolbar = ({ + i18n, + job, + onDelete, + onCancel, + isDeleteDisabled, + jobStatus, +}) => { const hideCounts = OUTPUT_NO_COUNT_JOB_TYPES.includes(job.type); const playCount = job?.playbook_counts?.play_count; @@ -138,13 +145,17 @@ const OutputToolbar = ({ i18n, job, jobStatus, onDelete, onCancel }) => { {job.status === 'failed' && job.type === 'job' ? ( <LaunchButton resource={job}> {({ handleRelaunch }) => ( - <ReLaunchDropDown handleRelaunch={handleRelaunch} /> + <ReLaunchDropDown + handleRelaunch={handleRelaunch} + ouiaId="job-output-relaunch-dropdown" + /> )} </LaunchButton> ) : ( <LaunchButton resource={job}> {({ handleRelaunch }) => ( <Button + ouiaId="job-output-relaunch-button" variant="plain" onClick={handleRelaunch} aria-label={i18n._(t`Relaunch`)} @@ -160,7 +171,11 @@ const OutputToolbar = ({ i18n, job, jobStatus, onDelete, onCancel }) => { {job.related?.stdout && ( <Tooltip content={i18n._(t`Download Output`)}> <a href={`${job.related.stdout}?format=txt_download`}> - <Button variant="plain" aria-label={i18n._(t`Download Output`)}> + <Button + ouiaId="job-output-download-button" + variant="plain" + aria-label={i18n._(t`Download Output`)} + > <DownloadIcon /> </Button> </a> @@ -170,6 +185,7 @@ const OutputToolbar = ({ i18n, job, jobStatus, onDelete, onCancel }) => { ['pending', 'waiting', 'running'].includes(jobStatus) && ( <Tooltip content={i18n._(t`Cancel Job`)}> <Button + ouiaId="job-output-cancel-button" variant="plain" aria-label={i18n._(t`Cancel Job`)} onClick={onCancel} @@ -178,17 +194,18 @@ const OutputToolbar = ({ i18n, job, jobStatus, onDelete, onCancel }) => { </Button> </Tooltip> )} - {job.summary_fields.user_capabilities.delete && ['new', 'successful', 'failed', 'error', 'canceled'].includes( jobStatus ) && ( <Tooltip content={i18n._(t`Delete Job`)}> <DeleteButton + ouiaId="job-output-delete-button" name={job.name} modalTitle={i18n._(t`Delete Job`)} onConfirm={onDelete} variant="plain" + isDisabled={isDeleteDisabled} > <TrashAltIcon /> </DeleteButton> @@ -199,8 +216,13 @@ const OutputToolbar = ({ i18n, job, jobStatus, onDelete, onCancel }) => { }; OutputToolbar.propTypes = { + isDeleteDisabled: bool, job: shape({}).isRequired, onDelete: func.isRequired, }; +OutputToolbar.defaultProps = { + isDeleteDisabled: false, +}; + export default withI18n()(OutputToolbar); diff --git a/awx/ui_next/src/screens/Job/JobOutput/shared/jobOutputUtils.js b/awx/ui_next/src/screens/Job/JobOutput/shared/jobOutputUtils.js new file mode 100644 index 0000000000..cb3e7fb309 --- /dev/null +++ b/awx/ui_next/src/screens/Job/JobOutput/shared/jobOutputUtils.js @@ -0,0 +1,29 @@ +export default function getRowRangePageSize(startIndex, stopIndex) { + let page; + let pageSize; + + if (startIndex === stopIndex) { + page = startIndex + 1; + pageSize = 1; + } else if (stopIndex >= startIndex + 50) { + page = Math.ceil(startIndex / 50); + pageSize = 50; + } else { + for (let i = stopIndex - startIndex + 1; i <= 50; i++) { + if ( + Math.floor(startIndex / i) === Math.floor(stopIndex / i) || + i === 50 + ) { + page = Math.floor(startIndex / i) + 1; + pageSize = i; + break; + } + } + } + + return { + page, + pageSize, + firstIndex: (page - 1) * pageSize, + }; +} diff --git a/awx/ui_next/src/screens/Job/JobOutput/shared/jobOutputUtils.test.jsx b/awx/ui_next/src/screens/Job/JobOutput/shared/jobOutputUtils.test.jsx new file mode 100644 index 0000000000..2c06e347ba --- /dev/null +++ b/awx/ui_next/src/screens/Job/JobOutput/shared/jobOutputUtils.test.jsx @@ -0,0 +1,32 @@ +import getRowRangePageSize from './jobOutputUtils'; + +describe('getRowRangePageSize', () => { + test('handles range of 1', () => { + expect(getRowRangePageSize(1, 1)).toEqual({ + page: 2, + pageSize: 1, + firstIndex: 1, + }); + }); + test('handles range larger than 50 rows', () => { + expect(getRowRangePageSize(55, 125)).toEqual({ + page: 2, + pageSize: 50, + firstIndex: 50, + }); + }); + test('handles small range', () => { + expect(getRowRangePageSize(47, 53)).toEqual({ + page: 6, + pageSize: 9, + firstIndex: 45, + }); + }); + test('handles perfect range', () => { + expect(getRowRangePageSize(5, 9)).toEqual({ + page: 2, + pageSize: 5, + firstIndex: 5, + }); + }); +}); diff --git a/awx/ui_next/src/util/jobs.js b/awx/ui_next/src/util/jobs.js new file mode 100644 index 0000000000..e4129388a5 --- /dev/null +++ b/awx/ui_next/src/util/jobs.js @@ -0,0 +1,3 @@ +export default function isJobRunning(status) { + return ['new', 'pending', 'waiting', 'running'].includes(status); +} diff --git a/awx/ui_next/src/util/jobs.test.js b/awx/ui_next/src/util/jobs.test.js new file mode 100644 index 0000000000..953b06ba17 --- /dev/null +++ b/awx/ui_next/src/util/jobs.test.js @@ -0,0 +1,25 @@ +import isJobRunning from './jobs'; + +describe('isJobRunning', () => { + test('should return true for new', () => { + expect(isJobRunning('new')).toBe(true); + }); + test('should return true for pending', () => { + expect(isJobRunning('pending')).toBe(true); + }); + test('should return true for waiting', () => { + expect(isJobRunning('waiting')).toBe(true); + }); + test('should return true for running', () => { + expect(isJobRunning('running')).toBe(true); + }); + test('should return false for canceled', () => { + expect(isJobRunning('canceled')).toBe(false); + }); + test('should return false for successful', () => { + expect(isJobRunning('successful')).toBe(false); + }); + test('should return false for failed', () => { + expect(isJobRunning('failed')).toBe(false); + }); +}); |