From 34f754655e6112a59e2be785111368394bed55e5 Mon Sep 17 00:00:00 2001 From: Bill Wei Date: Wed, 3 May 2023 15:03:33 -0400 Subject: [PATCH] Pulling job instead of job_events to get job status We no longer need to log job events. Therefore pulling job for status is much faster than parsing status from job events. Fixes AAP-11677:EDA should not hit job_events endpoint on controller jobs --- ansible_rulebook/builtin.py | 22 - ansible_rulebook/job_template_runner.py | 34 +- tests/cassettes/test_job_template.yaml | 5425 +---------------------- 3 files changed, 118 insertions(+), 5363 deletions(-) diff --git a/ansible_rulebook/builtin.py b/ansible_rulebook/builtin.py index 5bc3364d..2ef82d97 100644 --- a/ansible_rulebook/builtin.py +++ b/ansible_rulebook/builtin.py @@ -771,28 +771,6 @@ async def run_job_template( ) ) - async def event_callback(event: dict) -> None: - await event_log.put( - { - "type": "AnsibleEvent", - "event": { - "uuid": event["uuid"], - "counter": event["counter"], - "stdout": event["stdout"], - "start_line": event["start_line"], - "end_line": event["end_line"], - "event": event["event"], - "created": event["created"], - "parent_uuid": event["parent_uuid"], - "event_data": event["event_data"], - "job_id": job_id, - "controller_job_id": event["job"], - "ansible_rulebook_id": settings.identifier, - }, - "run_at": event["created"], - } - ) - if retry: retries = max(retries, 1) diff --git a/ansible_rulebook/job_template_runner.py b/ansible_rulebook/job_template_runner.py index 26a6b13f..d1ae3797 100644 --- a/ansible_rulebook/job_template_runner.py +++ b/ansible_rulebook/job_template_runner.py @@ -18,8 +18,8 @@ import os import ssl from functools import cached_property -from typing import Any, Callable, Union -from urllib.parse import parse_qsl, urljoin, urlparse +from typing import Union +from urllib.parse import urljoin import aiohttp import dpath @@ -114,42 +114,22 @@ async def run_job_template( name: str, organization: str, job_params: dict, - event_handler: Union[Callable[[dict], Any], None] = None, ) -> dict: job = await self.launch(name, organization, job_params) - url_info = urlparse(job["url"]) - url = f"{url_info.path}job_events/" - counters = [] - params = dict(parse_qsl(url_info.query)) + url = job["url"] + params = {} async with aiohttp.ClientSession( headers=self._auth_headers() ) as session: while True: - # fetch and process job events + # fetch and process job status response = await self._get_page(session, url, params) json_body = json.loads(response["body"]) - job_status = None - for event in json_body["results"]: - job_status = dpath.get( - event, "summary_fields.job.status", "." - ) - counter = event["counter"] - if counter not in counters: - counters.append(counter) - logger.debug(event["stdout"]) - if event_handler: - await event_handler(event) - - if json_body.get("next", None): - params["page"] = params.get("page", 1) + 1 - continue - + job_status = json_body["status"] if job_status in self.JOB_COMPLETION_STATUSES: - # fetch and return job object containing artifacts - response = await self._get_page(session, url_info.path, {}) - return json.loads(response["body"]) + return json_body await asyncio.sleep(self.refresh_delay) diff --git a/tests/cassettes/test_job_template.yaml b/tests/cassettes/test_job_template.yaml index 1929b111..d0ac637f 100644 --- a/tests/cassettes/test_job_template.yaml +++ b/tests/cassettes/test_job_template.yaml @@ -8,19 +8,16 @@ interactions: uri: https://examples.com/api/v2/job_templates/?name=Hello+World response: body: - string: "{\"count\":2,\"next\":null,\"previous\":null,\"results\":[{\"id\":9,\"type\":\"job_template\",\"url\":\"/api/v2/job_templates/9/\",\"related\":{\"created_by\":\"/api/v2/users/1/\",\"modified_by\":\"/api/v2/users/1/\",\"labels\":\"/api/v2/job_templates/9/labels/\",\"inventory\":\"/api/v2/inventories/1/\",\"project\":\"/api/v2/projects/8/\",\"organization\":\"/api/v2/organizations/1/\",\"credentials\":\"/api/v2/job_templates/9/credentials/\",\"last_job\":\"/api/v2/jobs/1090/\",\"jobs\":\"/api/v2/job_templates/9/jobs/\",\"schedules\":\"/api/v2/job_templates/9/schedules/\",\"activity_stream\":\"/api/v2/job_templates/9/activity_stream/\",\"launch\":\"/api/v2/job_templates/9/launch/\",\"webhook_key\":\"/api/v2/job_templates/9/webhook_key/\",\"webhook_receiver\":\"\",\"notification_templates_started\":\"/api/v2/job_templates/9/notification_templates_started/\",\"notification_templates_success\":\"/api/v2/job_templates/9/notification_templates_success/\",\"notification_templates_error\":\"/api/v2/job_templates/9/notification_templates_error/\",\"access_list\":\"/api/v2/job_templates/9/access_list/\",\"survey_spec\":\"/api/v2/job_templates/9/survey_spec/\",\"object_roles\":\"/api/v2/job_templates/9/object_roles/\",\"instance_groups\":\"/api/v2/job_templates/9/instance_groups/\",\"slice_workflow_jobs\":\"/api/v2/job_templates/9/slice_workflow_jobs/\",\"copy\":\"/api/v2/job_templates/9/copy/\"},\"summary_fields\":{\"organization\":{\"id\":1,\"name\":\"Default\",\"description\":\"\"},\"inventory\":{\"id\":1,\"name\":\"Demo - Inventory\",\"description\":\"\",\"has_active_failures\":false,\"total_hosts\":1,\"hosts_with_active_failures\":0,\"total_groups\":0,\"has_inventory_sources\":false,\"total_inventory_sources\":0,\"inventory_sources_with_failures\":0,\"organization_id\":1,\"kind\":\"\"},\"project\":{\"id\":8,\"name\":\"mkanoor\",\"description\":\"mkanoor\",\"status\":\"successful\",\"scm_type\":\"git\",\"allow_override\":false},\"last_job\":{\"id\":1090,\"name\":\"Hello - World\",\"description\":\"Hello World 490\",\"finished\":\"2023-04-17T17:46:17.378778Z\",\"status\":\"successful\",\"failed\":false},\"last_update\":{\"id\":1090,\"name\":\"Hello - World\",\"description\":\"Hello World 490\",\"status\":\"successful\",\"failed\":false},\"created_by\":{\"id\":1,\"username\":\"admin\",\"first_name\":\"\",\"last_name\":\"\"},\"modified_by\":{\"id\":1,\"username\":\"admin\",\"first_name\":\"\",\"last_name\":\"\"},\"object_roles\":{\"admin_role\":{\"description\":\"Can - manage all aspects of the job template\",\"name\":\"Admin\",\"id\":41},\"execute_role\":{\"description\":\"May - run the job template\",\"name\":\"Execute\",\"id\":42},\"read_role\":{\"description\":\"May - view settings for the job template\",\"name\":\"Read\",\"id\":43}},\"user_capabilities\":{\"edit\":true,\"delete\":true,\"start\":true,\"schedule\":true,\"copy\":true},\"labels\":{\"count\":0,\"results\":[]},\"survey\":{\"title\":\"exam\",\"description\":\"ResidentStartCareReasonKickIncreaseMakeSkillTowelSoup\uFFFD\"},\"recent_jobs\":[{\"id\":1090,\"status\":\"successful\",\"finished\":\"2023-04-17T17:46:17.378778Z\",\"canceled_on\":null,\"type\":\"job\"},{\"id\":1089,\"status\":\"successful\",\"finished\":\"2023-04-17T17:45:18.565439Z\",\"canceled_on\":null,\"type\":\"job\"},{\"id\":1088,\"status\":\"successful\",\"finished\":\"2023-04-17T17:43:54.247403Z\",\"canceled_on\":null,\"type\":\"job\"},{\"id\":1087,\"status\":\"successful\",\"finished\":\"2023-04-17T17:43:43.955850Z\",\"canceled_on\":null,\"type\":\"job\"},{\"id\":1086,\"status\":\"successful\",\"finished\":\"2023-04-17T17:43:33.421700Z\",\"canceled_on\":null,\"type\":\"job\"},{\"id\":1082,\"status\":\"successful\",\"finished\":\"2023-04-17T17:07:52.557917Z\",\"canceled_on\":null,\"type\":\"job\"},{\"id\":1080,\"status\":\"successful\",\"finished\":\"2023-04-17T16:24:18.413605Z\",\"canceled_on\":null,\"type\":\"job\"},{\"id\":1079,\"status\":\"successful\",\"finished\":\"2023-04-17T16:24:08.648747Z\",\"canceled_on\":null,\"type\":\"job\"},{\"id\":1078,\"status\":\"successful\",\"finished\":\"2023-04-17T16:23:56.613290Z\",\"canceled_on\":null,\"type\":\"job\"},{\"id\":1074,\"status\":\"successful\",\"finished\":\"2023-04-17T14:03:32.747216Z\",\"canceled_on\":null,\"type\":\"job\"}],\"credentials\":[]},\"created\":\"2021-12-13T16:23:41.200803Z\",\"modified\":\"2022-01-05T19:56:32.850511Z\",\"name\":\"Hello - World\",\"description\":\"Hello World 490\",\"job_type\":\"run\",\"inventory\":1,\"project\":8,\"playbook\":\"hello_world.yml\",\"scm_branch\":\"\",\"forks\":0,\"limit\":\"\",\"verbosity\":0,\"extra_vars\":\"---\",\"job_tags\":\"\",\"force_handlers\":false,\"skip_tags\":\"\",\"start_at_task\":\"\",\"timeout\":0,\"use_fact_cache\":false,\"organization\":1,\"last_job_run\":\"2023-04-17T17:46:17.378778Z\",\"last_job_failed\":false,\"next_job_run\":null,\"status\":\"successful\",\"execution_environment\":null,\"host_config_key\":\"\",\"ask_scm_branch_on_launch\":false,\"ask_diff_mode_on_launch\":false,\"ask_variables_on_launch\":false,\"ask_limit_on_launch\":false,\"ask_tags_on_launch\":false,\"ask_skip_tags_on_launch\":false,\"ask_job_type_on_launch\":false,\"ask_verbosity_on_launch\":false,\"ask_inventory_on_launch\":false,\"ask_credential_on_launch\":false,\"survey_enabled\":true,\"become_enabled\":false,\"diff_mode\":false,\"allow_simultaneous\":false,\"custom_virtualenv\":null,\"job_slice_count\":1,\"webhook_service\":\"\",\"webhook_credential\":null},{\"id\":12,\"type\":\"job_template\",\"url\":\"/api/v2/job_templates/12/\",\"related\":{\"created_by\":\"/api/v2/users/1/\",\"modified_by\":\"/api/v2/users/1/\",\"labels\":\"/api/v2/job_templates/12/labels/\",\"inventory\":\"/api/v2/inventories/1/\",\"project\":\"/api/v2/projects/8/\",\"organization\":\"/api/v2/organizations/1/\",\"credentials\":\"/api/v2/job_templates/12/credentials/\",\"jobs\":\"/api/v2/job_templates/12/jobs/\",\"schedules\":\"/api/v2/job_templates/12/schedules/\",\"activity_stream\":\"/api/v2/job_templates/12/activity_stream/\",\"launch\":\"/api/v2/job_templates/12/launch/\",\"webhook_key\":\"/api/v2/job_templates/12/webhook_key/\",\"webhook_receiver\":\"\",\"notification_templates_started\":\"/api/v2/job_templates/12/notification_templates_started/\",\"notification_templates_success\":\"/api/v2/job_templates/12/notification_templates_success/\",\"notification_templates_error\":\"/api/v2/job_templates/12/notification_templates_error/\",\"access_list\":\"/api/v2/job_templates/12/access_list/\",\"survey_spec\":\"/api/v2/job_templates/12/survey_spec/\",\"object_roles\":\"/api/v2/job_templates/12/object_roles/\",\"instance_groups\":\"/api/v2/job_templates/12/instance_groups/\",\"slice_workflow_jobs\":\"/api/v2/job_templates/12/slice_workflow_jobs/\",\"copy\":\"/api/v2/job_templates/12/copy/\"},\"summary_fields\":{\"organization\":{\"id\":1,\"name\":\"Default\",\"description\":\"\"},\"inventory\":{\"id\":1,\"name\":\"Demo - Inventory\",\"description\":\"\",\"has_active_failures\":false,\"total_hosts\":1,\"hosts_with_active_failures\":0,\"total_groups\":0,\"has_inventory_sources\":false,\"total_inventory_sources\":0,\"inventory_sources_with_failures\":0,\"organization_id\":1,\"kind\":\"\"},\"project\":{\"id\":8,\"name\":\"mkanoor\",\"description\":\"mkanoor\",\"status\":\"successful\",\"scm_type\":\"git\",\"allow_override\":false},\"created_by\":{\"id\":1,\"username\":\"admin\",\"first_name\":\"\",\"last_name\":\"\"},\"modified_by\":{\"id\":1,\"username\":\"admin\",\"first_name\":\"\",\"last_name\":\"\"},\"object_roles\":{\"admin_role\":{\"description\":\"Can - manage all aspects of the job template\",\"name\":\"Admin\",\"id\":50},\"execute_role\":{\"description\":\"May - run the job template\",\"name\":\"Execute\",\"id\":51},\"read_role\":{\"description\":\"May - view settings for the job template\",\"name\":\"Read\",\"id\":52}},\"user_capabilities\":{\"edit\":true,\"delete\":true,\"start\":true,\"schedule\":true,\"copy\":true},\"labels\":{\"count\":0,\"results\":[]},\"recent_jobs\":[],\"credentials\":[]},\"created\":\"2021-12-13T16:32:30.751129Z\",\"modified\":\"2021-12-13T16:32:30.751153Z\",\"name\":\"Hello - World No Survey\",\"description\":\"\",\"job_type\":\"run\",\"inventory\":1,\"project\":8,\"playbook\":\"hello_world.yml\",\"scm_branch\":\"\",\"forks\":0,\"limit\":\"\",\"verbosity\":0,\"extra_vars\":\"---\",\"job_tags\":\"\",\"force_handlers\":false,\"skip_tags\":\"\",\"start_at_task\":\"\",\"timeout\":0,\"use_fact_cache\":false,\"organization\":1,\"last_job_run\":\"2022-06-22T19:09:57.786737Z\",\"last_job_failed\":false,\"next_job_run\":null,\"status\":\"successful\",\"execution_environment\":null,\"host_config_key\":\"\",\"ask_scm_branch_on_launch\":false,\"ask_diff_mode_on_launch\":false,\"ask_variables_on_launch\":false,\"ask_limit_on_launch\":false,\"ask_tags_on_launch\":false,\"ask_skip_tags_on_launch\":false,\"ask_job_type_on_launch\":false,\"ask_verbosity_on_launch\":false,\"ask_inventory_on_launch\":false,\"ask_credential_on_launch\":false,\"survey_enabled\":false,\"become_enabled\":false,\"diff_mode\":false,\"allow_simultaneous\":false,\"custom_virtualenv\":null,\"job_slice_count\":1,\"webhook_service\":\"\",\"webhook_credential\":null}]}" + string: '{"count":1,"next":null,"previous":null,"results":[{"id":7,"type":"job_template","url":"/api/v2/job_templates/7/","related":{"created_by":"/api/v2/users/1/","modified_by":"/api/v2/users/1/","labels":"/api/v2/job_templates/7/labels/","inventory":"/api/v2/inventories/1/","project":"/api/v2/projects/6/","organization":"/api/v2/organizations/1/","credentials":"/api/v2/job_templates/7/credentials/","last_job":"/api/v2/jobs/145/","jobs":"/api/v2/job_templates/7/jobs/","schedules":"/api/v2/job_templates/7/schedules/","activity_stream":"/api/v2/job_templates/7/activity_stream/","launch":"/api/v2/job_templates/7/launch/","webhook_key":"/api/v2/job_templates/7/webhook_key/","webhook_receiver":"","notification_templates_started":"/api/v2/job_templates/7/notification_templates_started/","notification_templates_success":"/api/v2/job_templates/7/notification_templates_success/","notification_templates_error":"/api/v2/job_templates/7/notification_templates_error/","access_list":"/api/v2/job_templates/7/access_list/","survey_spec":"/api/v2/job_templates/7/survey_spec/","object_roles":"/api/v2/job_templates/7/object_roles/","instance_groups":"/api/v2/job_templates/7/instance_groups/","slice_workflow_jobs":"/api/v2/job_templates/7/slice_workflow_jobs/","copy":"/api/v2/job_templates/7/copy/"},"summary_fields":{"organization":{"id":1,"name":"Default","description":""},"inventory":{"id":1,"name":"Demo + Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0,"organization_id":1,"kind":""},"project":{"id":6,"name":"Demo + Project","description":"","status":"successful","scm_type":"git","allow_override":false},"last_job":{"id":145,"name":"Hello + World","description":"","finished":"2023-05-03T18:53:06.894495Z","status":"successful","failed":false},"last_update":{"id":145,"name":"Hello + World","description":"","status":"successful","failed":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","name":"Admin","id":31},"execute_role":{"description":"May + run the job template","name":"Execute","id":32},"read_role":{"description":"May + view settings for the job template","name":"Read","id":33}},"user_capabilities":{"edit":true,"delete":true,"start":true,"schedule":true,"copy":true},"labels":{"count":0,"results":[]},"recent_jobs":[{"id":145,"status":"successful","finished":"2023-05-03T18:53:06.894495Z","canceled_on":null,"type":"job"},{"id":144,"status":"successful","finished":"2023-05-03T18:50:49.332330Z","canceled_on":null,"type":"job"},{"id":139,"status":"successful","finished":"2023-01-05T14:55:42.054620Z","canceled_on":null,"type":"job"},{"id":136,"status":"successful","finished":"2023-01-04T21:59:59.243420Z","canceled_on":null,"type":"job"},{"id":135,"status":"successful","finished":"2022-12-20T15:12:53.506501Z","canceled_on":null,"type":"job"},{"id":134,"status":"successful","finished":"2022-12-20T15:07:21.029528Z","canceled_on":null,"type":"job"},{"id":133,"status":"successful","finished":"2022-12-20T14:53:35.210208Z","canceled_on":null,"type":"job"},{"id":100,"status":"successful","finished":"2022-12-20T14:53:09.225410Z","canceled_on":null,"type":"job"},{"id":67,"status":"error","finished":"2022-12-20T14:42:44.967517Z","canceled_on":null,"type":"job"},{"id":66,"status":"successful","finished":"2022-12-19T21:32:48.801465Z","canceled_on":null,"type":"job"}],"credentials":[{"id":1,"name":"Demo + Credential","description":"","kind":"ssh","cloud":false}]},"created":"2022-11-17T14:50:12.370343Z","modified":"2023-05-03T18:48:45.915165Z","name":"Hello + World","description":"","job_type":"run","inventory":1,"project":6,"playbook":"hello_world.yml","scm_branch":"","forks":0,"limit":"","verbosity":0,"extra_vars":"---","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","timeout":0,"use_fact_cache":false,"organization":1,"last_job_run":"2023-05-03T18:53:06.894495Z","last_job_failed":false,"next_job_run":null,"status":"successful","execution_environment":null,"host_config_key":"","ask_scm_branch_on_launch":false,"ask_diff_mode_on_launch":false,"ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_skip_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_verbosity_on_launch":false,"ask_inventory_on_launch":false,"ask_credential_on_launch":false,"ask_execution_environment_on_launch":false,"ask_labels_on_launch":false,"ask_forks_on_launch":false,"ask_job_slice_count_on_launch":false,"ask_timeout_on_launch":false,"ask_instance_groups_on_launch":false,"survey_enabled":true,"become_enabled":false,"diff_mode":false,"allow_simultaneous":false,"custom_virtualenv":null,"job_slice_count":1,"webhook_service":"","webhook_credential":null,"prevent_instance_group_fallback":false}]}' headers: Access-Control-Expose-Headers: - X-API-Request-Id @@ -33,31 +30,35 @@ interactions: Content-Language: - en Content-Length: - - '8205' + - '5012' Content-Type: - application/json Date: - - Mon, 17 Apr 2023 18:05:32 GMT + - Wed, 03 May 2023 18:55:04 GMT Expires: - '0' Pragma: - no-cache Server: - nginx + Strict-Transport-Security: + - max-age=15768000 Vary: - Accept, Accept-Language, Origin, Cookie X-API-Node: - - localhost + - awx1-b89c6f9fd-4h9lr X-API-Product-Name: - - Red Hat Ansible Automation Platform + - AWX X-API-Product-Version: - - 4.1.0 + - 21.8.0 X-API-Request-Id: - - cea6f4f1fb564a7387d5291e2e23604c + - bd8ae0932b1f48b0a7112bac75d81f21 X-API-Time: - - 0.066s + - 0.110s X-API-Total-Time: - - 0.107s + - 0.188s + X-Content-Type-Options: + - nosniff X-Frame-Options: - DENY status: @@ -70,15 +71,15 @@ interactions: authorization: - Bearer DUMMY method: POST - uri: https://examples.com/api/v2/job_templates/9/launch/ + uri: https://examples.com/api/v2/job_templates/7/launch/ response: body: - string: '{"job":1091,"ignored_fields":{},"id":1091,"type":"job","url":"/api/v2/jobs/1091/","related":{"created_by":"/api/v2/users/1/","modified_by":"/api/v2/users/1/","labels":"/api/v2/jobs/1091/labels/","inventory":"/api/v2/inventories/1/","project":"/api/v2/projects/8/","organization":"/api/v2/organizations/1/","credentials":"/api/v2/jobs/1091/credentials/","unified_job_template":"/api/v2/job_templates/9/","stdout":"/api/v2/jobs/1091/stdout/","job_events":"/api/v2/jobs/1091/job_events/","job_host_summaries":"/api/v2/jobs/1091/job_host_summaries/","activity_stream":"/api/v2/jobs/1091/activity_stream/","notifications":"/api/v2/jobs/1091/notifications/","create_schedule":"/api/v2/jobs/1091/create_schedule/","job_template":"/api/v2/job_templates/9/","cancel":"/api/v2/jobs/1091/cancel/","relaunch":"/api/v2/jobs/1091/relaunch/"},"summary_fields":{"organization":{"id":1,"name":"Default","description":""},"inventory":{"id":1,"name":"Demo - Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0,"organization_id":1,"kind":""},"project":{"id":8,"name":"mkanoor","description":"mkanoor","status":"successful","scm_type":"git","allow_override":false},"job_template":{"id":9,"name":"Hello - World","description":"Hello World 490"},"unified_job_template":{"id":9,"name":"Hello - World","description":"Hello World 490","unified_job_type":"job"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"user_capabilities":{"delete":true,"start":true},"labels":{"count":0,"results":[]},"credentials":[]},"created":"2023-04-17T18:05:32.858159Z","modified":"2023-04-17T18:05:32.884913Z","name":"Hello - World","description":"Hello World 490","job_type":"run","inventory":1,"project":8,"playbook":"hello_world.yml","scm_branch":"","forks":0,"limit":"","verbosity":0,"extra_vars":"{\"secret\": - \"$encrypted$\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","timeout":0,"use_fact_cache":false,"organization":1,"unified_job_template":9,"launch_type":"manual","status":"pending","execution_environment":null,"failed":false,"started":null,"finished":null,"canceled_on":null,"elapsed":0.0,"job_args":"","job_cwd":"","job_env":{},"job_explanation":"","execution_node":"","controller_node":"","result_traceback":"","event_processing_finished":false,"launched_by":{"id":1,"name":"admin","type":"user","url":"/api/v2/users/1/"},"work_unit_id":null,"job_template":9,"passwords_needed_to_start":[],"allow_simultaneous":false,"artifacts":{},"scm_revision":"","instance_group":null,"diff_mode":false,"job_slice_number":0,"job_slice_count":1,"webhook_service":"","webhook_credential":null,"webhook_guid":""}' + string: '{"job":146,"ignored_fields":{},"id":146,"type":"job","url":"/api/v2/jobs/146/","related":{"created_by":"/api/v2/users/1/","modified_by":"/api/v2/users/1/","labels":"/api/v2/jobs/146/labels/","inventory":"/api/v2/inventories/1/","project":"/api/v2/projects/6/","organization":"/api/v2/organizations/1/","credentials":"/api/v2/jobs/146/credentials/","unified_job_template":"/api/v2/job_templates/7/","stdout":"/api/v2/jobs/146/stdout/","job_events":"/api/v2/jobs/146/job_events/","job_host_summaries":"/api/v2/jobs/146/job_host_summaries/","activity_stream":"/api/v2/jobs/146/activity_stream/","notifications":"/api/v2/jobs/146/notifications/","create_schedule":"/api/v2/jobs/146/create_schedule/","job_template":"/api/v2/job_templates/7/","cancel":"/api/v2/jobs/146/cancel/","relaunch":"/api/v2/jobs/146/relaunch/"},"summary_fields":{"organization":{"id":1,"name":"Default","description":""},"inventory":{"id":1,"name":"Demo + Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0,"organization_id":1,"kind":""},"project":{"id":6,"name":"Demo + Project","description":"","status":"successful","scm_type":"git","allow_override":false},"job_template":{"id":7,"name":"Hello + World","description":""},"unified_job_template":{"id":7,"name":"Hello World","description":"","unified_job_type":"job"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"user_capabilities":{"delete":true,"start":true},"labels":{"count":0,"results":[]},"credentials":[{"id":1,"name":"Demo + Credential","description":"","kind":"ssh","cloud":false}]},"created":"2023-05-03T18:55:04.470052Z","modified":"2023-05-03T18:55:04.510245Z","name":"Hello + World","description":"","job_type":"run","inventory":1,"project":6,"playbook":"hello_world.yml","scm_branch":"","forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","timeout":0,"use_fact_cache":false,"organization":1,"unified_job_template":7,"launch_type":"manual","status":"pending","execution_environment":null,"failed":false,"started":null,"finished":null,"canceled_on":null,"elapsed":0.0,"job_args":"","job_cwd":"","job_env":{},"job_explanation":"","execution_node":"","controller_node":"","result_traceback":"","event_processing_finished":false,"launched_by":{"id":1,"name":"admin","type":"user","url":"/api/v2/users/1/"},"work_unit_id":null,"job_template":7,"passwords_needed_to_start":[],"allow_simultaneous":false,"artifacts":{},"scm_revision":"","instance_group":null,"diff_mode":false,"job_slice_number":0,"job_slice_count":1,"webhook_service":"","webhook_credential":null,"webhook_guid":""}' headers: Access-Control-Expose-Headers: - X-API-Request-Id @@ -91,5214 +92,63 @@ interactions: Content-Language: - en Content-Length: - - '2846' + - '2836' Content-Type: - application/json Date: - - Mon, 17 Apr 2023 18:05:33 GMT + - Wed, 03 May 2023 18:55:04 GMT Expires: - '0' Location: - - /api/v2/jobs/1091/ + - /api/v2/jobs/146/ Pragma: - no-cache Server: - nginx + Strict-Transport-Security: + - max-age=15768000 Vary: - Accept, Accept-Language, Origin, Cookie X-API-Node: - - localhost + - awx1-b89c6f9fd-4h9lr X-API-Product-Name: - - Red Hat Ansible Automation Platform + - AWX X-API-Product-Version: - - 4.1.0 + - 21.8.0 X-API-Request-Id: - - 184a46adb4ac4270ae0a0c9e531ee6b2 + - 5a3285a3a3f54034b705e2d4e0eeb830 X-API-Time: - - 0.118s + - 0.174s X-API-Total-Time: - - 0.250s + - 0.346s + X-Content-Type-Options: + - nosniff X-Frame-Options: - DENY status: code: 201 message: Created - url: https://examples.com/api/v2/job_templates/9/launch/ + url: https://examples.com/api/v2/job_templates/7/launch/ - request: body: null headers: authorization: - Bearer DUMMY method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ + uri: https://examples.com/api/v2/jobs/146/ response: body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' + string: '{"id":146,"type":"job","url":"/api/v2/jobs/146/","related":{"created_by":"/api/v2/users/1/","modified_by":"/api/v2/users/1/","labels":"/api/v2/jobs/146/labels/","inventory":"/api/v2/inventories/1/","project":"/api/v2/projects/6/","organization":"/api/v2/organizations/1/","credentials":"/api/v2/jobs/146/credentials/","unified_job_template":"/api/v2/job_templates/7/","stdout":"/api/v2/jobs/146/stdout/","job_events":"/api/v2/jobs/146/job_events/","job_host_summaries":"/api/v2/jobs/146/job_host_summaries/","activity_stream":"/api/v2/jobs/146/activity_stream/","notifications":"/api/v2/jobs/146/notifications/","create_schedule":"/api/v2/jobs/146/create_schedule/","job_template":"/api/v2/job_templates/7/","cancel":"/api/v2/jobs/146/cancel/","relaunch":"/api/v2/jobs/146/relaunch/"},"summary_fields":{"organization":{"id":1,"name":"Default","description":""},"inventory":{"id":1,"name":"Demo + Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0,"organization_id":1,"kind":""},"project":{"id":6,"name":"Demo + Project","description":"","status":"successful","scm_type":"git","allow_override":false},"job_template":{"id":7,"name":"Hello + World","description":""},"unified_job_template":{"id":7,"name":"Hello World","description":"","unified_job_type":"job"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"user_capabilities":{"delete":true,"start":true},"labels":{"count":0,"results":[]},"credentials":[{"id":1,"name":"Demo + Credential","description":"","kind":"ssh","cloud":false}]},"created":"2023-05-03T18:55:04.470052Z","modified":"2023-05-03T18:55:04.470063Z","name":"Hello + World","description":"","job_type":"run","inventory":1,"project":6,"playbook":"hello_world.yml","scm_branch":"","forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","timeout":0,"use_fact_cache":false,"organization":1,"unified_job_template":7,"launch_type":"manual","status":"pending","execution_environment":null,"failed":false,"started":null,"finished":null,"canceled_on":null,"elapsed":0.0,"job_args":"","job_cwd":"","job_env":{},"job_explanation":"","execution_node":"","controller_node":"","result_traceback":"","event_processing_finished":false,"launched_by":{"id":1,"name":"admin","type":"user","url":"/api/v2/users/1/"},"work_unit_id":null,"job_template":7,"passwords_needed_to_start":[],"allow_simultaneous":false,"artifacts":{},"scm_revision":"","instance_group":null,"diff_mode":false,"job_slice_number":0,"job_slice_count":1,"webhook_service":"","webhook_credential":null,"webhook_guid":"","host_status_counts":null,"playbook_counts":{"play_count":0,"task_count":0},"custom_virtualenv":null}' headers: Access-Control-Expose-Headers: - X-API-Request-Id Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:33 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - cfd8835301ce46918251f62e35e0fe0c - X-API-Time: - - 0.016s - X-API-Total-Time: - - 0.055s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:33 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 9b44ff6dc8c842cb9640b141e7e8609f - X-API-Time: - - 0.019s - X-API-Total-Time: - - 0.064s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:33 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 4be17ac6b0384ed89bca84220fa6527f - X-API-Time: - - 0.017s - X-API-Total-Time: - - 0.054s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:33 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 480e17f4aea24414bddc7522347ae1b2 - X-API-Time: - - 0.021s - X-API-Total-Time: - - 0.061s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:33 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - b25c6b842b404a0897355695a5e57ee4 - X-API-Time: - - 0.018s - X-API-Total-Time: - - 0.057s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:33 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 331371e660994350b764d672b89c6f53 - X-API-Time: - - 0.027s - X-API-Total-Time: - - 0.067s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:33 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - c9799d801d1e47729f9e8c68bd650603 - X-API-Time: - - 0.040s - X-API-Total-Time: - - 0.096s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:33 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 207cad62cafc4945831bf77b8c739054 - X-API-Time: - - 0.021s - X-API-Total-Time: - - 0.064s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:34 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 326ca24e322146f29808c3cc6dd675b8 - X-API-Time: - - 0.018s - X-API-Total-Time: - - 0.058s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:34 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 293e288d7f2a4727a4896afd4abc585b - X-API-Time: - - 0.018s - X-API-Total-Time: - - 0.060s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:34 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 57def0205ecb4dc4aeb515ec7a3f00e0 - X-API-Time: - - 0.018s - X-API-Total-Time: - - 0.056s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:34 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 2fb934bc204f47f28ce1cae2728683e4 - X-API-Time: - - 0.020s - X-API-Total-Time: - - 0.060s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:34 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - b69fb05572df4e779c99dac3320bd557 - X-API-Time: - - 0.016s - X-API-Total-Time: - - 0.056s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:34 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 895cd21711b34ca9923ea975ec873854 - X-API-Time: - - 0.017s - X-API-Total-Time: - - 0.054s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:34 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 1caab017b325499b84c613a0318db864 - X-API-Time: - - 0.020s - X-API-Total-Time: - - 0.062s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:34 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 094f0dbff6f2436d99c6cf2960634ca2 - X-API-Time: - - 0.021s - X-API-Total-Time: - - 0.065s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:34 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 3f19eba417704533aa6e186dc2a03a94 - X-API-Time: - - 0.019s - X-API-Total-Time: - - 0.068s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:34 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 67d1111ce6874de6a2171fbaad9db09a - X-API-Time: - - 0.024s - X-API-Total-Time: - - 0.068s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:34 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 6fff38d2536d47b6ad57f30d66d413f2 - X-API-Time: - - 0.016s - X-API-Total-Time: - - 0.054s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:35 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 21e06e4de289445db0c06ddc503814d4 - X-API-Time: - - 0.021s - X-API-Total-Time: - - 0.062s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:35 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 8363ff2ca0bf4a94aff2d0c8a45dc3fb - X-API-Time: - - 0.018s - X-API-Total-Time: - - 0.057s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:35 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - beba074e10b544f29384e452b532fd8c - X-API-Time: - - 0.024s - X-API-Total-Time: - - 0.070s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:35 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 34a4bc747c6a4544b87d8c5160ce9c82 - X-API-Time: - - 0.020s - X-API-Total-Time: - - 0.059s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:35 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 1e17e604c37f46f89c3b94e8f7f5f7e8 - X-API-Time: - - 0.017s - X-API-Total-Time: - - 0.056s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:35 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 8d65bddb935944eca2173278f05cb8d2 - X-API-Time: - - 0.017s - X-API-Total-Time: - - 0.056s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:35 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - f1a766d3aa82452f89805e8c28d4d055 - X-API-Time: - - 0.019s - X-API-Total-Time: - - 0.058s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:35 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 974973a0c06f4fcfae187870b8f47064 - X-API-Time: - - 0.018s - X-API-Total-Time: - - 0.058s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:35 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 590442ba4fd049fcb40b276135d7c557 - X-API-Time: - - 0.021s - X-API-Total-Time: - - 0.061s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:35 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 2d9a339831ba46e2969d852c8f6661bf - X-API-Time: - - 0.019s - X-API-Total-Time: - - 0.060s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:36 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 96e84e9a2c744bbb864451cec6070d23 - X-API-Time: - - 0.018s - X-API-Total-Time: - - 0.061s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:36 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - b9d5e5292bd84f84a132af1f14090d64 - X-API-Time: - - 0.019s - X-API-Total-Time: - - 0.058s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '52' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:36 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - e226b06f7c2147e3982cc49b38d6c3bb - X-API-Time: - - 0.019s - X-API-Total-Time: - - 0.060s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":4,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '5177' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:36 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 4b0b0666625844f0a6aa5f537219bebd - X-API-Time: - - 0.036s - X-API-Total-Time: - - 0.184s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":4,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '5177' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:36 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 474575111ed04e1cab2c80ed4bc1207d - X-API-Time: - - 0.045s - X-API-Total-Time: - - 0.094s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":4,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '5177' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:36 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 1892084f82d041ae8be5c07165db54de - X-API-Time: - - 0.040s - X-API-Total-Time: - - 0.084s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":4,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '5177' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:36 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - ac4be65387ea42ad982e7cabd4fdf9b3 - X-API-Time: - - 0.039s - X-API-Total-Time: - - 0.084s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":4,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '5177' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:37 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 4225267444f34689a878f846868cb983 - X-API-Time: - - 0.042s - X-API-Total-Time: - - 0.081s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":8,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '18639' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:37 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 77190a0d2a084fe6a5c638170f950aff - X-API-Time: - - 0.076s - X-API-Total-Time: - - 0.136s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":8,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '18639' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:37 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 95eaf08968584820af29fe65e66f5344 - X-API-Time: - - 0.059s - X-API-Total-Time: - - 0.109s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":8,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '18639' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:37 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - dd63b02ff9d549c09a74c4f7be71ab1f - X-API-Time: - - 0.060s - X-API-Total-Time: - - 0.109s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":8,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '18639' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:37 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - a98449c65f5746deb3c60c25cd2c51b1 - X-API-Time: - - 0.057s - X-API-Total-Time: - - 0.099s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":8,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '18639' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:37 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 3a2f95bef7ca478a92406231ef47d22d - X-API-Time: - - 0.057s - X-API-Total-Time: - - 0.097s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":8,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '18639' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:37 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 3a826e9ea0484357a092ab26a84b610e - X-API-Time: - - 0.053s - X-API-Total-Time: - - 0.091s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":8,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '18639' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:38 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - a4e04b4b76fd4ff9938844dc3f09f151 - X-API-Time: - - 0.066s - X-API-Total-Time: - - 0.107s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":8,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '18639' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:38 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - bf35c19f8aaf41d4b575f1918b97f819 - X-API-Time: - - 0.062s - X-API-Total-Time: - - 0.104s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":8,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '18639' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:38 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 930525b84d3a4aa8a737bfcdba011b9f - X-API-Time: - - 0.064s - X-API-Total-Time: - - 0.105s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":8,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '18639' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:38 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 4f9baf54f95f4aaa9895e85589016f35 - X-API-Time: - - 0.052s - X-API-Total-Time: - - 0.090s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":8,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '18639' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:38 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - b0b712dd336c4b5495bb74129513456e - X-API-Time: - - 0.077s - X-API-Total-Time: - - 0.121s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":8,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '18639' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:38 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 0d0aff0406ad41bb86f0b1e53d6688c5 - X-API-Time: - - 0.065s - X-API-Total-Time: - - 0.105s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":9,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0},{"id":8565,"type":"job_event","url":"/api/v2/job_events/8565/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8565/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:37.011000Z","modified":"2023-04-17T18:05:38.862667Z","job":1091,"event":"playbook_on_stats","counter":9,"event_display":"Playbook - Complete","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","changed":{},"dark":{},"failures":{},"ignored":{},"ok":{"localhost":2},"processed":{"localhost":1},"rescued":{},"skipped":{},"artifact_data":{},"uuid":"65058337-9451-4861-964d-c42b2cde9bae","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"65058337-9451-4861-964d-c42b2cde9bae","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"\r\nPLAY - RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : - \u001b[0;32mok=2 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n","start_line":10,"end_line":14,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '20042' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:39 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - dec1ddca0dfe4986822cf7c9f17262af - X-API-Time: - - 0.060s - X-API-Total-Time: - - 0.101s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":9,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0},{"id":8565,"type":"job_event","url":"/api/v2/job_events/8565/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8565/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:37.011000Z","modified":"2023-04-17T18:05:38.862667Z","job":1091,"event":"playbook_on_stats","counter":9,"event_display":"Playbook - Complete","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","changed":{},"dark":{},"failures":{},"ignored":{},"ok":{"localhost":2},"processed":{"localhost":1},"rescued":{},"skipped":{},"artifact_data":{},"uuid":"65058337-9451-4861-964d-c42b2cde9bae","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"65058337-9451-4861-964d-c42b2cde9bae","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"\r\nPLAY - RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : - \u001b[0;32mok=2 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n","start_line":10,"end_line":14,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '20042' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:39 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - cfc29c2a16d7402fb6de1a7dbf490c0f - X-API-Time: - - 0.058s - X-API-Total-Time: - - 0.096s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":9,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0},{"id":8565,"type":"job_event","url":"/api/v2/job_events/8565/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8565/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:37.011000Z","modified":"2023-04-17T18:05:38.862667Z","job":1091,"event":"playbook_on_stats","counter":9,"event_display":"Playbook - Complete","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","changed":{},"dark":{},"failures":{},"ignored":{},"ok":{"localhost":2},"processed":{"localhost":1},"rescued":{},"skipped":{},"artifact_data":{},"uuid":"65058337-9451-4861-964d-c42b2cde9bae","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"65058337-9451-4861-964d-c42b2cde9bae","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"\r\nPLAY - RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : - \u001b[0;32mok=2 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n","start_line":10,"end_line":14,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '20042' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:39 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - ed07c598afe34dde96c17f956dbf2189 - X-API-Time: - - 0.057s - X-API-Total-Time: - - 0.099s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":9,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0},{"id":8565,"type":"job_event","url":"/api/v2/job_events/8565/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8565/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:37.011000Z","modified":"2023-04-17T18:05:38.862667Z","job":1091,"event":"playbook_on_stats","counter":9,"event_display":"Playbook - Complete","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","changed":{},"dark":{},"failures":{},"ignored":{},"ok":{"localhost":2},"processed":{"localhost":1},"rescued":{},"skipped":{},"artifact_data":{},"uuid":"65058337-9451-4861-964d-c42b2cde9bae","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"65058337-9451-4861-964d-c42b2cde9bae","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"\r\nPLAY - RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : - \u001b[0;32mok=2 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n","start_line":10,"end_line":14,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '20042' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:39 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 686e7f54812c4324aeb3103c492d977c - X-API-Time: - - 0.066s - X-API-Total-Time: - - 0.105s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":9,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0},{"id":8565,"type":"job_event","url":"/api/v2/job_events/8565/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8565/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:37.011000Z","modified":"2023-04-17T18:05:38.862667Z","job":1091,"event":"playbook_on_stats","counter":9,"event_display":"Playbook - Complete","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","changed":{},"dark":{},"failures":{},"ignored":{},"ok":{"localhost":2},"processed":{"localhost":1},"rescued":{},"skipped":{},"artifact_data":{},"uuid":"65058337-9451-4861-964d-c42b2cde9bae","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"65058337-9451-4861-964d-c42b2cde9bae","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"\r\nPLAY - RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : - \u001b[0;32mok=2 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n","start_line":10,"end_line":14,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '20042' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:39 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 53c43aff37594971bff7512053041da9 - X-API-Time: - - 0.056s - X-API-Total-Time: - - 0.096s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":9,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0},{"id":8565,"type":"job_event","url":"/api/v2/job_events/8565/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8565/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:37.011000Z","modified":"2023-04-17T18:05:38.862667Z","job":1091,"event":"playbook_on_stats","counter":9,"event_display":"Playbook - Complete","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","changed":{},"dark":{},"failures":{},"ignored":{},"ok":{"localhost":2},"processed":{"localhost":1},"rescued":{},"skipped":{},"artifact_data":{},"uuid":"65058337-9451-4861-964d-c42b2cde9bae","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"65058337-9451-4861-964d-c42b2cde9bae","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"\r\nPLAY - RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : - \u001b[0;32mok=2 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n","start_line":10,"end_line":14,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '20042' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:39 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 0e16746b586740b6b89afbf2837fbda2 - X-API-Time: - - 0.058s - X-API-Total-Time: - - 0.100s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":9,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0},{"id":8565,"type":"job_event","url":"/api/v2/job_events/8565/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8565/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:37.011000Z","modified":"2023-04-17T18:05:38.862667Z","job":1091,"event":"playbook_on_stats","counter":9,"event_display":"Playbook - Complete","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","changed":{},"dark":{},"failures":{},"ignored":{},"ok":{"localhost":2},"processed":{"localhost":1},"rescued":{},"skipped":{},"artifact_data":{},"uuid":"65058337-9451-4861-964d-c42b2cde9bae","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"65058337-9451-4861-964d-c42b2cde9bae","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"\r\nPLAY - RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : - \u001b[0;32mok=2 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n","start_line":10,"end_line":14,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '20042' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:39 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - fd74e717e6244c7cbed49144bb1742f2 - X-API-Time: - - 0.061s - X-API-Total-Time: - - 0.104s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":9,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0},{"id":8565,"type":"job_event","url":"/api/v2/job_events/8565/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8565/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:37.011000Z","modified":"2023-04-17T18:05:38.862667Z","job":1091,"event":"playbook_on_stats","counter":9,"event_display":"Playbook - Complete","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","changed":{},"dark":{},"failures":{},"ignored":{},"ok":{"localhost":2},"processed":{"localhost":1},"rescued":{},"skipped":{},"artifact_data":{},"uuid":"65058337-9451-4861-964d-c42b2cde9bae","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"65058337-9451-4861-964d-c42b2cde9bae","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"\r\nPLAY - RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : - \u001b[0;32mok=2 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n","start_line":10,"end_line":14,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '20042' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:40 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - abca897dc8fd4f559b67e01b4f726039 - X-API-Time: - - 0.064s - X-API-Total-Time: - - 0.108s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":9,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0},{"id":8565,"type":"job_event","url":"/api/v2/job_events/8565/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8565/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:37.011000Z","modified":"2023-04-17T18:05:38.862667Z","job":1091,"event":"playbook_on_stats","counter":9,"event_display":"Playbook - Complete","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","changed":{},"dark":{},"failures":{},"ignored":{},"ok":{"localhost":2},"processed":{"localhost":1},"rescued":{},"skipped":{},"artifact_data":{},"uuid":"65058337-9451-4861-964d-c42b2cde9bae","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"65058337-9451-4861-964d-c42b2cde9bae","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"\r\nPLAY - RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : - \u001b[0;32mok=2 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n","start_line":10,"end_line":14,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '20042' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:40 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - c58b3a40e16647098a7a57000421e5f4 - X-API-Time: - - 0.063s - X-API-Total-Time: - - 0.103s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":9,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0},{"id":8565,"type":"job_event","url":"/api/v2/job_events/8565/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8565/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:37.011000Z","modified":"2023-04-17T18:05:38.862667Z","job":1091,"event":"playbook_on_stats","counter":9,"event_display":"Playbook - Complete","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","changed":{},"dark":{},"failures":{},"ignored":{},"ok":{"localhost":2},"processed":{"localhost":1},"rescued":{},"skipped":{},"artifact_data":{},"uuid":"65058337-9451-4861-964d-c42b2cde9bae","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"65058337-9451-4861-964d-c42b2cde9bae","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"\r\nPLAY - RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : - \u001b[0;32mok=2 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n","start_line":10,"end_line":14,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '20042' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:40 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - ff77a15ac2854e5684fc44ef413dedcf - X-API-Time: - - 0.062s - X-API-Total-Time: - - 0.104s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":9,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0},{"id":8565,"type":"job_event","url":"/api/v2/job_events/8565/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8565/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:37.011000Z","modified":"2023-04-17T18:05:38.862667Z","job":1091,"event":"playbook_on_stats","counter":9,"event_display":"Playbook - Complete","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","changed":{},"dark":{},"failures":{},"ignored":{},"ok":{"localhost":2},"processed":{"localhost":1},"rescued":{},"skipped":{},"artifact_data":{},"uuid":"65058337-9451-4861-964d-c42b2cde9bae","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"65058337-9451-4861-964d-c42b2cde9bae","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"\r\nPLAY - RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : - \u001b[0;32mok=2 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n","start_line":10,"end_line":14,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '20042' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:40 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 504ec9b70536401a9caa8cee36ab5336 - X-API-Time: - - 0.068s - X-API-Total-Time: - - 0.108s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":9,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0},{"id":8565,"type":"job_event","url":"/api/v2/job_events/8565/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8565/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:37.011000Z","modified":"2023-04-17T18:05:38.862667Z","job":1091,"event":"playbook_on_stats","counter":9,"event_display":"Playbook - Complete","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","changed":{},"dark":{},"failures":{},"ignored":{},"ok":{"localhost":2},"processed":{"localhost":1},"rescued":{},"skipped":{},"artifact_data":{},"uuid":"65058337-9451-4861-964d-c42b2cde9bae","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"65058337-9451-4861-964d-c42b2cde9bae","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"\r\nPLAY - RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : - \u001b[0;32mok=2 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n","start_line":10,"end_line":14,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '20042' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:40 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 7b8d2c23735c42f38f28181d5ec14c45 - X-API-Time: - - 0.060s - X-API-Total-Time: - - 0.101s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":9,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0},{"id":8565,"type":"job_event","url":"/api/v2/job_events/8565/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8565/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:37.011000Z","modified":"2023-04-17T18:05:38.862667Z","job":1091,"event":"playbook_on_stats","counter":9,"event_display":"Playbook - Complete","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","changed":{},"dark":{},"failures":{},"ignored":{},"ok":{"localhost":2},"processed":{"localhost":1},"rescued":{},"skipped":{},"artifact_data":{},"uuid":"65058337-9451-4861-964d-c42b2cde9bae","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"65058337-9451-4861-964d-c42b2cde9bae","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"\r\nPLAY - RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : - \u001b[0;32mok=2 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n","start_line":10,"end_line":14,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS - Cache-Control: - - no-cache, no-store, must-revalidate - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '20042' - Content-Type: - - application/json - Date: - - Mon, 17 Apr 2023 18:05:40 GMT - Expires: - - '0' - Pragma: - - no-cache - Server: - - nginx - Vary: - - Accept, Accept-Language, Origin, Cookie - X-API-Node: - - localhost - X-API-Product-Name: - - Red Hat Ansible Automation Platform - X-API-Product-Version: - - 4.1.0 - X-API-Request-Id: - - 191f6eed7b4d4468a0051be329c620ee - X-API-Time: - - 0.056s - X-API-Total-Time: - - 0.098s - X-Frame-Options: - - DENY - X-UI-Max-Events: - - '4000' - status: - code: 200 - message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ -- request: - body: null - headers: - authorization: - - Bearer DUMMY - method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ - response: - body: - string: '{"count":9,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0},{"id":8565,"type":"job_event","url":"/api/v2/job_events/8565/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8565/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"running","failed":false,"elapsed":0.0,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:37.011000Z","modified":"2023-04-17T18:05:38.862667Z","job":1091,"event":"playbook_on_stats","counter":9,"event_display":"Playbook - Complete","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","changed":{},"dark":{},"failures":{},"ignored":{},"ok":{"localhost":2},"processed":{"localhost":1},"rescued":{},"skipped":{},"artifact_data":{},"uuid":"65058337-9451-4861-964d-c42b2cde9bae","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"65058337-9451-4861-964d-c42b2cde9bae","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"\r\nPLAY - RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : - \u001b[0;32mok=2 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n","start_line":10,"end_line":14,"verbosity":0}]}' - headers: - Access-Control-Expose-Headers: - - X-API-Request-Id - Allow: - - GET, HEAD, OPTIONS + - GET, DELETE, HEAD, OPTIONS Cache-Control: - no-cache, no-store, must-revalidate Connection: @@ -5306,119 +156,64 @@ interactions: Content-Language: - en Content-Length: - - '20042' + - '2907' Content-Type: - application/json Date: - - Mon, 17 Apr 2023 18:05:40 GMT + - Wed, 03 May 2023 18:55:04 GMT Expires: - '0' Pragma: - no-cache Server: - nginx + Strict-Transport-Security: + - max-age=15768000 Vary: - Accept, Accept-Language, Origin, Cookie X-API-Node: - - localhost + - awx1-b89c6f9fd-4h9lr X-API-Product-Name: - - Red Hat Ansible Automation Platform + - AWX X-API-Product-Version: - - 4.1.0 + - 21.8.0 X-API-Request-Id: - - 7980bc3481d64b61a310c4c7f74bb933 + - 02273c246a8844f2bce0b60274658ec6 X-API-Time: - - 0.063s + - 0.084s X-API-Total-Time: - - 0.103s + - 0.162s + X-Content-Type-Options: + - nosniff X-Frame-Options: - DENY - X-UI-Max-Events: - - '4000' status: code: 200 message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ + url: https://examples.com/api/v2/jobs/146/ - request: body: null headers: authorization: - Bearer DUMMY method: GET - uri: https://examples.com/api/v2/jobs/1091/job_events/ + uri: https://examples.com/api/v2/jobs/146/ response: body: - string: '{"count":9,"next":null,"previous":null,"results":[{"id":8559,"type":"job_event","url":"/api/v2/job_events/8559/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8559/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.499,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.067844Z","modified":"2023-04-17T18:05:36.296617Z","job":1091,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":0,"failed":false,"changed":false,"uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":8557,"type":"job_event","url":"/api/v2/job_events/8557/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8557/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.499,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.069189Z","modified":"2023-04-17T18:05:36.283260Z","job":1091,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"3681379f-26bd-df99-f262-000000000006","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000006","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"","role":"","stdout":"\r\nPLAY [Echo Hello, world!] - ******************************************************","start_line":0,"end_line":2,"verbosity":0},{"id":8558,"type":"job_event","url":"/api/v2/job_events/8558/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8558/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.499,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079001Z","modified":"2023-04-17T18:05:36.284043Z","job":1091,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-00000000000c","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\r\nTASK [Gathering - Facts] *********************************************************","start_line":2,"end_line":4,"verbosity":0},{"id":8560,"type":"job_event","url":"/api/v2/job_events/8560/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8560/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.499,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.079723Z","modified":"2023-04-17T18:05:36.286551Z","job":1091,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"2ec3931e-2bf5-42c8-a837-df047b5b65de","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"","start_line":4,"end_line":4,"verbosity":0},{"id":8561,"type":"job_event","url":"/api/v2/job_events/8561/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8561/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.499,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.975712Z","modified":"2023-04-17T18:05:37.029326Z","job":1091,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"3681379f-26bd-df99-f262-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["container","openstack"],"ansible_virtualization_tech_host":["kvm"],"ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_system":"Linux","ansible_kernel":"4.18.0-348.el8.x86_64","ansible_kernel_version":"#1 - SMP Mon Oct 4 12:17:22 EDT 2021","ansible_machine":"x86_64","ansible_python_version":"3.8.8","ansible_fqdn":"1d565ceded90","ansible_hostname":"1d565ceded90","ansible_nodename":"1d565ceded90","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_is_chroot":false,"ansible_apparmor":{"status":"disabled"},"ansible_user_id":"root","ansible_user_uid":0,"ansible_user_gid":0,"ansible_user_gecos":"root","ansible_user_dir":"/root","ansible_user_shell":"/bin/bash","ansible_real_user_id":0,"ansible_effective_user_id":0,"ansible_real_group_id":0,"ansible_effective_group_id":0,"ansible_system_capabilities_enforced":"True","ansible_system_capabilities":["cap_chown","cap_dac_override","cap_fowner","cap_fsetid","cap_kill","cap_setgid","cap_setuid","cap_setpcap","cap_net_bind_service","cap_net_raw","cap_sys_chroot","cap_setfcap+eip"],"ansible_local":{},"ansible_distribution":"RedHat","ansible_distribution_release":"Ootpa","ansible_distribution_version":"8.5","ansible_distribution_major_version":"8","ansible_distribution_file_path":"/etc/redhat-release","ansible_distribution_file_variety":"RedHat","ansible_distribution_file_parsed":true,"ansible_distribution_file_search_string":"Red - Hat","ansible_os_family":"RedHat","ansible_fips":false,"ansible_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":"ttyS0,115200n8","no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_proc_cmdline":{"BOOT_IMAGE":"(hd0,gpt3)/boot/vmlinuz-4.18.0-348.el8.x86_64","root":"UUID=e4cb6c6d-5cfb-49e2-9584-7bc863570913","console":["tty0","ttyS0,115200n8"],"no_timer_check":true,"net.ifnames":"0","crashkernel":"auto"},"ansible_fibre_channel_wwn":[],"ansible_python":{"version":{"major":3,"minor":8,"micro":8,"releaselevel":"final","serial":0},"version_info":[3,8,8,"final",0],"executable":"/usr/bin/python3.8","has_sslcontext":true,"type":"cpython"},"ansible_date_time":{"year":"2023","month":"04","weekday":"Monday","weekday_number":"1","weeknumber":"16","day":"17","hour":"18","minute":"05","second":"36","epoch":"1681754736","epoch_int":"1681754736","date":"2023-04-17","time":"18:05:36","iso8601_micro":"2023-04-17T18:05:36.711565Z","iso8601":"2023-04-17T18:05:36Z","iso8601_basic":"20230417T180536711565","iso8601_basic_short":"20230417T180536","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_hostnqn":"","ansible_lsb":{},"ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_iscsi_iqn":"","ansible_processor":["0","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)","1","GenuineIntel","Intel Xeon Processor (Skylake, - IBRS)","2","GenuineIntel","Intel Xeon Processor (Skylake, IBRS)","3","GenuineIntel","Intel - Xeon Processor (Skylake, IBRS)"],"ansible_processor_count":4,"ansible_processor_cores":1,"ansible_processor_threads_per_core":1,"ansible_processor_vcpus":4,"ansible_processor_nproc":4,"ansible_memtotal_mb":7768,"ansible_memfree_mb":5016,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2752,"free":5016},"nocache":{"free":5781,"used":1987},"swap":{"total":0,"free":0,"used":0,"cached":0}},"ansible_bios_date":"04/01/2014","ansible_bios_vendor":"SeaBIOS","ansible_bios_version":"1.13.0-2.module+el8.2.1+7284+aa32a2c4","ansible_board_asset_tag":"NA","ansible_board_name":"NA","ansible_board_serial":"NA","ansible_board_vendor":"NA","ansible_board_version":"NA","ansible_chassis_asset_tag":"NA","ansible_chassis_serial":"NA","ansible_chassis_vendor":"Red - Hat","ansible_chassis_version":"RHEL 7.6.0 PC (i440FX + PIIX, 1996)","ansible_form_factor":"Other","ansible_product_name":"OpenStack - Compute","ansible_product_serial":"NA","ansible_product_uuid":"NA","ansible_product_version":"20.4.1-1.20220112153422.1ee93b9.el8ost","ansible_system_vendor":"Red - Hat","ansible_devices":{"vda":{"virtual":1,"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"vendor":"0x1af4","model":null,"sas_address":null,"sas_device_handle":null,"removable":"0","support_discard":"0","partitions":{"vda2":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"4096","sectors":"204800","sectorsize":512,"size":"100.00 - MB","uuid":null,"holders":[]},"vda3":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"208896","sectors":"125620191","sectorsize":512,"size":"59.90 - GB","uuid":null,"holders":[]},"vda1":{"links":{"ids":[],"uuids":[],"labels":[],"masters":[]},"start":"2048","sectors":"2048","sectorsize":512,"size":"1.00 - MB","uuid":null,"holders":[]}},"rotational":"1","scheduler_mode":"mq-deadline","sectors":"125829120","sectorsize":"512","size":"60.00 - GB","host":"","holders":[]}},"ansible_device_links":{"ids":{},"uuids":{},"labels":{},"masters":{}},"ansible_uptime_seconds":11557162,"ansible_mounts":[{"mount":"/runner","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/resolv.conf","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hosts","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/etc/hostname","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"},{"mount":"/run/.containerenv","device":"/dev/vda3","fstype":"xfs","options":"rw,seclabel,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,bind","size_total":64307048448,"size_available":59362340864,"block_size":4096,"block_total":15699963,"block_available":14492759,"block_used":1207204,"inode_total":31404992,"inode_available":31258192,"inode_used":146800,"uuid":"N/A"}],"ansible_pkg_mgr":"dnf","ansible_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.079645","end":"2023-04-17T18:05:36.975484","duration":0.895839,"event_loop":null,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"c0f800f1-a6ac-4809-8caf-e287d441417d","parent_uuid":"3681379f-26bd-df99-f262-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"Gathering Facts","role":"","stdout":"\u001b[0;32mok: - [localhost]\u001b[0m","start_line":4,"end_line":5,"verbosity":0},{"id":8564,"type":"job_event","url":"/api/v2/job_events/8564/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8564/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.499,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.986745Z","modified":"2023-04-17T18:05:37.030046Z","job":1091,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"3681379f-26bd-df99-f262-000000000008","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":2,"failed":false,"changed":false,"uuid":"3681379f-26bd-df99-f262-000000000008","parent_uuid":"3681379f-26bd-df99-f262-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\r\nTASK [debug] *******************************************************************","start_line":5,"end_line":7,"verbosity":0},{"id":8563,"type":"job_event","url":"/api/v2/job_events/8563/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8563/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.499,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.987692Z","modified":"2023-04-17T18:05:37.033676Z","job":1091,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"66755e2c-ff50-4e98-85da-36a7a425f7b2","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"","start_line":7,"end_line":7,"verbosity":0},{"id":8562,"type":"job_event","url":"/api/v2/job_events/8562/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8562/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.499,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:36.999483Z","modified":"2023-04-17T18:05:37.037552Z","job":1091,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","play":"Echo - Hello, world!","play_uuid":"3681379f-26bd-df99-f262-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"3681379f-26bd-df99-f262-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","remote_addr":"localhost","res":{"msg":"Hello, - world!","_ansible_verbose_always":true,"_ansible_no_log":false,"changed":false},"start":"2023-04-17T18:05:36.987565","end":"2023-04-17T18:05:36.999187","duration":0.011622,"event_loop":null,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":3,"failed":false,"changed":false,"uuid":"9d6e643e-efce-4293-aff0-5d4adf683036","parent_uuid":"3681379f-26bd-df99-f262-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo - Hello, world!","task":"debug","role":"","stdout":"\u001b[0;32mok: [localhost] - => {\u001b[0m\r\n\u001b[0;32m \"msg\": \"Hello, world!\"\u001b[0m\r\n\u001b[0;32m}\u001b[0m","start_line":7,"end_line":10,"verbosity":0},{"id":8565,"type":"job_event","url":"/api/v2/job_events/8565/","related":{"job":"/api/v2/jobs/1091/","children":"/api/v2/job_events/8565/children/"},"summary_fields":{"job":{"id":1091,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.499,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-04-17T18:05:37.011000Z","modified":"2023-04-17T18:05:38.862667Z","job":1091,"event":"playbook_on_stats","counter":9,"event_display":"Playbook - Complete","event_data":{"playbook":"hello_world.yml","playbook_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","changed":{},"dark":{},"failures":{},"ignored":{},"ok":{"localhost":2},"processed":{"localhost":1},"rescued":{},"skipped":{},"artifact_data":{},"uuid":"65058337-9451-4861-964d-c42b2cde9bae","guid":"184a46adb4ac4270ae0a0c9e531ee6b2"},"event_level":1,"failed":false,"changed":false,"uuid":"65058337-9451-4861-964d-c42b2cde9bae","parent_uuid":"8aafb17d-8894-48b7-9522-bed38bb61fdb","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"\r\nPLAY - RECAP *********************************************************************\r\n\u001b[0;32mlocalhost\u001b[0m : - \u001b[0;32mok=2 \u001b[0m changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 \r\n","start_line":10,"end_line":14,"verbosity":0}]}' + string: '{"id":146,"type":"job","url":"/api/v2/jobs/146/","related":{"created_by":"/api/v2/users/1/","labels":"/api/v2/jobs/146/labels/","inventory":"/api/v2/inventories/1/","project":"/api/v2/projects/6/","organization":"/api/v2/organizations/1/","credentials":"/api/v2/jobs/146/credentials/","unified_job_template":"/api/v2/job_templates/7/","stdout":"/api/v2/jobs/146/stdout/","execution_environment":"/api/v2/execution_environments/1/","job_events":"/api/v2/jobs/146/job_events/","job_host_summaries":"/api/v2/jobs/146/job_host_summaries/","activity_stream":"/api/v2/jobs/146/activity_stream/","notifications":"/api/v2/jobs/146/notifications/","create_schedule":"/api/v2/jobs/146/create_schedule/","job_template":"/api/v2/job_templates/7/","cancel":"/api/v2/jobs/146/cancel/","relaunch":"/api/v2/jobs/146/relaunch/"},"summary_fields":{"organization":{"id":1,"name":"Default","description":""},"inventory":{"id":1,"name":"Demo + Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0,"organization_id":1,"kind":""},"execution_environment":{"id":1,"name":"AWX + EE (latest)","description":"","image":"quay.io/ansible/awx-ee:latest"},"project":{"id":6,"name":"Demo + Project","description":"","status":"successful","scm_type":"git","allow_override":false},"job_template":{"id":7,"name":"Hello + World","description":""},"unified_job_template":{"id":7,"name":"Hello World","description":"","unified_job_type":"job"},"instance_group":{"id":2,"name":"default","is_container_group":true},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"user_capabilities":{"delete":true,"start":true},"labels":{"count":0,"results":[]},"credentials":[{"id":1,"name":"Demo + Credential","description":"","kind":"ssh","cloud":false}]},"created":"2023-05-03T18:55:04.470052Z","modified":"2023-05-03T18:55:04.803982Z","name":"Hello + World","description":"","job_type":"run","inventory":1,"project":6,"playbook":"hello_world.yml","scm_branch":"","forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","timeout":0,"use_fact_cache":false,"organization":1,"unified_job_template":7,"launch_type":"manual","status":"running","execution_environment":1,"failed":false,"started":"2023-05-03T18:55:04.938690Z","finished":null,"canceled_on":null,"elapsed":4.46897,"job_args":"[\"ansible-playbook\", + \"-u\", \"admin\", \"-i\", \"/runner/inventory/hosts\", \"-e\", \"@/runner/env/extravars\", + \"hello_world.yml\"]","job_cwd":"/runner/project","job_env":{"KUBERNETES_SERVICE_PORT_HTTPS":"443","KUBERNETES_SERVICE_PORT":"443","AWX1_SERVICE_SERVICE_HOST":"10.104.134.20","AWX_OPERATOR_CONTROLLER_MANAGER_METRICS_SERVICE_SERVICE_HOST":"10.100.6.11","HOSTNAME":"automation-job-146-ghjk8","PWD":"/runner","AWX_OPERATOR_CONTROLLER_MANAGER_METRICS_SERVICE_PORT_8443_TCP_PORT":"8443","AWX_OPERATOR_CONTROLLER_MANAGER_METRICS_SERVICE_PORT_8443_TCP_PROTO":"tcp","AWX1_SERVICE_PORT":"tcp://10.104.134.20:80","HOME":"/runner","KUBERNETES_PORT_443_TCP":"tcp://10.96.0.1:443","AWX_OPERATOR_CONTROLLER_MANAGER_METRICS_SERVICE_PORT":"tcp://10.100.6.11:8443","AWX1_SERVICE_PORT_80_TCP_PORT":"80","AWX1_SERVICE_SERVICE_PORT":"80","AWX_OPERATOR_CONTROLLER_MANAGER_METRICS_SERVICE_SERVICE_PORT_HTTPS":"8443","AWX_OPERATOR_CONTROLLER_MANAGER_METRICS_SERVICE_SERVICE_PORT":"8443","SHLVL":"0","KUBERNETES_PORT_443_TCP_PROTO":"tcp","AWX1_SERVICE_SERVICE_PORT_HTTP":"80","KUBERNETES_PORT_443_TCP_ADDR":"10.96.0.1","AWX_OPERATOR_CONTROLLER_MANAGER_METRICS_SERVICE_PORT_8443_TCP":"tcp://10.100.6.11:8443","KUBERNETES_SERVICE_HOST":"10.96.0.1","KUBERNETES_PORT":"tcp://10.96.0.1:443","KUBERNETES_PORT_443_TCP_PORT":"443","AWX1_SERVICE_PORT_80_TCP_ADDR":"10.104.134.20","PATH":"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","AWX_OPERATOR_CONTROLLER_MANAGER_METRICS_SERVICE_PORT_8443_TCP_ADDR":"10.100.6.11","AWX1_SERVICE_PORT_80_TCP_PROTO":"tcp","AWX1_SERVICE_PORT_80_TCP":"tcp://10.104.134.20:80","LC_CTYPE":"C.UTF-8","ANSIBLE_FORCE_COLOR":"True","ANSIBLE_HOST_KEY_CHECKING":"False","ANSIBLE_INVENTORY_UNPARSED_FAILED":"True","ANSIBLE_PARAMIKO_RECORD_HOST_KEYS":"False","AWX_PRIVATE_DATA_DIR":"/tmp/awx_146_1bysuira","JOB_ID":"146","INVENTORY_ID":"1","PROJECT_REVISION":"347e44fea036c94d5f60e544de006453ee5c71ad","ANSIBLE_RETRY_FILES_ENABLED":"False","MAX_EVENT_RES":"700000","AWX_HOST":"https://towerhost","ANSIBLE_SSH_CONTROL_PATH_DIR":"/runner/cp","ANSIBLE_COLLECTIONS_PATHS":"/runner/requirements_collections:~/.ansible/collections:/usr/share/ansible/collections","ANSIBLE_ROLES_PATH":"/runner/requirements_roles:~/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles","ANSIBLE_CALLBACK_PLUGINS":"/usr/local/lib/python3.9/site-packages/ansible_runner/display_callback/callback","ANSIBLE_STDOUT_CALLBACK":"awx_display","AWX_ISOLATED_DATA_DIR":"/runner/artifacts/146","RUNNER_OMIT_EVENTS":"False","RUNNER_ONLY_FAILED_EVENTS":"False"},"job_explanation":"","execution_node":"","controller_node":"awx1-b89c6f9fd-4h9lr","result_traceback":"","event_processing_finished":false,"launched_by":{"id":1,"name":"admin","type":"user","url":"/api/v2/users/1/"},"work_unit_id":"uVAJNvrv","job_template":7,"passwords_needed_to_start":[],"allow_simultaneous":false,"artifacts":{},"scm_revision":"347e44fea036c94d5f60e544de006453ee5c71ad","instance_group":2,"diff_mode":false,"job_slice_number":0,"job_slice_count":1,"webhook_service":"","webhook_credential":null,"webhook_guid":"","host_status_counts":null,"playbook_counts":{"play_count":1,"task_count":1},"custom_virtualenv":null}' headers: Access-Control-Expose-Headers: - X-API-Request-Id Allow: - - GET, HEAD, OPTIONS + - GET, DELETE, HEAD, OPTIONS Cache-Control: - no-cache, no-store, must-revalidate Connection: @@ -5426,61 +221,59 @@ interactions: Content-Language: - en Content-Length: - - '20087' + - '5657' Content-Type: - application/json Date: - - Mon, 17 Apr 2023 18:05:41 GMT + - Wed, 03 May 2023 18:55:09 GMT Expires: - '0' Pragma: - no-cache Server: - nginx + Strict-Transport-Security: + - max-age=15768000 Vary: - Accept, Accept-Language, Origin, Cookie X-API-Node: - - localhost + - awx1-b89c6f9fd-4h9lr X-API-Product-Name: - - Red Hat Ansible Automation Platform + - AWX X-API-Product-Version: - - 4.1.0 + - 21.8.0 X-API-Request-Id: - - 30d89195db02473da268f136c91af5b9 + - f1fed134d16d4b2d85f660fd68eade9f X-API-Time: - - 0.067s + - 0.487s X-API-Total-Time: - - 0.107s + - 0.588s + X-Content-Type-Options: + - nosniff X-Frame-Options: - DENY - X-UI-Max-Events: - - '4000' status: code: 200 message: OK - url: https://examples.com/api/v2/jobs/1091/job_events/ + url: https://examples.com/api/v2/jobs/146/ - request: body: null headers: authorization: - Bearer DUMMY method: GET - uri: https://examples.com/api/v2/jobs/1091/ + uri: https://examples.com/api/v2/jobs/146/ response: body: - string: '{"id":1091,"type":"job","url":"/api/v2/jobs/1091/","related":{"created_by":"/api/v2/users/1/","labels":"/api/v2/jobs/1091/labels/","inventory":"/api/v2/inventories/1/","project":"/api/v2/projects/8/","organization":"/api/v2/organizations/1/","credentials":"/api/v2/jobs/1091/credentials/","unified_job_template":"/api/v2/job_templates/9/","stdout":"/api/v2/jobs/1091/stdout/","execution_environment":"/api/v2/execution_environments/3/","job_events":"/api/v2/jobs/1091/job_events/","job_host_summaries":"/api/v2/jobs/1091/job_host_summaries/","activity_stream":"/api/v2/jobs/1091/activity_stream/","notifications":"/api/v2/jobs/1091/notifications/","create_schedule":"/api/v2/jobs/1091/create_schedule/","job_template":"/api/v2/job_templates/9/","cancel":"/api/v2/jobs/1091/cancel/","relaunch":"/api/v2/jobs/1091/relaunch/"},"summary_fields":{"organization":{"id":1,"name":"Default","description":""},"inventory":{"id":1,"name":"Demo - Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0,"organization_id":1,"kind":""},"execution_environment":{"id":3,"name":"Default - execution environment","description":"","image":"registry.redhat.io/ansible-automation-platform-21/ee-supported-rhel8:latest"},"project":{"id":8,"name":"mkanoor","description":"mkanoor","status":"successful","scm_type":"git","allow_override":false},"job_template":{"id":9,"name":"Hello - World","description":"Hello World 490"},"unified_job_template":{"id":9,"name":"Hello - World","description":"Hello World 490","unified_job_type":"job"},"instance_group":{"id":2,"name":"default","is_container_group":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"user_capabilities":{"delete":true,"start":true},"labels":{"count":0,"results":[]},"credentials":[]},"created":"2023-04-17T18:05:32.858159Z","modified":"2023-04-17T18:05:33.128683Z","name":"Hello - World","description":"Hello World 490","job_type":"run","inventory":1,"project":8,"playbook":"hello_world.yml","scm_branch":"","forks":0,"limit":"","verbosity":0,"extra_vars":"{\"secret\": - \"$encrypted$\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","timeout":0,"use_fact_cache":false,"organization":1,"unified_job_template":9,"launch_type":"manual","status":"successful","execution_environment":3,"failed":false,"started":"2023-04-17T18:05:33.340454Z","finished":"2023-04-17T18:05:40.839202Z","canceled_on":null,"elapsed":7.499,"job_args":"[\"podman\", - \"run\", \"--rm\", \"--tty\", \"--interactive\", \"--workdir\", \"/runner/project\", - \"-v\", \"/tmp/awx_1091_msjfw7uk/:/runner/:Z\", \"--authfile=/tmp/ansible_runner_registry_1091_wuyw_qbs/auth.json\", - \"--env-file\", \"/tmp/awx_1091_msjfw7uk/artifacts/1091/env.list\", \"--quiet\", - \"--name\", \"ansible_runner_1091\", \"--user=root\", \"registry.redhat.io/ansible-automation-platform-21/ee-supported-rhel8:latest\", - \"ansible-playbook\", \"-u\", \"root\", \"-i\", \"/runner/inventory/hosts\", - \"-e\", \"@/runner/env/extravars\", \"hello_world.yml\"]","job_cwd":"/runner/project","job_env":{"LAUNCHED_BY_RUNNER":"1","ANSIBLE_UNSAFE_WRITES":"1","AWX_ISOLATED_DATA_DIR":"/runner/artifacts/1091","ANSIBLE_FORCE_COLOR":"True","ANSIBLE_HOST_KEY_CHECKING":"False","ANSIBLE_INVENTORY_UNPARSED_FAILED":"True","ANSIBLE_PARAMIKO_RECORD_HOST_KEYS":"False","AWX_PRIVATE_DATA_DIR":"/tmp/awx_1091_msjfw7uk","JOB_ID":"1091","INVENTORY_ID":"1","PROJECT_REVISION":"ad273c2bcdcfa314f512908b3b9507852056038f","ANSIBLE_RETRY_FILES_ENABLED":"False","MAX_EVENT_RES":"700000","AWX_HOST":"https://examples.com","ANSIBLE_SSH_CONTROL_PATH_DIR":"/runner/cp","ANSIBLE_COLLECTIONS_PATHS":"/runner/requirements_collections:~/.ansible/collections:/usr/share/ansible/collections","ANSIBLE_ROLES_PATH":"/runner/requirements_roles:~/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles","ANSIBLE_STDOUT_CALLBACK":"awx_display","RUNNER_OMIT_EVENTS":"False","RUNNER_ONLY_FAILED_EVENTS":"False"},"job_explanation":"","execution_node":"localhost","controller_node":"localhost","result_traceback":"","event_processing_finished":true,"launched_by":{"id":1,"name":"admin","type":"user","url":"/api/v2/users/1/"},"work_unit_id":"nwCwSFB9","job_template":9,"passwords_needed_to_start":[],"allow_simultaneous":false,"artifacts":{},"scm_revision":"ad273c2bcdcfa314f512908b3b9507852056038f","instance_group":2,"diff_mode":false,"job_slice_number":0,"job_slice_count":1,"webhook_service":"","webhook_credential":null,"webhook_guid":"","host_status_counts":{"ok":1},"playbook_counts":{"play_count":1,"task_count":2},"custom_virtualenv":null}' + string: '{"id":146,"type":"job","url":"/api/v2/jobs/146/","related":{"created_by":"/api/v2/users/1/","labels":"/api/v2/jobs/146/labels/","inventory":"/api/v2/inventories/1/","project":"/api/v2/projects/6/","organization":"/api/v2/organizations/1/","credentials":"/api/v2/jobs/146/credentials/","unified_job_template":"/api/v2/job_templates/7/","stdout":"/api/v2/jobs/146/stdout/","execution_environment":"/api/v2/execution_environments/1/","job_events":"/api/v2/jobs/146/job_events/","job_host_summaries":"/api/v2/jobs/146/job_host_summaries/","activity_stream":"/api/v2/jobs/146/activity_stream/","notifications":"/api/v2/jobs/146/notifications/","create_schedule":"/api/v2/jobs/146/create_schedule/","job_template":"/api/v2/job_templates/7/","cancel":"/api/v2/jobs/146/cancel/","relaunch":"/api/v2/jobs/146/relaunch/"},"summary_fields":{"organization":{"id":1,"name":"Default","description":""},"inventory":{"id":1,"name":"Demo + Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0,"organization_id":1,"kind":""},"execution_environment":{"id":1,"name":"AWX + EE (latest)","description":"","image":"quay.io/ansible/awx-ee:latest"},"project":{"id":6,"name":"Demo + Project","description":"","status":"successful","scm_type":"git","allow_override":false},"job_template":{"id":7,"name":"Hello + World","description":""},"unified_job_template":{"id":7,"name":"Hello World","description":"","unified_job_type":"job"},"instance_group":{"id":2,"name":"default","is_container_group":true},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"user_capabilities":{"delete":true,"start":true},"labels":{"count":0,"results":[]},"credentials":[{"id":1,"name":"Demo + Credential","description":"","kind":"ssh","cloud":false}]},"created":"2023-05-03T18:55:04.470052Z","modified":"2023-05-03T18:55:04.803982Z","name":"Hello + World","description":"","job_type":"run","inventory":1,"project":6,"playbook":"hello_world.yml","scm_branch":"","forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","timeout":0,"use_fact_cache":false,"organization":1,"unified_job_template":7,"launch_type":"manual","status":"successful","execution_environment":1,"failed":false,"started":"2023-05-03T18:55:04.938690Z","finished":"2023-05-03T18:55:11.303892Z","canceled_on":null,"elapsed":6.365,"job_args":"[\"ansible-playbook\", + \"-u\", \"admin\", \"-i\", \"/runner/inventory/hosts\", \"-e\", \"@/runner/env/extravars\", + \"hello_world.yml\"]","job_cwd":"/runner/project","job_env":{"KUBERNETES_SERVICE_PORT_HTTPS":"443","KUBERNETES_SERVICE_PORT":"443","AWX1_SERVICE_SERVICE_HOST":"10.104.134.20","AWX_OPERATOR_CONTROLLER_MANAGER_METRICS_SERVICE_SERVICE_HOST":"10.100.6.11","HOSTNAME":"automation-job-146-ghjk8","PWD":"/runner","AWX_OPERATOR_CONTROLLER_MANAGER_METRICS_SERVICE_PORT_8443_TCP_PORT":"8443","AWX_OPERATOR_CONTROLLER_MANAGER_METRICS_SERVICE_PORT_8443_TCP_PROTO":"tcp","AWX1_SERVICE_PORT":"tcp://10.104.134.20:80","HOME":"/runner","KUBERNETES_PORT_443_TCP":"tcp://10.96.0.1:443","AWX_OPERATOR_CONTROLLER_MANAGER_METRICS_SERVICE_PORT":"tcp://10.100.6.11:8443","AWX1_SERVICE_PORT_80_TCP_PORT":"80","AWX1_SERVICE_SERVICE_PORT":"80","AWX_OPERATOR_CONTROLLER_MANAGER_METRICS_SERVICE_SERVICE_PORT_HTTPS":"8443","AWX_OPERATOR_CONTROLLER_MANAGER_METRICS_SERVICE_SERVICE_PORT":"8443","SHLVL":"0","KUBERNETES_PORT_443_TCP_PROTO":"tcp","AWX1_SERVICE_SERVICE_PORT_HTTP":"80","KUBERNETES_PORT_443_TCP_ADDR":"10.96.0.1","AWX_OPERATOR_CONTROLLER_MANAGER_METRICS_SERVICE_PORT_8443_TCP":"tcp://10.100.6.11:8443","KUBERNETES_SERVICE_HOST":"10.96.0.1","KUBERNETES_PORT":"tcp://10.96.0.1:443","KUBERNETES_PORT_443_TCP_PORT":"443","AWX1_SERVICE_PORT_80_TCP_ADDR":"10.104.134.20","PATH":"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","AWX_OPERATOR_CONTROLLER_MANAGER_METRICS_SERVICE_PORT_8443_TCP_ADDR":"10.100.6.11","AWX1_SERVICE_PORT_80_TCP_PROTO":"tcp","AWX1_SERVICE_PORT_80_TCP":"tcp://10.104.134.20:80","LC_CTYPE":"C.UTF-8","ANSIBLE_FORCE_COLOR":"True","ANSIBLE_HOST_KEY_CHECKING":"False","ANSIBLE_INVENTORY_UNPARSED_FAILED":"True","ANSIBLE_PARAMIKO_RECORD_HOST_KEYS":"False","AWX_PRIVATE_DATA_DIR":"/tmp/awx_146_1bysuira","JOB_ID":"146","INVENTORY_ID":"1","PROJECT_REVISION":"347e44fea036c94d5f60e544de006453ee5c71ad","ANSIBLE_RETRY_FILES_ENABLED":"False","MAX_EVENT_RES":"700000","AWX_HOST":"https://towerhost","ANSIBLE_SSH_CONTROL_PATH_DIR":"/runner/cp","ANSIBLE_COLLECTIONS_PATHS":"/runner/requirements_collections:~/.ansible/collections:/usr/share/ansible/collections","ANSIBLE_ROLES_PATH":"/runner/requirements_roles:~/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles","ANSIBLE_CALLBACK_PLUGINS":"/usr/local/lib/python3.9/site-packages/ansible_runner/display_callback/callback","ANSIBLE_STDOUT_CALLBACK":"awx_display","AWX_ISOLATED_DATA_DIR":"/runner/artifacts/146","RUNNER_OMIT_EVENTS":"False","RUNNER_ONLY_FAILED_EVENTS":"False"},"job_explanation":"","execution_node":"","controller_node":"awx1-b89c6f9fd-4h9lr","result_traceback":"","event_processing_finished":true,"launched_by":{"id":1,"name":"admin","type":"user","url":"/api/v2/users/1/"},"work_unit_id":"uVAJNvrv","job_template":7,"passwords_needed_to_start":[],"allow_simultaneous":false,"artifacts":{},"scm_revision":"347e44fea036c94d5f60e544de006453ee5c71ad","instance_group":2,"diff_mode":false,"job_slice_number":0,"job_slice_count":1,"webhook_service":"","webhook_credential":null,"webhook_guid":"","host_status_counts":{"ok":1},"playbook_counts":{"play_count":1,"task_count":2},"custom_virtualenv":null}' headers: Access-Control-Expose-Headers: - X-API-Request-Id @@ -5493,35 +286,39 @@ interactions: Content-Language: - en Content-Length: - - '4681' + - '5686' Content-Type: - application/json Date: - - Mon, 17 Apr 2023 18:05:41 GMT + - Wed, 03 May 2023 18:55:13 GMT Expires: - '0' Pragma: - no-cache Server: - nginx + Strict-Transport-Security: + - max-age=15768000 Vary: - Accept, Accept-Language, Origin, Cookie X-API-Node: - - localhost + - awx1-b89c6f9fd-4h9lr X-API-Product-Name: - - Red Hat Ansible Automation Platform + - AWX X-API-Product-Version: - - 4.1.0 + - 21.8.0 X-API-Request-Id: - - 3c169d3c87334e8b9a990a5ec7c4f9ab + - 9bd4f051408341e3b4a7316d9e220bf9 X-API-Time: - - 0.048s + - 0.069s X-API-Total-Time: - - 0.086s + - 0.303s + X-Content-Type-Options: + - nosniff X-Frame-Options: - DENY status: code: 200 message: OK - url: https://examples.com/api/v2/jobs/1091/ + url: https://examples.com/api/v2/jobs/146/ version: 1