diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 2228381c..f05a474f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: hooks: - id: black - repo: https://github.com/pycqa/isort - rev: 5.10.1 + rev: 5.12.0 hooks: - id: isort - repo: https://github.com/pycqa/flake8 diff --git a/ansible_rulebook/exception.py b/ansible_rulebook/exception.py index 353d1361..9cb39da8 100644 --- a/ansible_rulebook/exception.py +++ b/ansible_rulebook/exception.py @@ -131,3 +131,8 @@ class ControllerNeededException(Exception): class InvalidFilterNameException(Exception): pass + + +class JobTemplateNotFoundException(Exception): + + pass diff --git a/ansible_rulebook/job_template_runner.py b/ansible_rulebook/job_template_runner.py index b6ccd71c..26a6b13f 100644 --- a/ansible_rulebook/job_template_runner.py +++ b/ansible_rulebook/job_template_runner.py @@ -19,30 +19,19 @@ import ssl from functools import cached_property from typing import Any, Callable, Union -from urllib.parse import parse_qsl, quote, urljoin, urlparse +from urllib.parse import parse_qsl, urljoin, urlparse import aiohttp import dpath -from ansible_rulebook.exception import ControllerApiException +from ansible_rulebook.exception import ( + ControllerApiException, + JobTemplateNotFoundException, +) logger = logging.getLogger(__name__) -# https://docs.ansible.com/ansible-tower/latest/html/towerapi/access_resources.html#access-resources -URL_PATH_RESERVED_CHARSET = {} -for c in ";/?:@=&[]": - URL_PATH_RESERVED_CHARSET[c] = quote(c, safe="") -URL_PATH_RESERVED_CHARSET["+"] = "[+]" - - -def _encode_uri(text: str) -> str: - for c in URL_PATH_RESERVED_CHARSET: - if c in text: - text = text.replace(c, URL_PATH_RESERVED_CHARSET[c]) - return text - - class JobTemplateRunner: JOB_TEMPLATE_SLUG = "/api/v2/job_templates" VALID_POST_CODES = [200, 201, 202] @@ -91,6 +80,35 @@ def _sslcontext(self) -> Union[bool, ssl.SSLContext]: return ssl.create_default_context(cafile=self.verify_ssl) return False + async def _get_job_template_id(self, name: str, organization: str) -> int: + slug = f"{self.JOB_TEMPLATE_SLUG}/" + params = {"name": name} + + async with aiohttp.ClientSession( + headers=self._auth_headers() + ) as session: + while True: + response = await self._get_page(session, slug, params) + json_body = json.loads(response["body"]) + for jt in json_body["results"]: + if ( + jt["name"] == name + and dpath.get( + jt, "summary_fields.organization.name", "." + ) + == organization + ): + return jt["id"] + + if json_body.get("next", None): + params["page"] = params.get("page", 1) + 1 + else: + break + + raise JobTemplateNotFoundException( + f"{name} in organization {organization}" + ) + async def run_job_template( self, name: str, @@ -138,12 +156,8 @@ async def run_job_template( async def launch( self, name: str, organization: str, job_params: dict ) -> dict: - name_uri = _encode_uri(name) - org_uri = _encode_uri(organization) - resource_uri = f"{name_uri}++{org_uri}" - url = urljoin( - self.host, f"{self.JOB_TEMPLATE_SLUG}/{resource_uri}/launch/" - ) + jt_id = await self._get_job_template_id(name, organization) + url = urljoin(self.host, f"{self.JOB_TEMPLATE_SLUG}/{jt_id}/launch/") async with aiohttp.ClientSession( headers=self._auth_headers() diff --git a/tests/cassettes/test_job_template.yaml b/tests/cassettes/test_job_template.yaml index 0ee2fdae..1929b111 100644 --- a/tests/cassettes/test_job_template.yaml +++ b/tests/cassettes/test_job_template.yaml @@ -1,17 +1,82 @@ interactions: +- request: + body: null + headers: + authorization: + - Bearer DUMMY + method: GET + 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}]}" + headers: + Access-Control-Expose-Headers: + - X-API-Request-Id + Allow: + - GET, POST, HEAD, OPTIONS + Cache-Control: + - no-cache, no-store, must-revalidate + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '8205' + Content-Type: + - application/json + Date: + - Mon, 17 Apr 2023 18:05:32 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: + - cea6f4f1fb564a7387d5291e2e23604c + X-API-Time: + - 0.066s + X-API-Total-Time: + - 0.107s + X-Frame-Options: + - DENY + status: + code: 200 + message: OK + url: https://examples.com/api/v2/job_templates/?name=Hello+World - request: body: null headers: authorization: - Bearer DUMMY method: POST - uri: https://examples.com/api/v2/job_templates/Hello%20World++Default/launch/ + uri: https://examples.com/api/v2/job_templates/9/launch/ response: body: - string: '{"job":435,"ignored_fields":{},"id":435,"type":"job","url":"/api/v2/jobs/435/","related":{"created_by":"/api/v2/users/1/","modified_by":"/api/v2/users/1/","labels":"/api/v2/jobs/435/labels/","inventory":"/api/v2/inventories/1/","project":"/api/v2/projects/8/","organization":"/api/v2/organizations/1/","credentials":"/api/v2/jobs/435/credentials/","unified_job_template":"/api/v2/job_templates/9/","stdout":"/api/v2/jobs/435/stdout/","job_events":"/api/v2/jobs/435/job_events/","job_host_summaries":"/api/v2/jobs/435/job_host_summaries/","activity_stream":"/api/v2/jobs/435/activity_stream/","notifications":"/api/v2/jobs/435/notifications/","create_schedule":"/api/v2/jobs/435/create_schedule/","job_template":"/api/v2/job_templates/9/","cancel":"/api/v2/jobs/435/cancel/","relaunch":"/api/v2/jobs/435/relaunch/"},"summary_fields":{"organization":{"id":1,"name":"Default","description":""},"inventory":{"id":1,"name":"Demo + 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-02-06T16:21:48.170337Z","modified":"2023-02-06T16:21:48.195584Z","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":""}' headers: @@ -26,15 +91,15 @@ interactions: Content-Language: - en Content-Length: - - '2833' + - '2846' Content-Type: - application/json Date: - - Mon, 06 Feb 2023 16:21:48 GMT + - Mon, 17 Apr 2023 18:05:33 GMT Expires: - '0' Location: - - /api/v2/jobs/435/ + - /api/v2/jobs/1091/ Pragma: - no-cache Server: @@ -48,24 +113,79 @@ interactions: X-API-Product-Version: - 4.1.0 X-API-Request-Id: - - 95e47944ff9a462782f8a627bd4eb45a + - 184a46adb4ac4270ae0a0c9e531ee6b2 X-API-Time: - - 0.322s + - 0.118s X-API-Total-Time: - - 0.810s + - 0.250s X-Frame-Options: - DENY status: code: 201 message: Created - url: https://examples.com/api/v2/job_templates/Hello%20World++Default/launch/ + url: https://examples.com/api/v2/job_templates/9/launch/ +- 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: + - 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/435/job_events/ + uri: https://examples.com/api/v2/jobs/1091/job_events/ response: body: string: '{"count":0,"next":null,"previous":null,"results":[]}' @@ -85,7 +205,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 06 Feb 2023 16:21:48 GMT + - Mon, 17 Apr 2023 18:05:33 GMT Expires: - '0' Pragma: @@ -101,11 +221,5116 @@ interactions: X-API-Product-Version: - 4.1.0 X-API-Request-Id: - - 48d6703b253c49419aaf54dfefb74cdd + - 9b44ff6dc8c842cb9640b141e7e8609f X-API-Time: - 0.019s X-API-Total-Time: - - 0.056s + - 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 + 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: + - 7980bc3481d64b61a310c4c7f74bb933 + X-API-Time: + - 0.063s + X-API-Total-Time: + - 0.103s X-Frame-Options: - DENY X-UI-Max-Events: @@ -113,80 +5338,80 @@ interactions: status: code: 200 message: OK - url: https://examples.com/api/v2/jobs/435/job_events/ + 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/435/job_events/ + uri: https://examples.com/api/v2/jobs/1091/job_events/ response: body: - string: '{"count":9,"next":null,"previous":null,"results":[{"id":2847,"type":"job_event","url":"/api/v2/job_events/2847/","related":{"job":"/api/v2/jobs/435/","children":"/api/v2/job_events/2847/children/"},"summary_fields":{"job":{"id":435,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.4,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-02-06T16:21:51.229223Z","modified":"2023-02-06T16:21:51.361467Z","job":435,"event":"playbook_on_start","counter":1,"event_display":"Playbook - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"6c58ffa9-d4d3-4b72-adea-dc4f16df9d70","uuid":"6c58ffa9-d4d3-4b72-adea-dc4f16df9d70","guid":"95e47944ff9a462782f8a627bd4eb45a"},"event_level":0,"failed":false,"changed":false,"uuid":"6c58ffa9-d4d3-4b72-adea-dc4f16df9d70","parent_uuid":"","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"","start_line":0,"end_line":0,"verbosity":0},{"id":2845,"type":"job_event","url":"/api/v2/job_events/2845/","related":{"job":"/api/v2/jobs/435/","children":"/api/v2/job_events/2845/children/"},"summary_fields":{"job":{"id":435,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.4,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-02-06T16:21:51.230477Z","modified":"2023-02-06T16:21:51.360386Z","job":435,"event":"playbook_on_play_start","counter":2,"event_display":"Play - Started (Echo Hello, world!)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"6c58ffa9-d4d3-4b72-adea-dc4f16df9d70","play":"Echo - Hello, world!","play_uuid":"425d9dd7-83af-8766-beed-000000000006","play_pattern":"localhost","name":"Echo - Hello, world!","pattern":"localhost","uuid":"425d9dd7-83af-8766-beed-000000000006","guid":"95e47944ff9a462782f8a627bd4eb45a"},"event_level":1,"failed":false,"changed":false,"uuid":"425d9dd7-83af-8766-beed-000000000006","parent_uuid":"6c58ffa9-d4d3-4b72-adea-dc4f16df9d70","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo + 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":2846,"type":"job_event","url":"/api/v2/job_events/2846/","related":{"job":"/api/v2/jobs/435/","children":"/api/v2/job_events/2846/children/"},"summary_fields":{"job":{"id":435,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.4,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-02-06T16:21:51.238345Z","modified":"2023-02-06T16:21:51.365019Z","job":435,"event":"playbook_on_task_start","counter":3,"event_display":"Task - Started (Gathering Facts)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"6c58ffa9-d4d3-4b72-adea-dc4f16df9d70","play":"Echo - Hello, world!","play_uuid":"425d9dd7-83af-8766-beed-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"425d9dd7-83af-8766-beed-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","name":"Gathering - Facts","is_conditional":false,"uuid":"425d9dd7-83af-8766-beed-00000000000c","guid":"95e47944ff9a462782f8a627bd4eb45a"},"event_level":2,"failed":false,"changed":false,"uuid":"425d9dd7-83af-8766-beed-00000000000c","parent_uuid":"425d9dd7-83af-8766-beed-000000000006","host":null,"host_name":"","playbook":"hello_world.yml","play":"Echo + ******************************************************","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":2848,"type":"job_event","url":"/api/v2/job_events/2848/","related":{"job":"/api/v2/jobs/435/","children":"/api/v2/job_events/2848/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":435,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.4,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-02-06T16:21:51.238906Z","modified":"2023-02-06T16:21:51.366637Z","job":435,"event":"runner_on_start","counter":4,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"6c58ffa9-d4d3-4b72-adea-dc4f16df9d70","play":"Echo - Hello, world!","play_uuid":"425d9dd7-83af-8766-beed-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"425d9dd7-83af-8766-beed-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","uuid":"716d6b44-7c2d-4b47-b6d4-6d792318d995","guid":"95e47944ff9a462782f8a627bd4eb45a"},"event_level":3,"failed":false,"changed":false,"uuid":"716d6b44-7c2d-4b47-b6d4-6d792318d995","parent_uuid":"425d9dd7-83af-8766-beed-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":2851,"type":"job_event","url":"/api/v2/job_events/2851/","related":{"job":"/api/v2/jobs/435/","children":"/api/v2/job_events/2851/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":435,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.4,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-02-06T16:21:52.081490Z","modified":"2023-02-06T16:21:52.112657Z","job":435,"event":"runner_on_ok","counter":5,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"6c58ffa9-d4d3-4b72-adea-dc4f16df9d70","play":"Echo - Hello, world!","play_uuid":"425d9dd7-83af-8766-beed-000000000006","play_pattern":"localhost","task":"Gathering - Facts","task_uuid":"425d9dd7-83af-8766-beed-00000000000c","task_action":"gather_facts","task_args":"","task_path":"/runner/project/hello_world.yml:3","host":"localhost","remote_addr":"localhost","res":{"ansible_facts":{"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":"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":"9ea060876798","ansible_hostname":"9ea060876798","ansible_nodename":"9ea060876798","ansible_domain":"","ansible_userspace_bits":"64","ansible_architecture":"x86_64","ansible_userspace_architecture":"x86_64","ansible_machine_id":"3eb9ced214a84a1a912a0bb61665d04e","ansible_dns":{"nameservers":["10.0.2.3","10.11.5.19","10.5.30.45"]},"ansible_is_chroot":false,"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_date_time":{"year":"2023","month":"02","weekday":"Monday","weekday_number":"1","weeknumber":"06","day":"06","hour":"16","minute":"21","second":"51","epoch":"1675700511","epoch_int":"1675700511","date":"2023-02-06","time":"16:21:51","iso8601_micro":"2023-02-06T16:21:51.816252Z","iso8601":"2023-02-06T16:21:51Z","iso8601_basic":"20230206T162151816252","iso8601_basic_short":"20230206T162151","tz":"UTC","tz_dst":"UTC","tz_offset":"+0000"},"ansible_local":{},"ansible_hostnqn":"","ansible_fibre_channel_wwn":[],"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_processor":["0","GenuineIntel","Intel + 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":5261,"ansible_swaptotal_mb":0,"ansible_swapfree_mb":0,"ansible_memory_mb":{"real":{"total":7768,"used":2507,"free":5261},"nocache":{"free":5860,"used":1908},"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 + 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":5502937,"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":59419504640,"block_size":4096,"block_total":15699963,"block_available":14506715,"block_used":1193248,"inode_total":31404992,"inode_available":31260041,"inode_used":144951,"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":59419504640,"block_size":4096,"block_total":15699963,"block_available":14506715,"block_used":1193248,"inode_total":31404992,"inode_available":31260041,"inode_used":144951,"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":59419504640,"block_size":4096,"block_total":15699963,"block_available":14506715,"block_used":1193248,"inode_total":31404992,"inode_available":31260041,"inode_used":144951,"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":59419504640,"block_size":4096,"block_total":15699963,"block_available":14506715,"block_used":1193248,"inode_total":31404992,"inode_available":31260041,"inode_used":144951,"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":59419504640,"block_size":4096,"block_total":15699963,"block_available":14506715,"block_used":1193248,"inode_total":31404992,"inode_available":31260041,"inode_used":144951,"uuid":"N/A"}],"ansible_iscsi_iqn":"","ansible_virtualization_type":"container","ansible_virtualization_role":"guest","ansible_virtualization_tech_guest":["openstack","container"],"ansible_virtualization_tech_host":["kvm"],"ansible_fips":false,"ansible_apparmor":{"status":"disabled"},"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_pkg_mgr":"dnf","ansible_selinux_python_present":true,"ansible_selinux":{"status":"disabled"},"ansible_lsb":{},"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_service_mgr":"dumb-init","gather_subset":["all"],"module_setup":true},"warnings":[],"deprecations":[],"_ansible_verbose_override":true,"_ansible_no_log":false,"changed":false},"start":"2023-02-06T16:21:51.238834","end":"2023-02-06T16:21:52.081301","duration":0.842467,"event_loop":null,"uuid":"bf1175d6-2e63-4ff3-8474-e52e8bc28977","guid":"95e47944ff9a462782f8a627bd4eb45a"},"event_level":3,"failed":false,"changed":false,"uuid":"bf1175d6-2e63-4ff3-8474-e52e8bc28977","parent_uuid":"425d9dd7-83af-8766-beed-00000000000c","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo + 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":2849,"type":"job_event","url":"/api/v2/job_events/2849/","related":{"job":"/api/v2/jobs/435/","children":"/api/v2/job_events/2849/children/"},"summary_fields":{"job":{"id":435,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.4,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-02-06T16:21:52.091772Z","modified":"2023-02-06T16:21:52.108352Z","job":435,"event":"playbook_on_task_start","counter":6,"event_display":"Task - Started (debug)","event_data":{"playbook":"hello_world.yml","playbook_uuid":"6c58ffa9-d4d3-4b72-adea-dc4f16df9d70","play":"Echo - Hello, world!","play_uuid":"425d9dd7-83af-8766-beed-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"425d9dd7-83af-8766-beed-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","name":"debug","is_conditional":false,"uuid":"425d9dd7-83af-8766-beed-000000000008","guid":"95e47944ff9a462782f8a627bd4eb45a"},"event_level":2,"failed":false,"changed":false,"uuid":"425d9dd7-83af-8766-beed-000000000008","parent_uuid":"425d9dd7-83af-8766-beed-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":2850,"type":"job_event","url":"/api/v2/job_events/2850/","related":{"job":"/api/v2/jobs/435/","children":"/api/v2/job_events/2850/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":435,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.4,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-02-06T16:21:52.092466Z","modified":"2023-02-06T16:21:52.108432Z","job":435,"event":"runner_on_start","counter":7,"event_display":"Host - Started","event_data":{"playbook":"hello_world.yml","playbook_uuid":"6c58ffa9-d4d3-4b72-adea-dc4f16df9d70","play":"Echo - Hello, world!","play_uuid":"425d9dd7-83af-8766-beed-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"425d9dd7-83af-8766-beed-000000000008","task_action":"debug","task_args":"","task_path":"/runner/project/hello_world.yml:7","host":"localhost","uuid":"eea5e1bf-bddd-4943-8a7c-262833c01115","guid":"95e47944ff9a462782f8a627bd4eb45a"},"event_level":3,"failed":false,"changed":false,"uuid":"eea5e1bf-bddd-4943-8a7c-262833c01115","parent_uuid":"425d9dd7-83af-8766-beed-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":2852,"type":"job_event","url":"/api/v2/job_events/2852/","related":{"job":"/api/v2/jobs/435/","children":"/api/v2/job_events/2852/children/","host":"/api/v2/hosts/1/"},"summary_fields":{"host":{"id":1,"name":"localhost","description":""},"job":{"id":435,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.4,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-02-06T16:21:52.103135Z","modified":"2023-02-06T16:21:52.111117Z","job":435,"event":"runner_on_ok","counter":8,"event_display":"Host - OK","event_data":{"playbook":"hello_world.yml","playbook_uuid":"6c58ffa9-d4d3-4b72-adea-dc4f16df9d70","play":"Echo - Hello, world!","play_uuid":"425d9dd7-83af-8766-beed-000000000006","play_pattern":"localhost","task":"debug","task_uuid":"425d9dd7-83af-8766-beed-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-02-06T16:21:52.092397","end":"2023-02-06T16:21:52.102897","duration":0.0105,"event_loop":null,"uuid":"0f9753c8-b6a3-4561-a750-753c10064e11","guid":"95e47944ff9a462782f8a627bd4eb45a"},"event_level":3,"failed":false,"changed":false,"uuid":"0f9753c8-b6a3-4561-a750-753c10064e11","parent_uuid":"425d9dd7-83af-8766-beed-000000000008","host":1,"host_name":"localhost","playbook":"hello_world.yml","play":"Echo + [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":2853,"type":"job_event","url":"/api/v2/job_events/2853/","related":{"job":"/api/v2/jobs/435/","children":"/api/v2/job_events/2853/children/"},"summary_fields":{"job":{"id":435,"name":"Hello - World","description":"Hello World 490","status":"successful","failed":false,"elapsed":7.4,"type":"job","job_template_id":9,"job_template_name":"Hello - World"},"role":{}},"created":"2023-02-06T16:21:52.114824Z","modified":"2023-02-06T16:21:52.434458Z","job":435,"event":"playbook_on_stats","counter":9,"event_display":"Playbook - Complete","event_data":{"playbook":"hello_world.yml","playbook_uuid":"6c58ffa9-d4d3-4b72-adea-dc4f16df9d70","changed":{},"dark":{},"failures":{},"ignored":{},"ok":{"localhost":2},"processed":{"localhost":1},"rescued":{},"skipped":{},"artifact_data":{},"uuid":"7bc634b9-5199-467e-9be2-782d44f1f14a","guid":"95e47944ff9a462782f8a627bd4eb45a"},"event_level":1,"failed":false,"changed":false,"uuid":"7bc634b9-5199-467e-9be2-782d44f1f14a","parent_uuid":"6c58ffa9-d4d3-4b72-adea-dc4f16df9d70","host":null,"host_name":"","playbook":"hello_world.yml","play":"","task":"","role":"","stdout":"\r\nPLAY + => {\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}]}' headers: @@ -201,11 +5426,11 @@ interactions: Content-Language: - en Content-Length: - - '20039' + - '20087' Content-Type: - application/json Date: - - Mon, 06 Feb 2023 16:21:59 GMT + - Mon, 17 Apr 2023 18:05:41 GMT Expires: - '0' Pragma: @@ -221,11 +5446,11 @@ interactions: X-API-Product-Version: - 4.1.0 X-API-Request-Id: - - 874175954a6544b4bd2fc60c2ee532a2 + - 30d89195db02473da268f136c91af5b9 X-API-Time: - - 0.265s + - 0.067s X-API-Total-Time: - - 0.591s + - 0.107s X-Frame-Options: - DENY X-UI-Max-Events: @@ -233,29 +5458,29 @@ interactions: status: code: 200 message: OK - url: https://examples.com/api/v2/jobs/435/job_events/ + 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/435/ + uri: https://examples.com/api/v2/jobs/1091/ response: body: - string: '{"id":435,"type":"job","url":"/api/v2/jobs/435/","related":{"created_by":"/api/v2/users/1/","labels":"/api/v2/jobs/435/labels/","inventory":"/api/v2/inventories/1/","project":"/api/v2/projects/8/","organization":"/api/v2/organizations/1/","credentials":"/api/v2/jobs/435/credentials/","unified_job_template":"/api/v2/job_templates/9/","stdout":"/api/v2/jobs/435/stdout/","execution_environment":"/api/v2/execution_environments/3/","job_events":"/api/v2/jobs/435/job_events/","job_host_summaries":"/api/v2/jobs/435/job_host_summaries/","activity_stream":"/api/v2/jobs/435/activity_stream/","notifications":"/api/v2/jobs/435/notifications/","create_schedule":"/api/v2/jobs/435/create_schedule/","job_template":"/api/v2/job_templates/9/","cancel":"/api/v2/jobs/435/cancel/","relaunch":"/api/v2/jobs/435/relaunch/"},"summary_fields":{"organization":{"id":1,"name":"Default","description":""},"inventory":{"id":1,"name":"Demo + 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-02-06T16:21:48.170337Z","modified":"2023-02-06T16:21:48.665207Z","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-02-06T16:21:48.754485Z","finished":"2023-02-06T16:21:56.154082Z","canceled_on":null,"elapsed":7.4,"job_args":"[\"podman\", + \"$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_435_admuk2gj/:/runner/:Z\", \"--authfile=/tmp/ansible_runner_registry_435_dm6dcn0z/auth.json\", - \"--env-file\", \"/tmp/awx_435_admuk2gj/artifacts/435/env.list\", \"--quiet\", - \"--name\", \"ansible_runner_435\", \"--user=root\", \"registry.redhat.io/ansible-automation-platform-21/ee-supported-rhel8:latest\", + \"-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/435","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_435_admuk2gj","JOB_ID":"435","INVENTORY_ID":"1","PROJECT_REVISION":"7dc5aa7f7bfb0b7ba2a26c9f5d99194be3c9a670","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":"Subu66Uq","job_template":9,"passwords_needed_to_start":[],"allow_simultaneous":false,"artifacts":{},"scm_revision":"7dc5aa7f7bfb0b7ba2a26c9f5d99194be3c9a670","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}' + \"-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}' headers: Access-Control-Expose-Headers: - X-API-Request-Id @@ -268,11 +5493,11 @@ interactions: Content-Language: - en Content-Length: - - '4659' + - '4681' Content-Type: - application/json Date: - - Mon, 06 Feb 2023 16:22:00 GMT + - Mon, 17 Apr 2023 18:05:41 GMT Expires: - '0' Pragma: @@ -288,15 +5513,15 @@ interactions: X-API-Product-Version: - 4.1.0 X-API-Request-Id: - - 4d1b1c26067c4177ae31bcc9adaba41c + - 3c169d3c87334e8b9a990a5ec7c4f9ab X-API-Time: - - 0.257s + - 0.048s X-API-Total-Time: - - 0.576s + - 0.086s X-Frame-Options: - DENY status: code: 200 message: OK - url: https://examples.com/api/v2/jobs/435/ + url: https://examples.com/api/v2/jobs/1091/ version: 1 diff --git a/tests/cassettes/test_job_template_not_exist.yaml b/tests/cassettes/test_job_template_not_exist.yaml new file mode 100644 index 00000000..6ae49386 --- /dev/null +++ b/tests/cassettes/test_job_template_not_exist.yaml @@ -0,0 +1,67 @@ +interactions: +- request: + body: null + headers: + authorization: + - Bearer DUMMY + method: GET + 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/1091/\",\"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\":1091,\"name\":\"Hello + World\",\"description\":\"Hello World 490\",\"finished\":\"2023-04-17T18:05:40.839202Z\",\"status\":\"successful\",\"failed\":false},\"last_update\":{\"id\":1091,\"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\":1091,\"status\":\"successful\",\"finished\":\"2023-04-17T18:05:40.839202Z\",\"canceled_on\":null,\"type\":\"job\"},{\"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\"}],\"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-17T18:05:40.839202Z\",\"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}]}" + headers: + Access-Control-Expose-Headers: + - X-API-Request-Id + Allow: + - GET, POST, HEAD, OPTIONS + Cache-Control: + - no-cache, no-store, must-revalidate + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '8205' + Content-Type: + - application/json + Date: + - Mon, 17 Apr 2023 18:14:44 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: + - c54d9aeafc754f439efcd06dea25e7b5 + X-API-Time: + - 0.069s + X-API-Total-Time: + - 0.109s + X-Frame-Options: + - DENY + status: + code: 200 + message: OK + url: https://examples.com/api/v2/job_templates/?name=Hello+World +version: 1 diff --git a/tests/test_controller.py b/tests/test_controller.py index 54560924..bbe1f148 100644 --- a/tests/test_controller.py +++ b/tests/test_controller.py @@ -16,6 +16,7 @@ import pytest +from ansible_rulebook.exception import JobTemplateNotFoundException from ansible_rulebook.job_template_runner import job_template_runner @@ -40,3 +41,12 @@ async def test_job_template(): ) assert job["name"] == "Hello World" assert job["status"] == "successful" + + +@pytest.mark.vcr() +@pytest.mark.asyncio +async def test_job_template_not_exist(): + job_template_runner.host = "https://examples.com" + job_template_runner.token = "DUMMY" + with pytest.raises(JobTemplateNotFoundException): + await job_template_runner.run_job_template("Hello World", "no-org", {})