From 6d2627e759c5d7494125f02f0ca68f7f2cdc217f Mon Sep 17 00:00:00 2001 From: Vitaly Kravtsov Date: Fri, 6 Dec 2024 18:49:49 +0600 Subject: [PATCH 01/11] add raw data example Co-authored-by: Aleksandr Penskoi --- aidbox-with-python-sdk/docker-compose.yaml | 44 + aidbox-with-python-sdk/main.py | 140 ++ aidbox-with-python-sdk/patients.csv | 4 + aidbox-with-python-sdk/requirements.txt | 2 + aidbox-with-python-sdk/tmp/aidbox.ndjson | 1753 +++++++++++++++++ .../tmp/hsperfdata_aidbox/1 | Bin 0 -> 32768 bytes 6 files changed, 1943 insertions(+) create mode 100644 aidbox-with-python-sdk/docker-compose.yaml create mode 100644 aidbox-with-python-sdk/main.py create mode 100644 aidbox-with-python-sdk/patients.csv create mode 100644 aidbox-with-python-sdk/requirements.txt create mode 100644 aidbox-with-python-sdk/tmp/aidbox.ndjson create mode 100644 aidbox-with-python-sdk/tmp/hsperfdata_aidbox/1 diff --git a/aidbox-with-python-sdk/docker-compose.yaml b/aidbox-with-python-sdk/docker-compose.yaml new file mode 100644 index 00000000..0153471d --- /dev/null +++ b/aidbox-with-python-sdk/docker-compose.yaml @@ -0,0 +1,44 @@ +volumes: + subs-pgdata: + name: subs-pgdata + subs-kafka-data: + name: subs-kafka-data +services: + + aidbox-db: + image: healthsamurai/aidboxdb:16.1 + pull_policy: always + ports: + - "5438:5432" + volumes: + - "subs-pgdata:/data:delegated" + environment: + POSTGRES_USER: postgres + POSTGRES_PASSWORD: postgres + POSTGRES_DB: aidbox + + aidbox: + image: healthsamurai/aidboxone:edge + pull_policy: always + depends_on: ["aidbox-db"] + volumes: + - "./tmp:/tmp" + ports: + - "8888:8888" + environment: + PGPORT: 5432 + PGHOST: aidbox-db + PGHOSTPORT: 5438 + PGUSER: postgres + PGPASSWORD: postgres + PGDATABASE: aidbox + AIDBOX_BASE_URL: http://localhost:8888 + AIDBOX_PORT: 8888 + env_file: + - .env + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:8888/health"] + interval: 30s + timeout: 10s + retries: 5 + start_period: 30s \ No newline at end of file diff --git a/aidbox-with-python-sdk/main.py b/aidbox-with-python-sdk/main.py new file mode 100644 index 00000000..5ddeff16 --- /dev/null +++ b/aidbox-with-python-sdk/main.py @@ -0,0 +1,140 @@ +from fhirpy import SyncFHIRClient +from typing import List, Optional, Literal, Annotated +from fhirpy.base.resource_protocol import ResourceProtocol +from pydantic import BaseModel as BaseModel_, Field, Extra +from datetime import datetime + +# Models +class BaseModel(BaseModel_): + class Config: + validate_assignment = True + allow_population_by_field_name = True + + def dict(self, *args, **kwargs): + by_alias = kwargs.pop('by_alias', True) + return super().dict(*args, **kwargs, by_alias=by_alias) + + +class HumanName(BaseModel): + use: Optional[str] = None + text: Optional[str] = None + given: Optional[List[str]] = None + family: Optional[str] = None + prefix: Optional[List[str]] = None + suffix: Optional[List[str]] = None + + +class Patient(BaseModel): + resourceType: str = 'Patient' + id: Optional[str] = None + gender: Optional[str] = None + name: Optional[List[HumanName]] = None + active: Optional[bool] = None + +client = SyncFHIRClient( + url="http://localhost:8888/", + authorization="Basic cm9vdDpzZWNyZXQ=", + # dump_resource=BaseModel.model_dump +) + +newpt = Patient( + name=[HumanName(given=['rabrab'], family='Bababa')], + active=True, + gender='female' +) + +def csv_to_dict(file_path): + with open(file_path, mode='r') as file: + lines = file.readlines() + keys = lines[0].strip().split(',') + data = lines[1:] + result = [] + for line in data: + values = line.strip().split(',') + result.append(dict(zip(keys, values))) + return result + +def dict_to_csv(data, file_path): + with open(file_path, mode='w') as file: + columns = data[0].keys() + rows = [] + for item in data: + rows.append(','.join([str(item[column]) for column in columns])) + file.write(','.join(columns) + '\n') + file.write('\n'.join(rows)) + + +def import_data(client, file_path): + raw_data = csv_to_dict(file_path) + now = datetime.now().strftime('%Y-%m-%dT%H:%M:%S+00:00') + for item in raw_data: + patient_to_update = client.resource("Patient", + name=[{'given': [item['given']], 'family': item['family']}], + gender=item['gender'], + ) + patient, is_created = client.resources("Patient").search(given=item['given'], family=item['family']).update(patient_to_update) + patient_id = dict(patient)['id'] + observation = client.resource("Observation", + status='final', + code={'text': 'Body weight'}, + subject={'reference': f'Patient/{patient_id}'}, + valueQuantity={'value':int(item['weight']), 'unit': 'kg'}, + effectiveDateTime=now, + ) + +import_data(client, 'patients.csv') + + # find id (new patient or existing) +# patient = client.resources('Patient').search(name=f"{item['first_name']} {item['last_name']}").first() + +# patient = client.resource('patient', ) + +# patient = Patient( +# name=[HumanName(given=[item['first_name']], family=item['last_name'])], +# active=item['active'] == 'True', + +# 1. [ ] Write examples of runtime usage in [Aidbox/examples](https://github.com/Aidbox/examples): +# - Tasks (with implementation stage): +# 1. Python module with CSV Patient+Observation import/export. Export should provide some kind of filters/searches. +# 2. Wrap it with FastAPI. +# - SDK Adoption level: +# 1. Python SDK Runtime only. +# 1. Python SDK Runtime + provided Python classes. +# 1. Python SDK Runtime + FHIR Schema Codegen. +# - In process we should use something like PyCharm and note autocompletion and typechecking warnings. +# - Make comparison table between different SDK adoption levels. It should show to us sailing/growing points. + + + + +# client.create(newpt) + + +# print(read_file()) + +# + +# newpt = Patient(name=[HumanName(text='John doe')], active=True) +# newpt = Patient(active=True) + + +# client.get() + +# class API(BaseModel): +# def save(self): +# resource_type = self.__class__.__name__ + +# client.save() + +# response = requests.put( +# url=f"{base}/fhir/{resource_type}/{self.id or ''}", +# json=self.dumps(exclude_unset=True), +# auth=basic, +# ) +# response.raise_for_status() # TODO: handle and type HTTP codes except 200+ +# data = response.json() +# self.id = data["id"] +# self.meta = Meta(**data["meta"]) + +# class PatientAR(API): +# active: Optional[bool] = None diff --git a/aidbox-with-python-sdk/patients.csv b/aidbox-with-python-sdk/patients.csv new file mode 100644 index 00000000..8463dc53 --- /dev/null +++ b/aidbox-with-python-sdk/patients.csv @@ -0,0 +1,4 @@ +given,family,gender,weight +John,Doe,male,83 +Alice,Doe,female,63 +Charly,Doe,male,22 diff --git a/aidbox-with-python-sdk/requirements.txt b/aidbox-with-python-sdk/requirements.txt new file mode 100644 index 00000000..9a1c68e4 --- /dev/null +++ b/aidbox-with-python-sdk/requirements.txt @@ -0,0 +1,2 @@ +fhirpy==2.0.15 +pydantic==2.10.2 \ No newline at end of file diff --git a/aidbox-with-python-sdk/tmp/aidbox.ndjson b/aidbox-with-python-sdk/tmp/aidbox.ndjson new file mode 100644 index 00000000..78b9948e --- /dev/null +++ b/aidbox-with-python-sdk/tmp/aidbox.ndjson @@ -0,0 +1,1753 @@ +{"sql":"SELECT 1","d":1,"timeUnix":1733486190582,"ts":"2024-12-06T11:56:30.582Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select pg_advisory_lock(7777)","d":8,"timeUnix":1733486190590,"ts":"2024-12-06T11:56:30.590Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"SELECT 1","d":1,"timeUnix":1733486190590,"ts":"2024-12-06T11:56:30.590Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} +{"sql":"SELECT TRUE FROM \"pg_catalog\".\"pg_roles\" WHERE \"rolname\" = ?","d":2,"db_prm":["postgres"],"timeUnix":1733486190593,"ts":"2024-12-06T11:56:30.593Z","w":"main","ev":"db/q","tn":"devbox"} +{"db":"aidbox","timeUnix":1733486190593,"ts":"2024-12-06T11:56:30.593Z","w":"main","ev":"db/create-db","tn":"devbox"} +{"sql":"SELECT TRUE FROM \"pg_database\" WHERE \"datname\" = ?","d":2,"db_prm":["aidbox"],"timeUnix":1733486190595,"ts":"2024-12-06T11:56:30.595Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select pg_advisory_unlock(7777)","d":1,"timeUnix":1733486190596,"ts":"2024-12-06T11:56:30.596Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"SELECT 1","d":1,"timeUnix":1733486190604,"ts":"2024-12-06T11:56:30.604Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} +{"sql":"select pg_advisory_lock(7777)","d":2,"timeUnix":1733486190606,"ts":"2024-12-06T11:56:30.606Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select sum(pg_relation_size(oid)\n + case when reltoastrelid = 0\n\t then 0\n\t else pg_relation_size(reltoastrelid)\n\t end) as size\n from pg_class\n where relkind = 'r'\n and not relisshared\n and not relname in ('_import_all', 'codesystem', 'concept', 'valueset')","d":3,"timeUnix":1733486190607,"ts":"2024-12-06T11:56:30.607Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} +{"sql":"SELECT * FROM pg_available_extensions","d":23,"timeUnix":1733486190629,"ts":"2024-12-06T11:56:30.629Z","w":"main","ev":"db/q","tn":"devbox"} +{"msg":"These extensions are optional and not available: #{\"jsquery\" \"jsonknife\" \"pg_similarity\"}.","lvl":"warn","timeUnix":1733486190632,"ts":"2024-12-06T11:56:30.632Z","w":"main","ev":"migration/optional-exts-are-not-available","tn":"devbox"} +{"msg":"Extension was installed: pgcrypto","lvl":"info","timeUnix":1733486190644,"ts":"2024-12-06T11:56:30.644Z","w":"main","ev":"migration/install-pg-extension-success","tn":"devbox"} +{"msg":"Extension was installed: pg_stat_statements","lvl":"info","timeUnix":1733486190654,"ts":"2024-12-06T11:56:30.654Z","w":"main","ev":"migration/install-pg-extension-success","tn":"devbox"} +{"msg":"Extension was installed: postgis","lvl":"info","timeUnix":1733486191274,"ts":"2024-12-06T11:56:31.274Z","w":"main","ev":"migration/install-pg-extension-success","tn":"devbox"} +{"msg":"Extension was installed: fuzzystrmatch","lvl":"info","timeUnix":1733486191278,"ts":"2024-12-06T11:56:31.278Z","w":"main","ev":"migration/install-pg-extension-success","tn":"devbox"} +{"msg":"Extension was installed: pg_trgm","lvl":"info","timeUnix":1733486191285,"ts":"2024-12-06T11:56:31.284Z","w":"main","ev":"migration/install-pg-extension-success","tn":"devbox"} +{"msg":"Extension was installed: unaccent","lvl":"info","timeUnix":1733486191292,"ts":"2024-12-06T11:56:31.292Z","w":"main","ev":"migration/install-pg-extension-success","tn":"devbox"} +{"sql":"select true as result from pg_type where typname = 'jsonpath' and typnamespace in (select oid from pg_namespace where nspname in (select * from unnest(current_schemas(true))))","d":2,"timeUnix":1733486191295,"ts":"2024-12-06T11:56:31.295Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"SELECT current_schema","d":1,"timeUnix":1733486191297,"ts":"2024-12-06T11:56:31.297Z","w":"main","ev":"db/q","tn":"devbox"} +{"lvl":"info","msg":"Jsonknife extension is unavailable. INSTALL jsonpath jsonknife shim.","timeUnix":1733486191297,"ts":"2024-12-06T11:56:31.297Z","w":"main","ev":"migration/modules","tn":"devbox"} +{"lvl":"info","msg":"Create table _box","timeUnix":1733486191308,"ts":"2024-12-06T11:56:31.308Z","w":"main","ev":"proto.box/migrate-box","tn":"devbox"} +{"sql":"select pg_advisory_unlock(7777)","d":2,"timeUnix":1733486191346,"ts":"2024-12-06T11:56:31.346Z","w":"main","ev":"db/q","tn":"devbox"} +{"about":{"version":"edge:e5ca52437","channel":"edge","commit":"e5ca52437","zen-fhir-version":"0.6.42","timestamp":"2024-12-05T15:07:21Z"},"timeUnix":1733486191347,"ts":"2024-12-06T11:56:31.347Z","w":"main","ev":"aidbox/start","tn":"devbox"} +{"ev":"db/datasource","w":"main","tn":"devbox","minimum-idle":0,"timeUnix":1733486191443,"ts":"2024-12-06T11:56:31.443Z","connection-init-sql":"select 1","connection-timeout":30000,"database":"aidbox","maximum-pool-size":8,"idle-timeout":10000} +{"ev":"db/datasource","w":"main","tn":"devbox","minimum-idle":0,"timeUnix":1733486191473,"ts":"2024-12-06T11:56:31.473Z","connection-init-sql":"select 1","connection-timeout":30000,"database":"aidbox","maximum-pool-size":8,"idle-timeout":10000} +{"sql":"SELECT 1","d":1,"timeUnix":1733486199986,"ts":"2024-12-06T11:56:39.986Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select pg_advisory_lock(7777)","d":3,"timeUnix":1733486199989,"ts":"2024-12-06T11:56:39.989Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"SELECT TRUE FROM \"information_schema\".\"tables\" WHERE (\"table_schema\" = current_schema AND \"table_name\" = ?)","d":2,"db_prm":["_box"],"timeUnix":1733486199992,"ts":"2024-12-06T11:56:39.992Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select resource from _box where id = 'self'","d":0,"timeUnix":1733486199993,"ts":"2024-12-06T11:56:39.992Z","w":"main","ev":"db/q","tn":"devbox"} +{"box_id":"devbox","timeUnix":1733486199993,"ts":"2024-12-06T11:56:39.993Z","w":"main","ev":"proto.box/migrate-box","tn":"devbox"} +{"sql":"SELECT * FROM pg_available_extensions","d":2,"timeUnix":1733486199995,"ts":"2024-12-06T11:56:39.995Z","w":"main","ev":"db/q","tn":"devbox"} +{"msg":"These extensions are optional and not available: #{\"jsquery\" \"jsonknife\" \"pg_similarity\"}.","lvl":"warn","timeUnix":1733486199995,"ts":"2024-12-06T11:56:39.995Z","w":"main","ev":"migration/optional-exts-are-not-available","tn":"devbox"} +{"msg":"These extensions already installed: #{\"pgcrypto\" \"pg_stat_statements\" \"postgis\" \"fuzzystrmatch\" \"pg_trgm\" \"unaccent\"}","lvl":"info","timeUnix":1733486199996,"ts":"2024-12-06T11:56:39.996Z","w":"main","ev":"migration/exts-are-already-installed","tn":"devbox"} +{"sql":"select true as result from pg_type where typname = 'jsonpath' and typnamespace in (select oid from pg_namespace where nspname in (select * from unnest(current_schemas(true))))","d":1,"timeUnix":1733486199997,"ts":"2024-12-06T11:56:39.997Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"SELECT current_schema","d":1,"timeUnix":1733486199998,"ts":"2024-12-06T11:56:39.998Z","w":"main","ev":"db/q","tn":"devbox"} +{"lvl":"info","msg":"Jsonknife extension is unavailable. INSTALL jsonpath jsonknife shim.","timeUnix":1733486199998,"ts":"2024-12-06T11:56:39.998Z","w":"main","ev":"migration/modules","tn":"devbox"} +{"lvl":"info","msg":"Create table _box","timeUnix":1733486200003,"ts":"2024-12-06T11:56:40.003Z","w":"main","ev":"proto.box/migrate-box","tn":"devbox"} +{"lvl":"init","msg":"Do user init migration","timeUnix":1733486200100,"ts":"2024-12-06T11:56:40.100Z","w":"main","ev":"migration/user","tn":"devbox"} +{"sql":"SELECT current_schema","d":1,"timeUnix":1733486200101,"ts":"2024-12-06T11:56:40.101Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"SELECT TRUE FROM pg_extension WHERE extname = 'postgis'","d":2,"timeUnix":1733486200103,"ts":"2024-12-06T11:56:40.103Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select true as result from pg_type where typname = 'jsonpath'","d":0,"timeUnix":1733486200103,"ts":"2024-12-06T11:56:40.103Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"SELECT current_schemas(false)","d":17,"timeUnix":1733486200193,"ts":"2024-12-06T11:56:40.193Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"SELECT \"table_name\" FROM \"information_schema\".\"tables\" WHERE (\"table_schema\" in (?))","d":2,"db_prm":["public"],"timeUnix":1733486200196,"ts":"2024-12-06T11:56:40.196Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select current_schema","d":0,"timeUnix":1733486200197,"ts":"2024-12-06T11:56:40.197Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"SELECT current_schemas(false)","d":0,"timeUnix":1733486201456,"ts":"2024-12-06T11:56:41.456Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"SELECT \"table_name\" FROM \"information_schema\".\"tables\" WHERE (\"table_schema\" in (?))","d":2,"db_prm":["public"],"timeUnix":1733486201459,"ts":"2024-12-06T11:56:41.459Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select * from module","d":1,"timeUnix":1733486201461,"ts":"2024-12-06T11:56:41.461Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select id from searchparameter where resource->'_source' is null","d":1,"timeUnix":1733486201462,"ts":"2024-12-06T11:56:41.462Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select id from attribute where resource->'_source' is null","d":0,"timeUnix":1733486201462,"ts":"2024-12-06T11:56:41.462Z","w":"main","ev":"db/q","tn":"devbox"} +{"modules":["subs","intermsg","hl7v2-in","aws","mapper","auth","box","awf","azure","sdc","sql-on-fhir","proto","aidbox-apps","sdc2","gsapi","fhir-fhir-schema","bulk-fhir-export"],"timeUnix":1733486201462,"ts":"2024-12-06T11:56:41.462Z","w":"main","ev":"modules/update","tn":"devbox"} +{"sql":"select id, ts, cts, txid, resource_type, resource from \"entity\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":1,"timeUnix":1733486201486,"ts":"2024-12-06T11:56:41.486Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"SELECT * FROM \"user\" WHERE \"id\" = ?","d":0,"db_prm":["admin"],"timeUnix":1733486201526,"ts":"2024-12-06T11:56:41.526Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select id, ts, cts, txid, resource_type, resource from \"attribute\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":0,"timeUnix":1733486201529,"ts":"2024-12-06T11:56:41.529Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select id, ts, cts, txid, resource_type, resource from \"aidboxprofile\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":1,"timeUnix":1733486201820,"ts":"2024-12-06T11:56:41.820Z","w":"main","ev":"db/q","tn":"devbox"} +{"rid":"admin","rtp":"User","txid":"1","timeUnix":1733486201841,"ts":"2024-12-06T11:56:41.841Z","w":"main","ev":"resource/create","tn":"devbox"} +{"cache-event":{"type":"aidbox.cache/drop-session-on-resource-change","resourceType":"User","id":"admin","user-id":null},"timeUnix":1733486201841,"ts":"2024-12-06T11:56:41.841Z","w":"main","ev":"proto.cache.core/handle","tn":"devbox"} +{"sql":"select id, ts, cts, txid, resource_type, resource from \"subssubscription\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":1,"timeUnix":1733486201844,"ts":"2024-12-06T11:56:41.844Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select id, ts, cts, txid, resource_type, resource from \"aidboxsubscription\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":1,"timeUnix":1733486201846,"ts":"2024-12-06T11:56:41.845Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select id, resource->'module' as module from aidboxmigration where resource->>'status' = 'done'","d":1,"timeUnix":1733486201864,"ts":"2024-12-06T11:56:41.864Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select nextval('transaction_id_seq'::text) as id","d":0,"timeUnix":1733486201865,"ts":"2024-12-06T11:56:41.865Z","w":"main","ev":"db/q","tn":"devbox"} +{"mgr_id":"auth-migrate-jwt-authenticators","timeUnix":1733486201865,"ts":"2024-12-06T11:56:41.865Z","w":"main","ev":"db/migration","tn":"devbox"} +{"sql":"SELECT TRUE FROM \"information_schema\".\"tables\" WHERE (\"table_schema\" = current_schema AND \"table_name\" = ?)","d":1,"db_prm":["jwtauthenticator"],"timeUnix":1733486201867,"ts":"2024-12-06T11:56:41.867Z","w":"main","ev":"db/q","tn":"devbox"} +{"mgr_id":"remove-zen-module-from-boxes","timeUnix":1733486201871,"ts":"2024-12-06T11:56:41.871Z","w":"main","ev":"db/migration","tn":"devbox"} +{"sql":"SELECT TRUE FROM \"information_schema\".\"tables\" WHERE (\"table_schema\" = current_schema AND \"table_name\" = ?)","d":1,"db_prm":["_box"],"timeUnix":1733486201872,"ts":"2024-12-06T11:56:41.872Z","w":"main","ev":"db/q","tn":"devbox"} +{"mgr_id":"remove-zen-module","timeUnix":1733486201875,"ts":"2024-12-06T11:56:41.875Z","w":"main","ev":"db/migration","tn":"devbox"} +{"mgr_id":"create-task-queue","timeUnix":1733486201878,"ts":"2024-12-06T11:56:41.878Z","w":"main","ev":"db/migration","tn":"devbox"} +{"mgr_id":"create-action-queue","timeUnix":1733486201899,"ts":"2024-12-06T11:56:41.899Z","w":"main","ev":"db/migration","tn":"devbox"} +{"mgr_id":"eliminate-pool-migration","timeUnix":1733486201917,"ts":"2024-12-06T11:56:41.917Z","w":"main","ev":"db/migration","tn":"devbox"} +{"mgr_id":"concurrency-limit-migration","timeUnix":1733486201944,"ts":"2024-12-06T11:56:41.944Z","w":"main","ev":"db/migration","tn":"devbox"} +{"mgr_id":"auth-add-index-expiration-on-session","timeUnix":1733486201950,"ts":"2024-12-06T11:56:41.950Z","w":"main","ev":"db/migration","tn":"devbox"} +{"mgr_id":"create-sof-functions","timeUnix":1733486201966,"ts":"2024-12-06T11:56:41.966Z","w":"main","ev":"db/migration","tn":"devbox"} +{"mgr_id":"view-def-to-aidbox","timeUnix":1733486201973,"ts":"2024-12-06T11:56:41.973Z","w":"main","ev":"db/migration","tn":"devbox"} +{"sql":"SELECT EXISTS (SELECT table_name FROM information_schema.tables WHERE table_name = 'viewdefinition')","d":2,"timeUnix":1733486201976,"ts":"2024-12-06T11:56:41.976Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select * from viewdefinition","d":1,"timeUnix":1733486201977,"ts":"2024-12-06T11:56:41.977Z","w":"main","ev":"db/q","tn":"devbox"} +{"mgr_id":"topic-destination-event-store-bigserial-and-primary-key","timeUnix":1733486201983,"ts":"2024-12-06T11:56:41.983Z","w":"main","ev":"db/migration","tn":"devbox"} +{"mgr_id":"remove-sdc-token-introspector","timeUnix":1733486201990,"ts":"2024-12-06T11:56:41.990Z","w":"main","ev":"db/migration","tn":"devbox"} +{"mgr_id":"apply-hash-type-to-internal-resources","timeUnix":1733486201997,"ts":"2024-12-06T11:56:41.997Z","w":"main","ev":"db/migration","tn":"devbox"} +{"sql":"SELECT TRUE FROM \"information_schema\".\"tables\" WHERE (\"table_schema\" = current_schema AND \"table_name\" = ?)","d":1,"db_prm":["session"],"timeUnix":1733486202001,"ts":"2024-12-06T11:56:42.001Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"SELECT TRUE FROM \"information_schema\".\"tables\" WHERE (\"table_schema\" = current_schema AND \"table_name\" = ?)","d":1,"db_prm":["client"],"timeUnix":1733486202003,"ts":"2024-12-06T11:56:42.003Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select * from client","d":1,"timeUnix":1733486202004,"ts":"2024-12-06T11:56:42.004Z","w":"main","ev":"db/q","tn":"devbox"} +{"rid":"box-ui","rtp":"Client","txid":"3","timeUnix":1733486202010,"ts":"2024-12-06T11:56:42.010Z","w":"main","ev":"resource/update","tn":"devbox"} +{"cache-event":{"type":"aidbox.cache/drop-session-on-resource-change","resourceType":"Client","id":"box-ui","user-id":null},"timeUnix":1733486202010,"ts":"2024-12-06T11:56:42.010Z","w":"main","ev":"proto.cache.core/handle","tn":"devbox"} +{"cache-event":{"type":"aidbox.cache/drop-cache","path":["auth/clients","box-ui"]},"timeUnix":1733486202010,"ts":"2024-12-06T11:56:42.010Z","w":"main","ev":"proto.cache.core/handle","tn":"devbox"} +{"rid":"root","rtp":"Client","txid":"4","timeUnix":1733486202013,"ts":"2024-12-06T11:56:42.013Z","w":"main","ev":"resource/update","tn":"devbox"} +{"cache-event":{"type":"aidbox.cache/drop-session-on-resource-change","resourceType":"Client","id":"root","user-id":null},"timeUnix":1733486202013,"ts":"2024-12-06T11:56:42.013Z","w":"main","ev":"proto.cache.core/handle","tn":"devbox"} +{"cache-event":{"type":"aidbox.cache/drop-cache","path":["auth/clients","root"]},"timeUnix":1733486202013,"ts":"2024-12-06T11:56:42.013Z","w":"main","ev":"proto.cache.core/handle","tn":"devbox"} +{"mgr_id":"auth-add-btree-indexes-on-session","timeUnix":1733486202016,"ts":"2024-12-06T11:56:42.016Z","w":"main","ev":"db/migration","tn":"devbox"} +{"sql":"select pg_advisory_unlock(7777)","d":1,"timeUnix":1733486202052,"ts":"2024-12-06T11:56:42.051Z","w":"main","ev":"db/q","tn":"devbox"} +{"tn":"devbox","timeUnix":1733486202285,"ts":"2024-12-06T11:56:42.285Z","w":"main","ev":"box/init"} +{"sql":"SELECT TRUE FROM \"information_schema\".\"tables\" WHERE (\"table_schema\" = current_schema AND \"table_name\" = ?)","d":14,"db_prm":["aidboxtopicdestination"],"timeUnix":1733486202440,"ts":"2024-12-06T11:56:42.440Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"SELECT * FROM AidboxTopicDestination","d":1,"timeUnix":1733486202451,"ts":"2024-12-06T11:56:42.451Z","w":"main","ev":"db/q","tn":"devbox"} +{"runtime-id":"2ff18526-7246-4e16-83e1-b93d3a2acaba","timeUnix":1733486202453,"ts":"2024-12-06T11:56:42.453Z","w":"main","ev":"proto.cache.core/subscribed","tn":"devbox"} +{"sql":"SELECT * FROM \"tokenintrospector\" WHERE \"id\" = ?","d":3,"db_prm":["sdc-rsa-token-introspector"],"timeUnix":1733486202460,"ts":"2024-12-06T11:56:42.460Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select id, ts, cts, txid, resource_type, resource from \"aidboxconfig\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":1,"timeUnix":1733486202463,"ts":"2024-12-06T11:56:42.463Z","w":"main","ev":"db/q","tn":"devbox"} +{"ev":"rpc/call","rpc_m":"aidbox.zen/build-ftr-index","w":"clojure-agent-send-off-pool-1","rpc_u":{"email":null},"op":"rpc:build-ftr-index","timeUnix":1733486202484,"ts":"2024-12-06T11:56:42.484Z","d":27,"lvl":"info"} +{"rid":"sdc-rsa-token-introspector","rtp":"TokenIntrospector","txid":"5","timeUnix":1733486202487,"ts":"2024-12-06T11:56:42.487Z","w":"main","ev":"resource/create","tn":"devbox"} +{"cache-event":{"type":"aidbox.cache/resource-change","resourceType":"TokenIntrospector","id":"sdc-rsa-token-introspector"},"timeUnix":1733486202488,"ts":"2024-12-06T11:56:42.488Z","w":"main","ev":"proto.cache.core/handle","tn":"devbox"} +{"sql":"select id, ts, cts, txid, resource_type, resource from \"tokenintrospector\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":0,"timeUnix":1733486202488,"ts":"2024-12-06T11:56:42.488Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"select id, ts, cts, txid, resource_type, resource from \"tokenintrospector\" where id = ?\n and (resource->>'_source' <> 'code' or resource->>'_source' is null)\n limit 1","d":1,"db_prm":["sdc-rsa-token-introspector"],"timeUnix":1733486202490,"ts":"2024-12-06T11:56:42.490Z","w":"main","ev":"db/q","tn":"devbox"} +{"sql":"SELECT 1","d":1,"timeUnix":1733486202490,"ts":"2024-12-06T11:56:42.490Z","w":"clojure-agent-send-off-pool-0","ev":"db/q","tn":"devbox"} +{"w_port":8888,"timeUnix":1733486202493,"ts":"2024-12-06T11:56:42.493Z","w":"main","ev":"web.core/start","tn":"devbox"} +{"ev":"awf.executor/start-service","zen/tags":["aidbox/service"],"w":"main","shutdown-timeout":1000,"zen/file":"file:/aidbox.jar!/aidbox.edn","tn":"devbox","zen/name":"aidbox/aidbox-long-pool-executor-service","timeUnix":1733486202512,"ts":"2024-12-06T11:56:42.512Z","engine":"awf.executor/task-executor-service-engine","workers":3,"taskDefinitions":["aidbox.bulk/import-resource-task","aidbox.archive/create-archive","aidbox.archive/restore-archive","aidbox.archive/delete-archive","aidbox.archive/prune-archived-data","ingestion.core/map-to-fhir-bundle-task","aidbox.index/create-index-task","aidbox.index/drop-index-task","aidbox.validation/resource-type-batch-validation-task","awf.task/clean-up-activities","aidbox.task/run-sql","aidbox.task/run-rpc","fhir.topic-based-subscription/handshake","fhir.topic-based-subscription/topic-based-subscriptions-clean-up-task","box.npi/sync-npi"]} +{"ev":"awf.executor/start-service","zen/tags":["aidbox/service"],"w":"main","shutdown-timeout":1000,"zen/file":"file:/aidbox.jar!/aidbox.edn","tn":"devbox","zen/name":"aidbox/aidbox-decisions-pool-executor-service","timeUnix":1733486202516,"ts":"2024-12-06T11:56:42.516Z","engine":"awf.executor/task-executor-service-engine","workflowDefinitions":["aidbox.bulk/import-resources-workflow","aidbox.index/sync-indexes-workflow","aidbox.validation/resource-types-batch-validation-workflow","aidbox.task/call-task-on-sql-result-workflow"],"workers":2} +{"ev":"awf.core/start-service","zen/tags":["aidbox/service"],"w":"main","zen/file":"file:/aidbox.jar!/awf/task.edn","tn":"devbox","zen/name":"awf.task/task-service","timeUnix":1733486202516,"ts":"2024-12-06T11:56:42.516Z","engine":"awf.task/task-service-engine"} +{"ev":"db/datasource","w":"main","tn":"devbox","minimum-idle":0,"timeUnix":1733486202536,"ts":"2024-12-06T11:56:42.536Z","connection-init-sql":"select 1","connection-timeout":30000,"database":"aidbox","maximum-pool-size":8,"idle-timeout":10000} +{"sql":"select id, ts, cts, txid, resource_type, resource from \"operation\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":9,"timeUnix":1733486204455,"ts":"2024-12-06T11:56:44.454Z","w":"w1","ev":"db/q","tn":"devbox","ctx":"4202a0fc11cec72c"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":6,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486204476,"ts":"2024-12-06T11:56:44.476Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":52,"w_st":200,"ctx":"4202a0fc11cec72c"} +{"ev":"db/q","w":"w1","tn":"devbox","op":"health","timeUnix":1733486204479,"ts":"2024-12-06T11:56:44.479Z","sql":"select id, ts, cts, txid, resource_type, resource from \"lambda\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":1,"ctx":"4202a0fc11cec72c"} +{"ev":"w/req","w_url":"/","w":"w2","w_m":"get","tn":"devbox","op":"index","timeUnix":1733486208040,"ts":"2024-12-06T11:56:48.038Z","w_addr":"192.168.65.1","ctx":"8770b07ba751624a","wait_time":19} +{"ev":"db/q","w":"w2","tn":"devbox","op":"index","timeUnix":1733486208064,"ts":"2024-12-06T11:56:48.064Z","sql":"select id, ts, cts, txid, resource_type, resource from \"accesspolicy\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":15,"ctx":"8770b07ba751624a"} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"index","tn":"devbox","op":"index","timeUnix":1733486208076,"ts":"2024-12-06T11:56:48.076Z","access-policy-id":"index","ctx":"8770b07ba751624a"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/","w":"w2","execution_time":37,"w_m":"get","tn":"devbox","op":"index","timeUnix":1733486208079,"ts":"2024-12-06T11:56:48.079Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /","d":73,"w_st":302,"ctx":"8770b07ba751624a"} +{"ev":"w/req","w_url":"/ui/console","w":"w3","w_m":"get","tn":"devbox","op":"console","timeUnix":1733486208416,"ts":"2024-12-06T11:56:48.416Z","w_addr":"192.168.65.1","ctx":"fda5beb87ff8ca14","wait_time":1} +{"w_referer":null,"ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/ui/console","w":"w3","execution_time":158,"w_m":"get","tn":"devbox","op":"console","timeUnix":1733486208575,"ts":"2024-12-06T11:56:48.574Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /ui/console","d":166,"w_st":200,"ctx":"fda5beb87ff8ca14"} +{"ev":"w/req","w_url":"/auth/login","w":"w5","w_m":"get","tn":"devbox","op":"login-view","timeUnix":1733486209634,"ts":"2024-12-06T11:56:49.634Z","w_addr":"192.168.65.1","ctx":"909fe1c1416679fb","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-login-view","tn":"devbox","op":"login-view","timeUnix":1733486209635,"ts":"2024-12-06T11:56:49.635Z","access-policy-id":"auth-public-endpoints","ctx":"909fe1c1416679fb"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"login-view","timeUnix":1733486209642,"ts":"2024-12-06T11:56:49.642Z","sql":"SELECT * FROM \"authconfig\"","d":5,"ctx":"909fe1c1416679fb"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"login-view","timeUnix":1733486209649,"ts":"2024-12-06T11:56:49.649Z","sql":"select * from identityprovider","d":2,"ctx":"909fe1c1416679fb"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"login-view","timeUnix":1733486209652,"ts":"2024-12-06T11:56:49.651Z","sql":"SELECT * FROM \"authconfig\"","d":1,"ctx":"909fe1c1416679fb"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"login-view","timeUnix":1733486209657,"ts":"2024-12-06T11:56:49.657Z","sql":"SELECT * FROM \"authconfig\"","d":1,"ctx":"909fe1c1416679fb"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/login","w":"w5","execution_time":30,"w_m":"get","tn":"devbox","op":"login-view","timeUnix":1733486209664,"ts":"2024-12-06T11:56:49.664Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/login","d":33,"w_st":200,"ctx":"909fe1c1416679fb"} +{"ev":"w/req","w_url":"/favicon.ico","w":"w1","w_m":"get","tn":"devbox","op":"not-found-operation","timeUnix":1733486209975,"ts":"2024-12-06T11:56:49.975Z","w_addr":"192.168.65.1","ctx":"e28e6e8162fa2109","wait_time":0} +{"w_referer":"http://localhost:8888/auth/login","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/favicon.ico","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"not-found-operation","timeUnix":1733486209976,"ts":"2024-12-06T11:56:49.976Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /favicon.ico","d":2,"w_st":404,"ctx":"e28e6e8162fa2109"} +{"ev":"w/req","w_url":"/auth/login","w":"w3","w_m":"post","tn":"devbox","op":"login","timeUnix":1733486213982,"ts":"2024-12-06T11:56:53.982Z","w_addr":"192.168.65.1","ctx":"e4db0a0a40129413","wait_time":9,"w_qs":""} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-login","tn":"devbox","op":"login","timeUnix":1733486213985,"ts":"2024-12-06T11:56:53.985Z","access-policy-id":"auth-public-endpoints","ctx":"e4db0a0a40129413"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"login","timeUnix":1733486214003,"ts":"2024-12-06T11:56:54.003Z","sql":"select * from \"user\" where id = ? or lower(resource->>'email') = lower(?) or resource->>'userName' = ?","db_prm":["admin","admin","admin"],"d":15,"ctx":"e4db0a0a40129413"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"login","timeUnix":1733486214397,"ts":"2024-12-06T11:56:54.397Z","sql":"SELECT * FROM \"authconfig\"","d":1,"ctx":"e4db0a0a40129413"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"login","timeUnix":1733486214415,"ts":"2024-12-06T11:56:54.415Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"user\" WHERE (\"id\" in (?)))","db_prm":["admin"],"d":1,"ctx":"e4db0a0a40129413"} +{"ev":"resource/create","txid":"6","w":"w3","tn":"devbox","op":"login","timeUnix":1733486214422,"ts":"2024-12-06T11:56:54.422Z","rtp":"Session","ctx":"e4db0a0a40129413","rid":"558777b3-6e1d-4494-a4c5-ad6948f97458"} +{"ev":"auth/login","uid":"admin","w":"w3","tn":"devbox","op":"login","a_sid":"558777b3-6e1d-4494-a4c5-ad6948f97458","timeUnix":1733486214423,"ts":"2024-12-06T11:56:54.423Z","ctx":"e4db0a0a40129413"} +{"w_referer":"http://localhost:8888/auth/login","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/login","w":"w3","execution_time":441,"w_m":"post","tn":"devbox","op":"login","timeUnix":1733486214424,"ts":"2024-12-06T11:56:54.424Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /auth/login","d":465,"w_st":302,"ctx":"e4db0a0a40129413","w_qs":""} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733486214434,"ts":"2024-12-06T11:56:54.434Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"70f89b5339d8fd3a"} +{"ev":"w/req","w_url":"/ui/console","w":"w5","w_m":"get","tn":"devbox","op":"console","timeUnix":1733486214436,"ts":"2024-12-06T11:56:54.436Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"70f89b5339d8fd3a","wait_time":0} +{"w_referer":"http://localhost:8888/auth/login","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/ui/console","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"console","timeUnix":1733486214439,"ts":"2024-12-06T11:56:54.439Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /ui/console","w_uid":"admin","d":9,"w_st":200,"ctx":"70f89b5339d8fd3a"} +{"ev":"w/req","w_url":"/$config","w":"w2","w_m":"get","tn":"devbox","op":"config","timeUnix":1733486214961,"ts":"2024-12-06T11:56:54.960Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"827f8ce16a5933a8","wait_time":0} +{"ev":"w/req","w_url":"/AidboxWorkflow/onboarding-synthetic-dataset","w":"w1","w_m":"get","tn":"devbox","op":"read","timeUnix":1733486214962,"ts":"2024-12-06T11:56:54.962Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6f7c8e9955a12c16","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"Read","tn":"devbox","op":"read","timeUnix":1733486214964,"ts":"2024-12-06T11:56:54.964Z","access-policy-id":"devbox-policy","ctx":"6f7c8e9955a12c16"} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"proto/config","tn":"devbox","op":"config","timeUnix":1733486214966,"ts":"2024-12-06T11:56:54.965Z","access-policy-id":"devbox-policy","ctx":"827f8ce16a5933a8"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/$config","w":"w2","execution_time":6,"w_m":"get","tn":"devbox","op":"config","timeUnix":1733486214968,"ts":"2024-12-06T11:56:54.968Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /$config","w_uid":"admin","d":10,"w_st":200,"ctx":"827f8ce16a5933a8"} +{"ev":"db/q","w":"w1","tn":"devbox","op":"read","timeUnix":1733486214980,"ts":"2024-12-06T11:56:54.980Z","sql":"SELECT * FROM ((SELECT id, txid, ts, resource_type, status::text AS status, resource, cts FROM \"aidboxworkflow\" as t WHERE (t.id = ?)) UNION (SELECT id, txid, ts, resource_type, status::text AS status, resource, cts FROM \"aidboxworkflow_history\" as t WHERE (t.id = ? AND t.status = ?))) _ ORDER BY ts DESC, txid DESC LIMIT ?","db_prm":["onboarding-synthetic-dataset","onboarding-synthetic-dataset","deleted","1"],"d":9,"ctx":"6f7c8e9955a12c16"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/AidboxWorkflow/onboarding-synthetic-dataset","w":"w1","execution_time":20,"w_m":"get","tn":"devbox","op":"read","timeUnix":1733486214982,"ts":"2024-12-06T11:56:54.982Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"AidboxWorkflow","w_r":"GET /AidboxWorkflow/?","w_uid":"admin","d":25,"w_st":404,"ctx":"6f7c8e9955a12c16"} +{"ev":"w/req","w_url":"/rpc","w":"w2","w_m":"post","tn":"devbox","op":"rpc","timeUnix":1733486220562,"ts":"2024-12-06T11:57:00.562Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e440edaeeec46281","wait_time":11,"w_qs":"_format=transit&_m=aidbox.security/dashboard"} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"rpc","tn":"devbox","op":"rpc","timeUnix":1733486220565,"ts":"2024-12-06T11:57:00.565Z","access-policy-id":"devbox-policy","ctx":"e440edaeeec46281"} +{"ev":"db/q","w":"w2","tn":"devbox","op":"rpc:dashboard","timeUnix":1733486220608,"ts":"2024-12-06T11:57:00.607Z","sql":"select jsonb_build_array(jsonb_build_object('resource_type', 'User', 'count', (select count(*) from \"user\")), jsonb_build_object('resource_type', 'Client', 'count', (select count(*) from \"client\")), jsonb_build_object('resource_type', 'Session', 'count', (select count(*) from \"session\")), jsonb_build_object('resource_type', 'AccessPolicy', 'count', (select count(*) from \"accesspolicy\")), jsonb_build_object('resource_type', 'IdentityProvider', 'count', (select count(*) from \"identityprovider\")), ","d":19,"ctx":"e440edaeeec46281"} +{"ev":"rpc/call","rpc_m":"aidbox.security/dashboard","w":"w2","tn":"devbox","rpc_u":{"email":null},"op":"rpc:dashboard","timeUnix":1733486220611,"ts":"2024-12-06T11:57:00.611Z","d":34,"ctx":"e440edaeeec46281","lvl":"info"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/rpc","w":"w2","execution_time":49,"w_m":"post","tn":"devbox","op":"rpc:dashboard","timeUnix":1733486220612,"ts":"2024-12-06T11:57:00.612Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /rpc","w_uid":"admin","d":73,"w_st":200,"ctx":"e440edaeeec46281","w_qs":"_format=transit&_m=aidbox.security/dashboard"} +{"ev":"w/req","w_url":"/Client","w":"w7","w_m":"get","tn":"devbox","op":"search","timeUnix":1733486221576,"ts":"2024-12-06T11:57:01.576Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"855e41b2de7fc9bc","wait_time":0,"w_qs":"_count=300&_sort=_id&_ilike="} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"Search","tn":"devbox","op":"search","timeUnix":1733486221576,"ts":"2024-12-06T11:57:01.576Z","access-policy-id":"devbox-policy","ctx":"855e41b2de7fc9bc"} +{"ev":"db/q","w":"w7","tn":"devbox","op":"search","timeUnix":1733486221682,"ts":"2024-12-06T11:57:01.682Z","sql":"SELECT \"client\".* FROM \"client\" ORDER BY \"client\".id ASC LIMIT ? OFFSET ? ","db_prm":["300","0"],"d":43,"ctx":"855e41b2de7fc9bc"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/Client","w":"w7","execution_time":115,"w_m":"get","tn":"devbox","op":"search","timeUnix":1733486221691,"ts":"2024-12-06T11:57:01.691Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Client","w_r":"GET /Client","w_uid":"admin","d":116,"w_st":200,"ctx":"855e41b2de7fc9bc","w_qs":"_count=300&_sort=_id&_ilike="} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486224923,"ts":"2024-12-06T11:57:04.923Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1a7e19cd86f96f5d","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486224924,"ts":"2024-12-06T11:57:04.924Z","access-policy-id":"devbox-policy","ctx":"1a7e19cd86f96f5d"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486224924,"ts":"2024-12-06T11:57:04.924Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"1a7e19cd86f96f5d"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486234546,"ts":"2024-12-06T11:57:14.546Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"84b95e9f762a80b9"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486234929,"ts":"2024-12-06T11:57:14.929Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0d73ad9b5dc26315","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486234930,"ts":"2024-12-06T11:57:14.930Z","access-policy-id":"devbox-policy","ctx":"0d73ad9b5dc26315"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486234931,"ts":"2024-12-06T11:57:14.931Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"0d73ad9b5dc26315"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733486244936,"ts":"2024-12-06T11:57:24.936Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"fbc3cbd349041afd"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486244939,"ts":"2024-12-06T11:57:24.939Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"fbc3cbd349041afd","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486244940,"ts":"2024-12-06T11:57:24.940Z","access-policy-id":"devbox-policy","ctx":"fbc3cbd349041afd"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486244940,"ts":"2024-12-06T11:57:24.940Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":12,"w_st":200,"ctx":"fbc3cbd349041afd"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486254942,"ts":"2024-12-06T11:57:34.942Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a529a80db8cf003c","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486254943,"ts":"2024-12-06T11:57:34.943Z","access-policy-id":"devbox-policy","ctx":"a529a80db8cf003c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486254944,"ts":"2024-12-06T11:57:34.944Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"a529a80db8cf003c"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486264617,"ts":"2024-12-06T11:57:44.617Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":7,"w_st":200,"ctx":"a1776faafde1e520"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486264941,"ts":"2024-12-06T11:57:44.940Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"de65e73f64063b70","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486264942,"ts":"2024-12-06T11:57:44.941Z","access-policy-id":"devbox-policy","ctx":"de65e73f64063b70"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486264943,"ts":"2024-12-06T11:57:44.943Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"de65e73f64063b70"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w7","execution_time":4,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486274936,"ts":"2024-12-06T11:57:54.936Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":10,"w_st":200,"ctx":"96c7c28d2cd1cf9a"} +{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733486274939,"ts":"2024-12-06T11:57:54.939Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"7094b3f9a01825ce"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486274942,"ts":"2024-12-06T11:57:54.942Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7094b3f9a01825ce","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486274943,"ts":"2024-12-06T11:57:54.943Z","access-policy-id":"devbox-policy","ctx":"7094b3f9a01825ce"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486274943,"ts":"2024-12-06T11:57:54.943Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"7094b3f9a01825ce"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486284944,"ts":"2024-12-06T11:58:04.944Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7c1d6e85f160c201","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486284945,"ts":"2024-12-06T11:58:04.945Z","access-policy-id":"devbox-policy","ctx":"7c1d6e85f160c201"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486284947,"ts":"2024-12-06T11:58:04.947Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"7c1d6e85f160c201"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486294676,"ts":"2024-12-06T11:58:14.676Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":5,"w_st":200,"ctx":"ae9d54ac5fc82c56"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486294957,"ts":"2024-12-06T11:58:14.957Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"2c7a357f815cf08b","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486294958,"ts":"2024-12-06T11:58:14.958Z","access-policy-id":"devbox-policy","ctx":"2c7a357f815cf08b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486294959,"ts":"2024-12-06T11:58:14.959Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"2c7a357f815cf08b"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733486304959,"ts":"2024-12-06T11:58:24.959Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"cd9408b6d0c2a7e0"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486304963,"ts":"2024-12-06T11:58:24.963Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"cd9408b6d0c2a7e0","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486304964,"ts":"2024-12-06T11:58:24.964Z","access-policy-id":"devbox-policy","ctx":"cd9408b6d0c2a7e0"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486304965,"ts":"2024-12-06T11:58:24.965Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"cd9408b6d0c2a7e0"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486314962,"ts":"2024-12-06T11:58:34.962Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b9e0b1b0906c0b18","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486314963,"ts":"2024-12-06T11:58:34.963Z","access-policy-id":"devbox-policy","ctx":"b9e0b1b0906c0b18"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486314964,"ts":"2024-12-06T11:58:34.964Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"b9e0b1b0906c0b18"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486324775,"ts":"2024-12-06T11:58:44.775Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":9,"w_st":200,"ctx":"e476fde0f1bc7972"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486324965,"ts":"2024-12-06T11:58:44.965Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a7d8bb2275d94a5e","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486324967,"ts":"2024-12-06T11:58:44.967Z","access-policy-id":"devbox-policy","ctx":"a7d8bb2275d94a5e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486324968,"ts":"2024-12-06T11:58:44.968Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"a7d8bb2275d94a5e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486334953,"ts":"2024-12-06T11:58:54.953Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":7,"w_st":200,"ctx":"f22ed47cd3e7dc0a"} +{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733486334964,"ts":"2024-12-06T11:58:54.964Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"b872d024af334c6f"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486334965,"ts":"2024-12-06T11:58:54.965Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b872d024af334c6f","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486334966,"ts":"2024-12-06T11:58:54.966Z","access-policy-id":"devbox-policy","ctx":"b872d024af334c6f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486334966,"ts":"2024-12-06T11:58:54.966Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"b872d024af334c6f"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486344985,"ts":"2024-12-06T11:59:04.985Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e4eec09447584cea","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486344986,"ts":"2024-12-06T11:59:04.986Z","access-policy-id":"devbox-policy","ctx":"e4eec09447584cea"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486344986,"ts":"2024-12-06T11:59:04.986Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"e4eec09447584cea"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733486352289,"ts":"2024-12-06T11:59:12.289Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":2,"ctx":"2c5f1254784c8031"} +{"ev":"w/req","w_url":"/Patient","w":"w2","w_m":"post","tn":"devbox","op":"create","timeUnix":1733486352291,"ts":"2024-12-06T11:59:12.291Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"2c5f1254784c8031","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733486352294,"ts":"2024-12-06T11:59:12.294Z","access-policy-id":"devbox-policy","ctx":"2c5f1254784c8031"} +{"ev":"resource/create","txid":"7","w":"w2","tn":"devbox","op":"create","timeUnix":1733486352790,"ts":"2024-12-06T11:59:12.790Z","rtp":"Patient","ctx":"2c5f1254784c8031","rid":"1ec0f8de-1984-4700-a020-2734b8d425fa"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w2","execution_time":502,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733486352793,"ts":"2024-12-06T11:59:12.793Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"POST /Patient","d":514,"w_st":201,"ctx":"2c5f1254784c8031"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486354827,"ts":"2024-12-06T11:59:14.826Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"5d988cd1d2b45705"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486355043,"ts":"2024-12-06T11:59:15.043Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3ce219fc2cc5e2e5","wait_time":7} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486355043,"ts":"2024-12-06T11:59:15.043Z","access-policy-id":"devbox-policy","ctx":"3ce219fc2cc5e2e5"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486355044,"ts":"2024-12-06T11:59:15.044Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"3ce219fc2cc5e2e5"} +{"ev":"w/req","w_url":"/fhir/Patient","w":"w1","w_m":"get","tn":"devbox","op":"search","timeUnix":1733486357105,"ts":"2024-12-06T11:59:17.105Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b2f8a551b974167c","wait_time":2,"w_qs":"_count=30&_sort=_id&_ilike="} +{"ev":"w/req","w_url":"/rpc","w":"w2","w_m":"post","tn":"devbox","op":"rpc","timeUnix":1733486357105,"ts":"2024-12-06T11:59:17.105Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ee6da69f55ac3591","wait_time":10,"w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"FhirSearch","tn":"devbox","op":"search","timeUnix":1733486357106,"ts":"2024-12-06T11:59:17.106Z","access-policy-id":"devbox-policy","ctx":"b2f8a551b974167c"} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"rpc","tn":"devbox","op":"rpc","timeUnix":1733486357106,"ts":"2024-12-06T11:59:17.106Z","access-policy-id":"devbox-policy","ctx":"ee6da69f55ac3591"} +{"ev":"w/req","w_url":"/fhir/metadata","w":"w5","w_m":"get","tn":"devbox","op":"capability","timeUnix":1733486357106,"ts":"2024-12-06T11:59:17.106Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f0af8fa43c606cf7","wait_time":10,"w_qs":"include-custom-resources=true"} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"fhir-capability","tn":"devbox","op":"capability","timeUnix":1733486357107,"ts":"2024-12-06T11:59:17.107Z","access-policy-id":"devbox-policy","ctx":"f0af8fa43c606cf7"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"capability","timeUnix":1733486357113,"ts":"2024-12-06T11:59:17.113Z","sql":"SELECT * FROM \"aidboxconfig\" WHERE \"id\" = ?","db_prm":["box"],"d":2,"ctx":"f0af8fa43c606cf7"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"capability","timeUnix":1733486357116,"ts":"2024-12-06T11:59:17.116Z","sql":"select id, ts, cts, txid, resource_type, resource from \"searchparameter\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":3,"ctx":"f0af8fa43c606cf7"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/metadata","w":"w5","execution_time":16,"w_m":"get","tn":"devbox","op":"capability","timeUnix":1733486357122,"ts":"2024-12-06T11:59:17.122Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /fhir/metadata","w_uid":"admin","d":30,"w_st":200,"ctx":"f0af8fa43c606cf7","w_qs":"include-custom-resources=true"} +{"ev":"db/q","w":"w1","tn":"devbox","op":"search","timeUnix":1733486357222,"ts":"2024-12-06T11:59:17.222Z","sql":"SELECT \"patient\".* FROM \"patient\" ORDER BY \"patient\".id ASC LIMIT ? OFFSET ? ","db_prm":["30","0"],"d":1,"ctx":"b2f8a551b974167c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Patient","w":"w1","execution_time":121,"w_m":"get","tn":"devbox","op":"search","timeUnix":1733486357226,"ts":"2024-12-06T11:59:17.226Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Patient","w_r":"GET /fhir/Patient","w_uid":"admin","d":134,"w_st":200,"ctx":"b2f8a551b974167c","w_qs":"_count=30&_sort=_id&_ilike="} +{"rpc_p":{"resource-type":"Patient"},"ev":"rpc/call","rpc_m":"aidbox.introspector/get-schemas-by-resource-type","w":"w2","tn":"devbox","rpc_u":{"email":null},"op":"rpc:get-schemas-by-resource-type","timeUnix":1733486357485,"ts":"2024-12-06T11:59:17.485Z","d":369,"ctx":"ee6da69f55ac3591","lvl":"info"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/rpc","w":"w2","execution_time":379,"w_m":"post","tn":"devbox","op":"rpc:get-schemas-by-resource-type","timeUnix":1733486357485,"ts":"2024-12-06T11:59:17.485Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /rpc","w_uid":"admin","d":393,"w_st":200,"ctx":"ee6da69f55ac3591","w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} +{"ev":"w/req","w_url":"/fhir/Patient/$validate","w":"w6","w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733486359587,"ts":"2024-12-06T11:59:19.587Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"2136d3236ec4a74c","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"FhirValidateCreate","tn":"devbox","op":"$validate","timeUnix":1733486359588,"ts":"2024-12-06T11:59:19.588Z","access-policy-id":"devbox-policy","ctx":"2136d3236ec4a74c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Patient/$validate","w":"w6","execution_time":219,"w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733486359807,"ts":"2024-12-06T11:59:19.807Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Patient","w_r":"POST /fhir/Patient/$validate","w_uid":"admin","d":225,"w_st":200,"ctx":"2136d3236ec4a74c"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733486364980,"ts":"2024-12-06T11:59:24.980Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"c45ff945135bbd08"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486364985,"ts":"2024-12-06T11:59:24.984Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c45ff945135bbd08","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486364985,"ts":"2024-12-06T11:59:24.985Z","access-policy-id":"devbox-policy","ctx":"c45ff945135bbd08"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486364986,"ts":"2024-12-06T11:59:24.986Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"c45ff945135bbd08"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486374995,"ts":"2024-12-06T11:59:34.994Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0f1e59f38c05364d","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486374996,"ts":"2024-12-06T11:59:34.996Z","access-policy-id":"devbox-policy","ctx":"0f1e59f38c05364d"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486374997,"ts":"2024-12-06T11:59:34.997Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"0f1e59f38c05364d"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486384908,"ts":"2024-12-06T11:59:44.908Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":7,"w_st":200,"ctx":"981ff24e697f8f11"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486384991,"ts":"2024-12-06T11:59:44.991Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7c059659ee035f73","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486384992,"ts":"2024-12-06T11:59:44.992Z","access-policy-id":"devbox-policy","ctx":"7c059659ee035f73"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486384992,"ts":"2024-12-06T11:59:44.992Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"7c059659ee035f73"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486394942,"ts":"2024-12-06T11:59:54.942Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":4,"w_st":200,"ctx":"776468e0db01e918"} +{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733486394990,"ts":"2024-12-06T11:59:54.990Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"febde997ffa86cdf"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486394992,"ts":"2024-12-06T11:59:54.992Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"febde997ffa86cdf","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486394993,"ts":"2024-12-06T11:59:54.993Z","access-policy-id":"devbox-policy","ctx":"febde997ffa86cdf"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486394993,"ts":"2024-12-06T11:59:54.993Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"febde997ffa86cdf"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486404998,"ts":"2024-12-06T12:00:04.998Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1b0557f9a6b52a01","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486404999,"ts":"2024-12-06T12:00:04.999Z","access-policy-id":"devbox-policy","ctx":"1b0557f9a6b52a01"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486405000,"ts":"2024-12-06T12:00:04.999Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"1b0557f9a6b52a01"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486414970,"ts":"2024-12-06T12:00:14.970Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"c19ef57770910c84"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486414993,"ts":"2024-12-06T12:00:14.993Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"cc8eb4838931a12e","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486414994,"ts":"2024-12-06T12:00:14.994Z","access-policy-id":"devbox-policy","ctx":"cc8eb4838931a12e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486414994,"ts":"2024-12-06T12:00:14.994Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"cc8eb4838931a12e"} +{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733486425005,"ts":"2024-12-06T12:00:25.005Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":7,"ctx":"2aedb573ea88efe7"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486425008,"ts":"2024-12-06T12:00:25.008Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"2aedb573ea88efe7","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486425008,"ts":"2024-12-06T12:00:25.008Z","access-policy-id":"devbox-policy","ctx":"2aedb573ea88efe7"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486425009,"ts":"2024-12-06T12:00:25.009Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":13,"w_st":200,"ctx":"2aedb573ea88efe7"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486435014,"ts":"2024-12-06T12:00:35.014Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f49c5c8e4a0049ec","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486435016,"ts":"2024-12-06T12:00:35.016Z","access-policy-id":"devbox-policy","ctx":"f49c5c8e4a0049ec"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486435018,"ts":"2024-12-06T12:00:35.018Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"f49c5c8e4a0049ec"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486445005,"ts":"2024-12-06T12:00:45.005Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"fd32832bcc68fe1c","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486445006,"ts":"2024-12-06T12:00:45.006Z","access-policy-id":"devbox-policy","ctx":"fd32832bcc68fe1c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486445007,"ts":"2024-12-06T12:00:45.007Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"fd32832bcc68fe1c"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486445034,"ts":"2024-12-06T12:00:45.034Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"65886e4c76e1144a"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486454943,"ts":"2024-12-06T12:00:54.943Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":6,"w_st":200,"ctx":"4be3247552f00348"} +{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733486455010,"ts":"2024-12-06T12:00:55.010Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"7e0c5767d7c14419"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486455012,"ts":"2024-12-06T12:00:55.012Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7e0c5767d7c14419","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486455014,"ts":"2024-12-06T12:00:55.014Z","access-policy-id":"devbox-policy","ctx":"7e0c5767d7c14419"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486455015,"ts":"2024-12-06T12:00:55.015Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"7e0c5767d7c14419"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486465018,"ts":"2024-12-06T12:01:05.018Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e3a0dc11315dca72","wait_time":5} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486465019,"ts":"2024-12-06T12:01:05.019Z","access-policy-id":"devbox-policy","ctx":"e3a0dc11315dca72"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486465019,"ts":"2024-12-06T12:01:05.019Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"e3a0dc11315dca72"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486475016,"ts":"2024-12-06T12:01:15.015Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ddf1e31eb31e346c","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486475017,"ts":"2024-12-06T12:01:15.017Z","access-policy-id":"devbox-policy","ctx":"ddf1e31eb31e346c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486475018,"ts":"2024-12-06T12:01:15.018Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"ddf1e31eb31e346c"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486475084,"ts":"2024-12-06T12:01:15.084Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"fd0f4bf66fb9dcb4"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733486485024,"ts":"2024-12-06T12:01:25.024Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"b797eaf430e3bd94"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486485028,"ts":"2024-12-06T12:01:25.028Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b797eaf430e3bd94","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486485029,"ts":"2024-12-06T12:01:25.029Z","access-policy-id":"devbox-policy","ctx":"b797eaf430e3bd94"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486485030,"ts":"2024-12-06T12:01:25.030Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"b797eaf430e3bd94"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486495024,"ts":"2024-12-06T12:01:35.024Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"49d0c7088a717a45","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486495025,"ts":"2024-12-06T12:01:35.025Z","access-policy-id":"devbox-policy","ctx":"49d0c7088a717a45"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486495026,"ts":"2024-12-06T12:01:35.026Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"49d0c7088a717a45"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486505034,"ts":"2024-12-06T12:01:45.033Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7cdcda5c4269d4aa","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486505034,"ts":"2024-12-06T12:01:45.034Z","access-policy-id":"devbox-policy","ctx":"7cdcda5c4269d4aa"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486505035,"ts":"2024-12-06T12:01:45.035Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"7cdcda5c4269d4aa"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486505165,"ts":"2024-12-06T12:01:45.165Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"066a01a57631e1f7"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486514940,"ts":"2024-12-06T12:01:54.940Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":4,"w_st":200,"ctx":"fcd4ca8064d9e360"} +{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733486515034,"ts":"2024-12-06T12:01:55.034Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"dc53f0f4bd04023c"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486515037,"ts":"2024-12-06T12:01:55.037Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"dc53f0f4bd04023c","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486515037,"ts":"2024-12-06T12:01:55.037Z","access-policy-id":"devbox-policy","ctx":"dc53f0f4bd04023c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486515038,"ts":"2024-12-06T12:01:55.038Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"dc53f0f4bd04023c"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486525040,"ts":"2024-12-06T12:02:05.040Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"be48708e48c761d2","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486525041,"ts":"2024-12-06T12:02:05.041Z","access-policy-id":"devbox-policy","ctx":"be48708e48c761d2"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486525042,"ts":"2024-12-06T12:02:05.042Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"be48708e48c761d2"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486535046,"ts":"2024-12-06T12:02:15.045Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"27a693c133f5fd56","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486535048,"ts":"2024-12-06T12:02:15.048Z","access-policy-id":"devbox-policy","ctx":"27a693c133f5fd56"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486535049,"ts":"2024-12-06T12:02:15.049Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"27a693c133f5fd56"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486535235,"ts":"2024-12-06T12:02:15.235Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"860e2620e5fe14a6"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733486545070,"ts":"2024-12-06T12:02:25.070Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":28,"ctx":"13c737e5b1f2c9ce"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486545073,"ts":"2024-12-06T12:02:25.073Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"13c737e5b1f2c9ce","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486545074,"ts":"2024-12-06T12:02:25.074Z","access-policy-id":"devbox-policy","ctx":"13c737e5b1f2c9ce"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486545074,"ts":"2024-12-06T12:02:25.074Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":33,"w_st":200,"ctx":"13c737e5b1f2c9ce"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486555061,"ts":"2024-12-06T12:02:35.060Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d1c2ee881cf58dff","wait_time":8} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486555062,"ts":"2024-12-06T12:02:35.062Z","access-policy-id":"devbox-policy","ctx":"d1c2ee881cf58dff"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486555063,"ts":"2024-12-06T12:02:35.063Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":21,"w_st":200,"ctx":"d1c2ee881cf58dff"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486565044,"ts":"2024-12-06T12:02:45.043Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"49fdc3d944cda460","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486565044,"ts":"2024-12-06T12:02:45.044Z","access-policy-id":"devbox-policy","ctx":"49fdc3d944cda460"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486565045,"ts":"2024-12-06T12:02:45.045Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"49fdc3d944cda460"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486565293,"ts":"2024-12-06T12:02:45.293Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"d94c20027d61cdad"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w6","execution_time":6,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486574954,"ts":"2024-12-06T12:02:54.954Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":12,"w_st":200,"ctx":"910dfcdf3bec1808"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733486575047,"ts":"2024-12-06T12:02:55.047Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"aa240263dd105e02"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486575050,"ts":"2024-12-06T12:02:55.050Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"aa240263dd105e02","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486575052,"ts":"2024-12-06T12:02:55.052Z","access-policy-id":"devbox-policy","ctx":"aa240263dd105e02"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486575053,"ts":"2024-12-06T12:02:55.053Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"aa240263dd105e02"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486585061,"ts":"2024-12-06T12:03:05.061Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a1ded57a878a0b25","wait_time":4} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486585062,"ts":"2024-12-06T12:03:05.062Z","access-policy-id":"devbox-policy","ctx":"a1ded57a878a0b25"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486585063,"ts":"2024-12-06T12:03:05.063Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":14,"w_st":200,"ctx":"a1ded57a878a0b25"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486595075,"ts":"2024-12-06T12:03:15.075Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"50fdad70365d5a4f","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486595077,"ts":"2024-12-06T12:03:15.077Z","access-policy-id":"devbox-policy","ctx":"50fdad70365d5a4f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486595078,"ts":"2024-12-06T12:03:15.078Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"50fdad70365d5a4f"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486595375,"ts":"2024-12-06T12:03:15.375Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"48e5fa80d8a2c6b5"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733486605115,"ts":"2024-12-06T12:03:25.115Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"37f81fd37ba30e54"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486605117,"ts":"2024-12-06T12:03:25.117Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"37f81fd37ba30e54","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486605118,"ts":"2024-12-06T12:03:25.118Z","access-policy-id":"devbox-policy","ctx":"37f81fd37ba30e54"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486605119,"ts":"2024-12-06T12:03:25.119Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":12,"w_st":200,"ctx":"37f81fd37ba30e54"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486615157,"ts":"2024-12-06T12:03:35.157Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"8bd7a3225e8984cf","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486615159,"ts":"2024-12-06T12:03:35.159Z","access-policy-id":"devbox-policy","ctx":"8bd7a3225e8984cf"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486615160,"ts":"2024-12-06T12:03:35.160Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":15,"w_st":200,"ctx":"8bd7a3225e8984cf"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486625181,"ts":"2024-12-06T12:03:45.181Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a6a049e7d8224520","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486625182,"ts":"2024-12-06T12:03:45.182Z","access-policy-id":"devbox-policy","ctx":"a6a049e7d8224520"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486625183,"ts":"2024-12-06T12:03:45.183Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"a6a049e7d8224520"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486625445,"ts":"2024-12-06T12:03:45.445Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"69b3ab2d0891bf79"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733486635227,"ts":"2024-12-06T12:03:55.226Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"514dd032cb502a2b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486635233,"ts":"2024-12-06T12:03:55.232Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":11,"w_st":200,"ctx":"514dd032cb502a2b"} +{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733486635241,"ts":"2024-12-06T12:03:55.241Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":18,"ctx":"178731c55eda61df"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486635243,"ts":"2024-12-06T12:03:55.243Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"178731c55eda61df","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486635243,"ts":"2024-12-06T12:03:55.243Z","access-policy-id":"devbox-policy","ctx":"178731c55eda61df"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486635244,"ts":"2024-12-06T12:03:55.244Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":22,"w_st":200,"ctx":"178731c55eda61df"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486645272,"ts":"2024-12-06T12:04:05.271Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"932b840bfe9544c3","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486645274,"ts":"2024-12-06T12:04:05.274Z","access-policy-id":"devbox-policy","ctx":"932b840bfe9544c3"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486645276,"ts":"2024-12-06T12:04:05.276Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"932b840bfe9544c3"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486655301,"ts":"2024-12-06T12:04:15.301Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a77263db6ee5dc41","wait_time":4} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486655301,"ts":"2024-12-06T12:04:15.301Z","access-policy-id":"devbox-policy","ctx":"a77263db6ee5dc41"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486655302,"ts":"2024-12-06T12:04:15.302Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"a77263db6ee5dc41"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486655525,"ts":"2024-12-06T12:04:15.525Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"0f27fa20d2f1e2bf"} +{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733486665435,"ts":"2024-12-06T12:04:25.434Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":8,"ctx":"aec2004f6e2fc602"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486665445,"ts":"2024-12-06T12:04:25.445Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"aec2004f6e2fc602","wait_time":6} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486665448,"ts":"2024-12-06T12:04:25.448Z","access-policy-id":"devbox-policy","ctx":"aec2004f6e2fc602"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486665450,"ts":"2024-12-06T12:04:25.450Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":32,"w_st":200,"ctx":"aec2004f6e2fc602"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486675492,"ts":"2024-12-06T12:04:35.492Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"90a3230f06517e3e","wait_time":4} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486675493,"ts":"2024-12-06T12:04:35.493Z","access-policy-id":"devbox-policy","ctx":"90a3230f06517e3e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486675493,"ts":"2024-12-06T12:04:35.493Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"90a3230f06517e3e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486685539,"ts":"2024-12-06T12:04:45.536Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7d9e8de231f7c63c","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486685553,"ts":"2024-12-06T12:04:45.553Z","access-policy-id":"devbox-policy","ctx":"7d9e8de231f7c63c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":15,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486685556,"ts":"2024-12-06T12:04:45.556Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":34,"w_st":200,"ctx":"7d9e8de231f7c63c"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486685642,"ts":"2024-12-06T12:04:45.641Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"8954fd306424ec9f"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733486695586,"ts":"2024-12-06T12:04:55.585Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":10,"ctx":"4635f8f3edb0229c"} +{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733486695610,"ts":"2024-12-06T12:04:55.610Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":35,"ctx":"e184394fba83fbad"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486695615,"ts":"2024-12-06T12:04:55.615Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4635f8f3edb0229c","wait_time":6} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486695619,"ts":"2024-12-06T12:04:55.619Z","access-policy-id":"devbox-policy","ctx":"4635f8f3edb0229c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w7","execution_time":6,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486695620,"ts":"2024-12-06T12:04:55.620Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":53,"w_st":200,"ctx":"e184394fba83fbad"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":5,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486695620,"ts":"2024-12-06T12:04:55.620Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":52,"w_st":200,"ctx":"4635f8f3edb0229c"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486705624,"ts":"2024-12-06T12:05:05.624Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"cad4be4da8d29e75","wait_time":4} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486705626,"ts":"2024-12-06T12:05:05.626Z","access-policy-id":"devbox-policy","ctx":"cad4be4da8d29e75"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486705627,"ts":"2024-12-06T12:05:05.627Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":16,"w_st":200,"ctx":"cad4be4da8d29e75"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486715644,"ts":"2024-12-06T12:05:15.644Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"240a7e153cb83271","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486715645,"ts":"2024-12-06T12:05:15.645Z","access-policy-id":"devbox-policy","ctx":"240a7e153cb83271"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486715646,"ts":"2024-12-06T12:05:15.646Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"240a7e153cb83271"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486715727,"ts":"2024-12-06T12:05:15.727Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"c510be6963cc5c95"} +{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733486725695,"ts":"2024-12-06T12:05:25.695Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"4097123163ccd74d"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486725699,"ts":"2024-12-06T12:05:25.699Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4097123163ccd74d","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486725699,"ts":"2024-12-06T12:05:25.699Z","access-policy-id":"devbox-policy","ctx":"4097123163ccd74d"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486725700,"ts":"2024-12-06T12:05:25.700Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":14,"w_st":200,"ctx":"4097123163ccd74d"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486735765,"ts":"2024-12-06T12:05:35.765Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"99d44d0255b9992e","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486735766,"ts":"2024-12-06T12:05:35.766Z","access-policy-id":"devbox-policy","ctx":"99d44d0255b9992e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486735767,"ts":"2024-12-06T12:05:35.767Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"99d44d0255b9992e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486745806,"ts":"2024-12-06T12:05:45.806Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"5021ab7488d9f9a3","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486745807,"ts":"2024-12-06T12:05:45.807Z","access-policy-id":"devbox-policy","ctx":"5021ab7488d9f9a3"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486745808,"ts":"2024-12-06T12:05:45.808Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"5021ab7488d9f9a3"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486745853,"ts":"2024-12-06T12:05:45.853Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"1f720f9eea7246cb"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733486755838,"ts":"2024-12-06T12:05:55.838Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"ba2a448cc62c2a19"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486755841,"ts":"2024-12-06T12:05:55.841Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ba2a448cc62c2a19","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486755842,"ts":"2024-12-06T12:05:55.842Z","access-policy-id":"devbox-policy","ctx":"ba2a448cc62c2a19"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486755843,"ts":"2024-12-06T12:05:55.843Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"ba2a448cc62c2a19"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733486755851,"ts":"2024-12-06T12:05:55.851Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":15,"ctx":"26a4fca8c4c2d65d"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486755854,"ts":"2024-12-06T12:05:55.854Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":22,"w_st":200,"ctx":"26a4fca8c4c2d65d"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486765898,"ts":"2024-12-06T12:06:05.897Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a66816298c7f451f","wait_time":9} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486765901,"ts":"2024-12-06T12:06:05.901Z","access-policy-id":"devbox-policy","ctx":"a66816298c7f451f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486765902,"ts":"2024-12-06T12:06:05.902Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":34,"w_st":200,"ctx":"a66816298c7f451f"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":5,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486775958,"ts":"2024-12-06T12:06:15.958Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":6,"w_st":200,"ctx":"74fbed4a1c988bbe"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486776004,"ts":"2024-12-06T12:06:16.004Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"746b4cf17beef98f","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486776004,"ts":"2024-12-06T12:06:16.004Z","access-policy-id":"devbox-policy","ctx":"746b4cf17beef98f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486776004,"ts":"2024-12-06T12:06:16.004Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"746b4cf17beef98f"} +{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733486786127,"ts":"2024-12-06T12:06:26.127Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"7241c54fa7397607"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486786130,"ts":"2024-12-06T12:06:26.130Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7241c54fa7397607","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486786130,"ts":"2024-12-06T12:06:26.130Z","access-policy-id":"devbox-policy","ctx":"7241c54fa7397607"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486786131,"ts":"2024-12-06T12:06:26.131Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"7241c54fa7397607"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486796161,"ts":"2024-12-06T12:06:36.161Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3a98dbafb44a8ec9","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486796163,"ts":"2024-12-06T12:06:36.163Z","access-policy-id":"devbox-policy","ctx":"3a98dbafb44a8ec9"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486796164,"ts":"2024-12-06T12:06:36.164Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"3a98dbafb44a8ec9"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486806016,"ts":"2024-12-06T12:06:46.016Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":7,"w_st":200,"ctx":"c3779c2174464ba0"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486806221,"ts":"2024-12-06T12:06:46.220Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9b1c1b7a67533401","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486806222,"ts":"2024-12-06T12:06:46.222Z","access-policy-id":"devbox-policy","ctx":"9b1c1b7a67533401"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486806223,"ts":"2024-12-06T12:06:46.223Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"9b1c1b7a67533401"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733486816263,"ts":"2024-12-06T12:06:56.263Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"c8539aaee7a9596b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486816267,"ts":"2024-12-06T12:06:56.267Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":10,"w_st":200,"ctx":"c8539aaee7a9596b"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733486816273,"ts":"2024-12-06T12:06:56.273Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":13,"ctx":"163f834af16564b8"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486816275,"ts":"2024-12-06T12:06:56.275Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"163f834af16564b8","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486816275,"ts":"2024-12-06T12:06:56.275Z","access-policy-id":"devbox-policy","ctx":"163f834af16564b8"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486816275,"ts":"2024-12-06T12:06:56.275Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"163f834af16564b8"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486826282,"ts":"2024-12-06T12:07:06.282Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"92453bac45eaee93","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486826282,"ts":"2024-12-06T12:07:06.282Z","access-policy-id":"devbox-policy","ctx":"92453bac45eaee93"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486826283,"ts":"2024-12-06T12:07:06.283Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"92453bac45eaee93"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486836110,"ts":"2024-12-06T12:07:16.110Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"2a145e37966b0c27"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486836363,"ts":"2024-12-06T12:07:16.363Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"19037c169c620082","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486836364,"ts":"2024-12-06T12:07:16.364Z","access-policy-id":"devbox-policy","ctx":"19037c169c620082"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486836365,"ts":"2024-12-06T12:07:16.365Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"19037c169c620082"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733486846407,"ts":"2024-12-06T12:07:26.406Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":5,"ctx":"b68173266124ebb2"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486846415,"ts":"2024-12-06T12:07:26.415Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b68173266124ebb2","wait_time":4} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486846417,"ts":"2024-12-06T12:07:26.417Z","access-policy-id":"devbox-policy","ctx":"b68173266124ebb2"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486846418,"ts":"2024-12-06T12:07:26.418Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":21,"w_st":200,"ctx":"b68173266124ebb2"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486856447,"ts":"2024-12-06T12:07:36.447Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6853669416cc10d0","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486856448,"ts":"2024-12-06T12:07:36.448Z","access-policy-id":"devbox-policy","ctx":"6853669416cc10d0"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486856450,"ts":"2024-12-06T12:07:36.450Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"6853669416cc10d0"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486866188,"ts":"2024-12-06T12:07:46.188Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"b46e12120e0adbec"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486866483,"ts":"2024-12-06T12:07:46.483Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b0e4bcb78c94045b","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486866483,"ts":"2024-12-06T12:07:46.483Z","access-policy-id":"devbox-policy","ctx":"b0e4bcb78c94045b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486866484,"ts":"2024-12-06T12:07:46.484Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"b0e4bcb78c94045b"} +{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733486876537,"ts":"2024-12-06T12:07:56.537Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":7,"ctx":"3979f5a97ceb7d1e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486876545,"ts":"2024-12-06T12:07:56.545Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3979f5a97ceb7d1e","wait_time":4} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486876546,"ts":"2024-12-06T12:07:56.546Z","access-policy-id":"devbox-policy","ctx":"3979f5a97ceb7d1e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486876548,"ts":"2024-12-06T12:07:56.548Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":22,"w_st":200,"ctx":"3979f5a97ceb7d1e"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733486876553,"ts":"2024-12-06T12:07:56.553Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":23,"ctx":"89261a9d38ea3725"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486876556,"ts":"2024-12-06T12:07:56.556Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":32,"w_st":200,"ctx":"89261a9d38ea3725"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486886587,"ts":"2024-12-06T12:08:06.587Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"af4721a1d6db8c3d","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486886588,"ts":"2024-12-06T12:08:06.588Z","access-policy-id":"devbox-policy","ctx":"af4721a1d6db8c3d"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486886589,"ts":"2024-12-06T12:08:06.589Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"af4721a1d6db8c3d"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486896312,"ts":"2024-12-06T12:08:16.311Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":13,"w_st":200,"ctx":"9065775e0569d034"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486896772,"ts":"2024-12-06T12:08:16.772Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c2ff334bbce01931","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486896773,"ts":"2024-12-06T12:08:16.773Z","access-policy-id":"devbox-policy","ctx":"c2ff334bbce01931"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486896774,"ts":"2024-12-06T12:08:16.774Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"c2ff334bbce01931"} +{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733486906825,"ts":"2024-12-06T12:08:26.825Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"48504c62adace7ba"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486906829,"ts":"2024-12-06T12:08:26.829Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"48504c62adace7ba","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486906829,"ts":"2024-12-06T12:08:26.829Z","access-policy-id":"devbox-policy","ctx":"48504c62adace7ba"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486906830,"ts":"2024-12-06T12:08:26.830Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":13,"w_st":200,"ctx":"48504c62adace7ba"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486917035,"ts":"2024-12-06T12:08:37.035Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e26b2482bfa32988","wait_time":11} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486917038,"ts":"2024-12-06T12:08:37.038Z","access-policy-id":"devbox-policy","ctx":"e26b2482bfa32988"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486917039,"ts":"2024-12-06T12:08:37.039Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":45,"w_st":200,"ctx":"e26b2482bfa32988"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":6,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486926465,"ts":"2024-12-06T12:08:46.465Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":52,"w_st":200,"ctx":"64b5ee3ebe8e001d"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486927021,"ts":"2024-12-06T12:08:47.021Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e6972732dff21fe0","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486927023,"ts":"2024-12-06T12:08:47.023Z","access-policy-id":"devbox-policy","ctx":"e6972732dff21fe0"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486927023,"ts":"2024-12-06T12:08:47.023Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"e6972732dff21fe0"} +{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733486937110,"ts":"2024-12-06T12:08:57.109Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":22,"ctx":"3385aa9d40f6d989"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486937125,"ts":"2024-12-06T12:08:57.125Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":60,"w_st":200,"ctx":"3385aa9d40f6d989"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733486937126,"ts":"2024-12-06T12:08:57.126Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":39,"ctx":"3b1ee9e2d8a5e24e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486937128,"ts":"2024-12-06T12:08:57.128Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3b1ee9e2d8a5e24e","wait_time":13} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486937129,"ts":"2024-12-06T12:08:57.129Z","access-policy-id":"devbox-policy","ctx":"3b1ee9e2d8a5e24e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486937129,"ts":"2024-12-06T12:08:57.129Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":65,"w_st":200,"ctx":"3b1ee9e2d8a5e24e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486947147,"ts":"2024-12-06T12:09:07.146Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"166fcee3a79ebe40","wait_time":13} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486947150,"ts":"2024-12-06T12:09:07.150Z","access-policy-id":"devbox-policy","ctx":"166fcee3a79ebe40"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486947151,"ts":"2024-12-06T12:09:07.151Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":37,"w_st":200,"ctx":"166fcee3a79ebe40"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":4,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486956585,"ts":"2024-12-06T12:09:16.584Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":19,"w_st":200,"ctx":"d19fd8ec8809b4af"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486957263,"ts":"2024-12-06T12:09:17.263Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"206b96a52566f40d","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486957265,"ts":"2024-12-06T12:09:17.265Z","access-policy-id":"devbox-policy","ctx":"206b96a52566f40d"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486957266,"ts":"2024-12-06T12:09:17.266Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"206b96a52566f40d"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733486967305,"ts":"2024-12-06T12:09:27.304Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":7,"ctx":"65c46c1053ea2aa3"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486967312,"ts":"2024-12-06T12:09:27.312Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"65c46c1053ea2aa3","wait_time":6} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486967314,"ts":"2024-12-06T12:09:27.314Z","access-policy-id":"devbox-policy","ctx":"65c46c1053ea2aa3"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486967315,"ts":"2024-12-06T12:09:27.315Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":25,"w_st":200,"ctx":"65c46c1053ea2aa3"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486977343,"ts":"2024-12-06T12:09:37.343Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"987ad2014701d101","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486977344,"ts":"2024-12-06T12:09:37.344Z","access-policy-id":"devbox-policy","ctx":"987ad2014701d101"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486977345,"ts":"2024-12-06T12:09:37.345Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"987ad2014701d101"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486986700,"ts":"2024-12-06T12:09:46.700Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":10,"w_st":200,"ctx":"5b0a8302ff326a6c"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486987379,"ts":"2024-12-06T12:09:47.379Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"05750c576be9e0db","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486987380,"ts":"2024-12-06T12:09:47.380Z","access-policy-id":"devbox-policy","ctx":"05750c576be9e0db"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486987381,"ts":"2024-12-06T12:09:47.381Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"05750c576be9e0db"} +{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733486997464,"ts":"2024-12-06T12:09:57.463Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":14,"ctx":"4eaa790c0a0718fd"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486997475,"ts":"2024-12-06T12:09:57.475Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4eaa790c0a0718fd","wait_time":10} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486997480,"ts":"2024-12-06T12:09:57.479Z","access-policy-id":"devbox-policy","ctx":"4eaa790c0a0718fd"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":10,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486997485,"ts":"2024-12-06T12:09:57.485Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":49,"w_st":200,"ctx":"4eaa790c0a0718fd"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733486997486,"ts":"2024-12-06T12:09:57.486Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":38,"ctx":"e69342dbb5ff7b4e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":7,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486997495,"ts":"2024-12-06T12:09:57.495Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":62,"w_st":200,"ctx":"e69342dbb5ff7b4e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487007512,"ts":"2024-12-06T12:10:07.511Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"2cc025059f9eea2b","wait_time":9} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487007515,"ts":"2024-12-06T12:10:07.515Z","access-policy-id":"devbox-policy","ctx":"2cc025059f9eea2b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487007516,"ts":"2024-12-06T12:10:07.516Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":33,"w_st":200,"ctx":"2cc025059f9eea2b"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":12,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487016822,"ts":"2024-12-06T12:10:16.822Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":15,"w_st":200,"ctx":"25a45c2f42588f1d"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487017549,"ts":"2024-12-06T12:10:17.549Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"222b36f47874484c","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487017550,"ts":"2024-12-06T12:10:17.550Z","access-policy-id":"devbox-policy","ctx":"222b36f47874484c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487017551,"ts":"2024-12-06T12:10:17.551Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"222b36f47874484c"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733487027627,"ts":"2024-12-06T12:10:27.620Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":7,"ctx":"4d6f939439e3a76e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487027630,"ts":"2024-12-06T12:10:27.630Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4d6f939439e3a76e","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487027631,"ts":"2024-12-06T12:10:27.631Z","access-policy-id":"devbox-policy","ctx":"4d6f939439e3a76e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487027631,"ts":"2024-12-06T12:10:27.631Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":20,"w_st":200,"ctx":"4d6f939439e3a76e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487037697,"ts":"2024-12-06T12:10:37.696Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"92b7a4b95d32f410","wait_time":9} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487037700,"ts":"2024-12-06T12:10:37.700Z","access-policy-id":"devbox-policy","ctx":"92b7a4b95d32f410"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487037701,"ts":"2024-12-06T12:10:37.701Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":33,"w_st":200,"ctx":"92b7a4b95d32f410"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487046917,"ts":"2024-12-06T12:10:46.917Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"d7151597894d5307"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487047723,"ts":"2024-12-06T12:10:47.723Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"54f11443b6a43636","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487047724,"ts":"2024-12-06T12:10:47.724Z","access-policy-id":"devbox-policy","ctx":"54f11443b6a43636"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487047725,"ts":"2024-12-06T12:10:47.725Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"54f11443b6a43636"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487057780,"ts":"2024-12-06T12:10:57.780Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"2fa42e558eecf111"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487057785,"ts":"2024-12-06T12:10:57.785Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"2fa42e558eecf111","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487057785,"ts":"2024-12-06T12:10:57.785Z","access-policy-id":"devbox-policy","ctx":"2fa42e558eecf111"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487057786,"ts":"2024-12-06T12:10:57.786Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"2fa42e558eecf111"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487057793,"ts":"2024-12-06T12:10:57.793Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":16,"ctx":"99ea26341da10b0f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487057796,"ts":"2024-12-06T12:10:57.796Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":21,"w_st":200,"ctx":"99ea26341da10b0f"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487067872,"ts":"2024-12-06T12:11:07.871Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a83f4b83e2fdd8ab","wait_time":5} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487067874,"ts":"2024-12-06T12:11:07.874Z","access-policy-id":"devbox-policy","ctx":"a83f4b83e2fdd8ab"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487067875,"ts":"2024-12-06T12:11:07.875Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":19,"w_st":200,"ctx":"a83f4b83e2fdd8ab"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487077005,"ts":"2024-12-06T12:11:17.005Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":5,"w_st":200,"ctx":"a470537b235fcd4e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487077912,"ts":"2024-12-06T12:11:17.912Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b1daf529da69f130","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487077914,"ts":"2024-12-06T12:11:17.914Z","access-policy-id":"devbox-policy","ctx":"b1daf529da69f130"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487077916,"ts":"2024-12-06T12:11:17.916Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":16,"w_st":200,"ctx":"b1daf529da69f130"} +{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733487087970,"ts":"2024-12-06T12:11:27.969Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":13,"ctx":"52b78123b9a6188a"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487087986,"ts":"2024-12-06T12:11:27.986Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"52b78123b9a6188a","wait_time":9} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487088000,"ts":"2024-12-06T12:11:28.000Z","access-policy-id":"devbox-policy","ctx":"52b78123b9a6188a"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":17,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487088003,"ts":"2024-12-06T12:11:28.003Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":58,"w_st":200,"ctx":"52b78123b9a6188a"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487097999,"ts":"2024-12-06T12:11:37.999Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c7eb7d4c53fefb3f","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487098000,"ts":"2024-12-06T12:11:38.000Z","access-policy-id":"devbox-policy","ctx":"c7eb7d4c53fefb3f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487098001,"ts":"2024-12-06T12:11:38.000Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"c7eb7d4c53fefb3f"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":4,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487107130,"ts":"2024-12-06T12:11:47.130Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":12,"w_st":200,"ctx":"667b469e21446f92"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487108051,"ts":"2024-12-06T12:11:48.051Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c043f784df68fb41","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487108053,"ts":"2024-12-06T12:11:48.053Z","access-policy-id":"devbox-policy","ctx":"c043f784df68fb41"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487108054,"ts":"2024-12-06T12:11:48.054Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"c043f784df68fb41"} +{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733487118112,"ts":"2024-12-06T12:11:58.111Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":16,"ctx":"0e361f716bb26d4f"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487118145,"ts":"2024-12-06T12:11:58.145Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0e361f716bb26d4f","wait_time":11} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487118146,"ts":"2024-12-06T12:11:58.146Z","access-policy-id":"devbox-policy","ctx":"0e361f716bb26d4f"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487118147,"ts":"2024-12-06T12:11:58.147Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":52,"ctx":"5578bb5e545aa793"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487118148,"ts":"2024-12-06T12:11:58.148Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":66,"w_st":200,"ctx":"0e361f716bb26d4f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487118150,"ts":"2024-12-06T12:11:58.150Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":71,"w_st":200,"ctx":"5578bb5e545aa793"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487128207,"ts":"2024-12-06T12:12:08.199Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1d0d10e152006b0e","wait_time":10} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487128226,"ts":"2024-12-06T12:12:08.226Z","access-policy-id":"devbox-policy","ctx":"1d0d10e152006b0e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":17,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487128227,"ts":"2024-12-06T12:12:08.227Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":58,"w_st":200,"ctx":"1d0d10e152006b0e"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487137239,"ts":"2024-12-06T12:12:17.239Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"413dd98f22795a9b"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487138173,"ts":"2024-12-06T12:12:18.173Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"81190c04a9464b79","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487138175,"ts":"2024-12-06T12:12:18.174Z","access-policy-id":"devbox-policy","ctx":"81190c04a9464b79"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487138176,"ts":"2024-12-06T12:12:18.176Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"81190c04a9464b79"} +{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733487148256,"ts":"2024-12-06T12:12:28.256Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":15,"ctx":"6713294a312dabd0"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487148265,"ts":"2024-12-06T12:12:28.265Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6713294a312dabd0","wait_time":24} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487148267,"ts":"2024-12-06T12:12:28.267Z","access-policy-id":"devbox-policy","ctx":"6713294a312dabd0"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487148268,"ts":"2024-12-06T12:12:28.267Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":60,"w_st":200,"ctx":"6713294a312dabd0"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487158280,"ts":"2024-12-06T12:12:38.278Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"47971b3d42c88748","wait_time":10} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487158287,"ts":"2024-12-06T12:12:38.287Z","access-policy-id":"devbox-policy","ctx":"47971b3d42c88748"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":21,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487158303,"ts":"2024-12-06T12:12:38.303Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":48,"w_st":200,"ctx":"47971b3d42c88748"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":5,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487167372,"ts":"2024-12-06T12:12:47.372Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":20,"w_st":200,"ctx":"0c4c97fe4e350cf3"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487168344,"ts":"2024-12-06T12:12:48.343Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e65b4fc063d43c74","wait_time":13} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487168346,"ts":"2024-12-06T12:12:48.346Z","access-policy-id":"devbox-policy","ctx":"e65b4fc063d43c74"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487168346,"ts":"2024-12-06T12:12:48.346Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":23,"w_st":200,"ctx":"e65b4fc063d43c74"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733487178386,"ts":"2024-12-06T12:12:58.386Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"54334a53f955f1de"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487178398,"ts":"2024-12-06T12:12:58.398Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"54334a53f955f1de","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487178400,"ts":"2024-12-06T12:12:58.400Z","access-policy-id":"devbox-policy","ctx":"54334a53f955f1de"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487178401,"ts":"2024-12-06T12:12:58.401Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":27,"w_st":200,"ctx":"54334a53f955f1de"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487178407,"ts":"2024-12-06T12:12:58.407Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":28,"ctx":"b6e0587b8a2de8b1"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487178410,"ts":"2024-12-06T12:12:58.410Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":37,"w_st":200,"ctx":"b6e0587b8a2de8b1"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487188475,"ts":"2024-12-06T12:13:08.475Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"93026334c23940a2","wait_time":4} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487188476,"ts":"2024-12-06T12:13:08.476Z","access-policy-id":"devbox-policy","ctx":"93026334c23940a2"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487188478,"ts":"2024-12-06T12:13:08.478Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":17,"w_st":200,"ctx":"93026334c23940a2"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487197486,"ts":"2024-12-06T12:13:17.486Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":5,"w_st":200,"ctx":"a2fed7a6be55f428"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487198491,"ts":"2024-12-06T12:13:18.490Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9ad26ef6ef1ad297","wait_time":4} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487198492,"ts":"2024-12-06T12:13:18.492Z","access-policy-id":"devbox-policy","ctx":"9ad26ef6ef1ad297"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487198494,"ts":"2024-12-06T12:13:18.494Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":17,"w_st":200,"ctx":"9ad26ef6ef1ad297"} +{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733487208542,"ts":"2024-12-06T12:13:28.542Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":7,"ctx":"1f351deb3bbbfd29"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487208548,"ts":"2024-12-06T12:13:28.548Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1f351deb3bbbfd29","wait_time":6} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487208549,"ts":"2024-12-06T12:13:28.549Z","access-policy-id":"devbox-policy","ctx":"1f351deb3bbbfd29"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487208551,"ts":"2024-12-06T12:13:28.551Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":22,"w_st":200,"ctx":"1f351deb3bbbfd29"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487218566,"ts":"2024-12-06T12:13:38.566Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"fdfd596a5cd79e21","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487218567,"ts":"2024-12-06T12:13:38.567Z","access-policy-id":"devbox-policy","ctx":"fdfd596a5cd79e21"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487218567,"ts":"2024-12-06T12:13:38.567Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"fdfd596a5cd79e21"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":4,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487227618,"ts":"2024-12-06T12:13:47.618Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":12,"w_st":200,"ctx":"7b0f01a3a6c325e6"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487228621,"ts":"2024-12-06T12:13:48.621Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"55d351e60ebaf4cd","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487228624,"ts":"2024-12-06T12:13:48.623Z","access-policy-id":"devbox-policy","ctx":"55d351e60ebaf4cd"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487228624,"ts":"2024-12-06T12:13:48.624Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"55d351e60ebaf4cd"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733487238689,"ts":"2024-12-06T12:13:58.689Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":9,"ctx":"f387298d0b83971b"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487238694,"ts":"2024-12-06T12:13:58.694Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f387298d0b83971b","wait_time":5} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487238695,"ts":"2024-12-06T12:13:58.695Z","access-policy-id":"devbox-policy","ctx":"f387298d0b83971b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487238695,"ts":"2024-12-06T12:13:58.695Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":21,"w_st":200,"ctx":"f387298d0b83971b"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487238705,"ts":"2024-12-06T12:13:58.705Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":25,"ctx":"b4f80dcea863da97"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487238707,"ts":"2024-12-06T12:13:58.707Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":34,"w_st":200,"ctx":"b4f80dcea863da97"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487248726,"ts":"2024-12-06T12:14:08.726Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"32f083e3256d9e15","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487248728,"ts":"2024-12-06T12:14:08.728Z","access-policy-id":"devbox-policy","ctx":"32f083e3256d9e15"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487248729,"ts":"2024-12-06T12:14:08.729Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"32f083e3256d9e15"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487257713,"ts":"2024-12-06T12:14:17.712Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":9,"w_st":200,"ctx":"738f1e15fe1bf858"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487258764,"ts":"2024-12-06T12:14:18.764Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"922d86e08ee50a07","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487258766,"ts":"2024-12-06T12:14:18.766Z","access-policy-id":"devbox-policy","ctx":"922d86e08ee50a07"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487258766,"ts":"2024-12-06T12:14:18.766Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"922d86e08ee50a07"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487268834,"ts":"2024-12-06T12:14:28.832Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":8,"ctx":"a5627194d1508f95"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487268879,"ts":"2024-12-06T12:14:28.879Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a5627194d1508f95","wait_time":4} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487268882,"ts":"2024-12-06T12:14:28.882Z","access-policy-id":"devbox-policy","ctx":"a5627194d1508f95"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487268883,"ts":"2024-12-06T12:14:28.883Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":73,"w_st":200,"ctx":"a5627194d1508f95"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487278894,"ts":"2024-12-06T12:14:38.893Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0b003e50c3998df8","wait_time":7} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487278896,"ts":"2024-12-06T12:14:38.896Z","access-policy-id":"devbox-policy","ctx":"0b003e50c3998df8"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487278897,"ts":"2024-12-06T12:14:38.897Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":28,"w_st":200,"ctx":"0b003e50c3998df8"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487287814,"ts":"2024-12-06T12:14:47.814Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"a8bdd9212c4bf610"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487288899,"ts":"2024-12-06T12:14:48.899Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"02b8adb6ed3c5a7d","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487288900,"ts":"2024-12-06T12:14:48.900Z","access-policy-id":"devbox-policy","ctx":"02b8adb6ed3c5a7d"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487288901,"ts":"2024-12-06T12:14:48.901Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"02b8adb6ed3c5a7d"} +{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733487298992,"ts":"2024-12-06T12:14:58.989Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":22,"ctx":"53287c8eb6d4dfb1"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487299009,"ts":"2024-12-06T12:14:59.009Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"53287c8eb6d4dfb1","wait_time":7} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487299011,"ts":"2024-12-06T12:14:59.011Z","access-policy-id":"devbox-policy","ctx":"53287c8eb6d4dfb1"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487299013,"ts":"2024-12-06T12:14:59.013Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":55,"w_st":200,"ctx":"53287c8eb6d4dfb1"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487299016,"ts":"2024-12-06T12:14:59.016Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":49,"ctx":"1b891098ebfbc866"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":4,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487299022,"ts":"2024-12-06T12:14:59.022Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":65,"w_st":200,"ctx":"1b891098ebfbc866"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487309026,"ts":"2024-12-06T12:15:09.026Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9a9ea46271b6b0dc","wait_time":9} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487309030,"ts":"2024-12-06T12:15:09.030Z","access-policy-id":"devbox-policy","ctx":"9a9ea46271b6b0dc"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487309031,"ts":"2024-12-06T12:15:09.031Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":32,"w_st":200,"ctx":"9a9ea46271b6b0dc"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487317905,"ts":"2024-12-06T12:15:17.905Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"c197430f95fc2f53"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487319034,"ts":"2024-12-06T12:15:19.034Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"573764ee6b22a72c","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487319036,"ts":"2024-12-06T12:15:19.035Z","access-policy-id":"devbox-policy","ctx":"573764ee6b22a72c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487319037,"ts":"2024-12-06T12:15:19.037Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"573764ee6b22a72c"} +{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733487329062,"ts":"2024-12-06T12:15:29.062Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"b92ace6505d57642"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487329066,"ts":"2024-12-06T12:15:29.066Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b92ace6505d57642","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487329067,"ts":"2024-12-06T12:15:29.067Z","access-policy-id":"devbox-policy","ctx":"b92ace6505d57642"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487329068,"ts":"2024-12-06T12:15:29.068Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"b92ace6505d57642"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487339143,"ts":"2024-12-06T12:15:39.142Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"58f19e4d462d5927","wait_time":9} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487339147,"ts":"2024-12-06T12:15:39.147Z","access-policy-id":"devbox-policy","ctx":"58f19e4d462d5927"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487339148,"ts":"2024-12-06T12:15:39.148Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":35,"w_st":200,"ctx":"58f19e4d462d5927"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487347997,"ts":"2024-12-06T12:15:47.996Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"6c68bda903d67710"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487349164,"ts":"2024-12-06T12:15:49.164Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c18271c16fbff7d8","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487349165,"ts":"2024-12-06T12:15:49.165Z","access-policy-id":"devbox-policy","ctx":"c18271c16fbff7d8"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487349166,"ts":"2024-12-06T12:15:49.166Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"c18271c16fbff7d8"} +{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733487359233,"ts":"2024-12-06T12:15:59.230Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":13,"ctx":"6eb1250052824eaa"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487359261,"ts":"2024-12-06T12:15:59.261Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6eb1250052824eaa","wait_time":8} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487359263,"ts":"2024-12-06T12:15:59.263Z","access-policy-id":"devbox-policy","ctx":"6eb1250052824eaa"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487359264,"ts":"2024-12-06T12:15:59.264Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":57,"w_st":200,"ctx":"6eb1250052824eaa"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487359264,"ts":"2024-12-06T12:15:59.264Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":47,"ctx":"cf5f1b811411dcf1"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487359266,"ts":"2024-12-06T12:15:59.266Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":61,"w_st":200,"ctx":"cf5f1b811411dcf1"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487369265,"ts":"2024-12-06T12:16:09.264Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d99e3406875c1e7c","wait_time":5} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487369267,"ts":"2024-12-06T12:16:09.267Z","access-policy-id":"devbox-policy","ctx":"d99e3406875c1e7c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487369269,"ts":"2024-12-06T12:16:09.268Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":21,"w_st":200,"ctx":"d99e3406875c1e7c"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":5,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487378106,"ts":"2024-12-06T12:16:18.106Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":22,"w_st":200,"ctx":"d5db1bacd9333c0f"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487379287,"ts":"2024-12-06T12:16:19.287Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3020aea3c2b7c59a","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487379290,"ts":"2024-12-06T12:16:19.290Z","access-policy-id":"devbox-policy","ctx":"3020aea3c2b7c59a"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487379291,"ts":"2024-12-06T12:16:19.291Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"3020aea3c2b7c59a"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733487389309,"ts":"2024-12-06T12:16:29.309Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"3d3d0730d692452d"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487389314,"ts":"2024-12-06T12:16:29.314Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3d3d0730d692452d","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487389315,"ts":"2024-12-06T12:16:29.315Z","access-policy-id":"devbox-policy","ctx":"3d3d0730d692452d"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487389316,"ts":"2024-12-06T12:16:29.316Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"3d3d0730d692452d"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487399353,"ts":"2024-12-06T12:16:39.353Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4a659326da68f0d0","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487399355,"ts":"2024-12-06T12:16:39.355Z","access-policy-id":"devbox-policy","ctx":"4a659326da68f0d0"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487399356,"ts":"2024-12-06T12:16:39.356Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":13,"w_st":200,"ctx":"4a659326da68f0d0"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487408194,"ts":"2024-12-06T12:16:48.194Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"2c68661356c4efc1"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487409373,"ts":"2024-12-06T12:16:49.373Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"03161b291df72c39","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487409373,"ts":"2024-12-06T12:16:49.373Z","access-policy-id":"devbox-policy","ctx":"03161b291df72c39"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487409373,"ts":"2024-12-06T12:16:49.373Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"03161b291df72c39"} +{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733487419457,"ts":"2024-12-06T12:16:59.456Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":14,"ctx":"e27335828ec63957"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487419470,"ts":"2024-12-06T12:16:59.470Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e27335828ec63957","wait_time":9} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487419474,"ts":"2024-12-06T12:16:59.473Z","access-policy-id":"devbox-policy","ctx":"e27335828ec63957"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487419475,"ts":"2024-12-06T12:16:59.475Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":33,"ctx":"6080e8fbbb0174a0"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":6,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487419476,"ts":"2024-12-06T12:16:59.476Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":46,"w_st":200,"ctx":"e27335828ec63957"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487419479,"ts":"2024-12-06T12:16:59.479Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":50,"w_st":200,"ctx":"6080e8fbbb0174a0"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487429456,"ts":"2024-12-06T12:17:09.455Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"cd8cfb69730cd888","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487429456,"ts":"2024-12-06T12:17:09.456Z","access-policy-id":"devbox-policy","ctx":"cd8cfb69730cd888"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487429457,"ts":"2024-12-06T12:17:09.457Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"cd8cfb69730cd888"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":0,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487438268,"ts":"2024-12-06T12:17:18.268Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"9430566463d0d73c"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487439500,"ts":"2024-12-06T12:17:19.500Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7f1f73788318ca54","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487439500,"ts":"2024-12-06T12:17:19.500Z","access-policy-id":"devbox-policy","ctx":"7f1f73788318ca54"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487439501,"ts":"2024-12-06T12:17:19.501Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"7f1f73788318ca54"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733487449529,"ts":"2024-12-06T12:17:29.529Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"dd174d46dcf3845b"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487449532,"ts":"2024-12-06T12:17:29.532Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"dd174d46dcf3845b","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487449533,"ts":"2024-12-06T12:17:29.533Z","access-policy-id":"devbox-policy","ctx":"dd174d46dcf3845b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487449533,"ts":"2024-12-06T12:17:29.533Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"dd174d46dcf3845b"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487459596,"ts":"2024-12-06T12:17:39.596Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"efdc8d005f06fa0b","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487459598,"ts":"2024-12-06T12:17:39.598Z","access-policy-id":"devbox-policy","ctx":"efdc8d005f06fa0b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487459599,"ts":"2024-12-06T12:17:39.599Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":16,"w_st":200,"ctx":"efdc8d005f06fa0b"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487468330,"ts":"2024-12-06T12:17:48.330Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"bd9de557a1e5ffaa"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487469612,"ts":"2024-12-06T12:17:49.612Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6cb60c25d9454a48","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487469613,"ts":"2024-12-06T12:17:49.613Z","access-policy-id":"devbox-policy","ctx":"6cb60c25d9454a48"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487469613,"ts":"2024-12-06T12:17:49.613Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"6cb60c25d9454a48"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487479666,"ts":"2024-12-06T12:17:59.666Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"4ad6fc8bc02f859c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487479672,"ts":"2024-12-06T12:17:59.672Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":11,"w_st":200,"ctx":"4ad6fc8bc02f859c"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487479679,"ts":"2024-12-06T12:17:59.679Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":16,"ctx":"6d77159d8a0201ee"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487479681,"ts":"2024-12-06T12:17:59.681Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6d77159d8a0201ee","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487479682,"ts":"2024-12-06T12:17:59.682Z","access-policy-id":"devbox-policy","ctx":"6d77159d8a0201ee"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487479683,"ts":"2024-12-06T12:17:59.683Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":21,"w_st":200,"ctx":"6d77159d8a0201ee"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487489713,"ts":"2024-12-06T12:18:09.713Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a6edb7a5e4e581fa","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487489714,"ts":"2024-12-06T12:18:09.714Z","access-policy-id":"devbox-policy","ctx":"a6edb7a5e4e581fa"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487489715,"ts":"2024-12-06T12:18:09.715Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"a6edb7a5e4e581fa"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487498408,"ts":"2024-12-06T12:18:18.408Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"d5c03dec268c3a59"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487499748,"ts":"2024-12-06T12:18:19.748Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e22f957738bd4880","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487499756,"ts":"2024-12-06T12:18:19.756Z","access-policy-id":"devbox-policy","ctx":"e22f957738bd4880"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":9,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487499758,"ts":"2024-12-06T12:18:19.757Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":12,"w_st":200,"ctx":"e22f957738bd4880"} +{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733487509807,"ts":"2024-12-06T12:18:29.807Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"54679a181df9184c"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487509813,"ts":"2024-12-06T12:18:29.813Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"54679a181df9184c","wait_time":4} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487509814,"ts":"2024-12-06T12:18:29.814Z","access-policy-id":"devbox-policy","ctx":"54679a181df9184c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487509815,"ts":"2024-12-06T12:18:29.815Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":17,"w_st":200,"ctx":"54679a181df9184c"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487519978,"ts":"2024-12-06T12:18:39.978Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"409bf0dcaf545424","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487519979,"ts":"2024-12-06T12:18:39.979Z","access-policy-id":"devbox-policy","ctx":"409bf0dcaf545424"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487519979,"ts":"2024-12-06T12:18:39.979Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"409bf0dcaf545424"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487528483,"ts":"2024-12-06T12:18:48.483Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"e9218f5773aa48b2"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487530016,"ts":"2024-12-06T12:18:50.016Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e3057ee456ed8ae1","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487530018,"ts":"2024-12-06T12:18:50.018Z","access-policy-id":"devbox-policy","ctx":"e3057ee456ed8ae1"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487530019,"ts":"2024-12-06T12:18:50.019Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"e3057ee456ed8ae1"} +{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733487540101,"ts":"2024-12-06T12:19:00.100Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":12,"ctx":"47c49c6d0f17a839"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487540112,"ts":"2024-12-06T12:19:00.112Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"47c49c6d0f17a839","wait_time":13} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487540115,"ts":"2024-12-06T12:19:00.115Z","access-policy-id":"devbox-policy","ctx":"47c49c6d0f17a839"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487540116,"ts":"2024-12-06T12:19:00.116Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":55,"w_st":200,"ctx":"47c49c6d0f17a839"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487540116,"ts":"2024-12-06T12:19:00.116Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":28,"ctx":"b3d24949b7bb4e46"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487540119,"ts":"2024-12-06T12:19:00.119Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":59,"w_st":200,"ctx":"b3d24949b7bb4e46"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487550109,"ts":"2024-12-06T12:19:10.109Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"257f81a4b34ad860","wait_time":4} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487550111,"ts":"2024-12-06T12:19:10.111Z","access-policy-id":"devbox-policy","ctx":"257f81a4b34ad860"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487550113,"ts":"2024-12-06T12:19:10.113Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":20,"w_st":200,"ctx":"257f81a4b34ad860"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487558680,"ts":"2024-12-06T12:19:18.679Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":24,"w_st":200,"ctx":"3a91c47d2f0d020d"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487560123,"ts":"2024-12-06T12:19:20.123Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6b3855d7c255624c","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487560123,"ts":"2024-12-06T12:19:20.123Z","access-policy-id":"devbox-policy","ctx":"6b3855d7c255624c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487560124,"ts":"2024-12-06T12:19:20.124Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"6b3855d7c255624c"} +{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733487570165,"ts":"2024-12-06T12:19:30.165Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"5adbca906c8f940e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487570168,"ts":"2024-12-06T12:19:30.168Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"5adbca906c8f940e","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487570168,"ts":"2024-12-06T12:19:30.168Z","access-policy-id":"devbox-policy","ctx":"5adbca906c8f940e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487570169,"ts":"2024-12-06T12:19:30.169Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"5adbca906c8f940e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487580226,"ts":"2024-12-06T12:19:40.225Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7f8c373536d27e7f","wait_time":6} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487580228,"ts":"2024-12-06T12:19:40.228Z","access-policy-id":"devbox-policy","ctx":"7f8c373536d27e7f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487580229,"ts":"2024-12-06T12:19:40.229Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":22,"w_st":200,"ctx":"7f8c373536d27e7f"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487588796,"ts":"2024-12-06T12:19:48.796Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":6,"w_st":200,"ctx":"0fd701ade9d4eb11"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487590260,"ts":"2024-12-06T12:19:50.260Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6f54d2f39cbb7172","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487590261,"ts":"2024-12-06T12:19:50.261Z","access-policy-id":"devbox-policy","ctx":"6f54d2f39cbb7172"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487590262,"ts":"2024-12-06T12:19:50.262Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"6f54d2f39cbb7172"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733487600333,"ts":"2024-12-06T12:20:00.332Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":12,"ctx":"c9c10e0d31885e38"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487600355,"ts":"2024-12-06T12:20:00.355Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c9c10e0d31885e38","wait_time":10} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487600357,"ts":"2024-12-06T12:20:00.357Z","access-policy-id":"devbox-policy","ctx":"c9c10e0d31885e38"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487600359,"ts":"2024-12-06T12:20:00.359Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":51,"w_st":200,"ctx":"c9c10e0d31885e38"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487600361,"ts":"2024-12-06T12:20:00.361Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":41,"ctx":"d36104063e03c14c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487600364,"ts":"2024-12-06T12:20:00.364Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":59,"w_st":200,"ctx":"d36104063e03c14c"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487610332,"ts":"2024-12-06T12:20:10.332Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4d40257fa7c89ae7","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487610332,"ts":"2024-12-06T12:20:10.332Z","access-policy-id":"devbox-policy","ctx":"4d40257fa7c89ae7"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487610333,"ts":"2024-12-06T12:20:10.333Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"4d40257fa7c89ae7"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487618898,"ts":"2024-12-06T12:20:18.898Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"b668504263ff6ce1"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487620381,"ts":"2024-12-06T12:20:20.381Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e95eb0c353338a68","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487620382,"ts":"2024-12-06T12:20:20.382Z","access-policy-id":"devbox-policy","ctx":"e95eb0c353338a68"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487620382,"ts":"2024-12-06T12:20:20.382Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"e95eb0c353338a68"} +{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733487630415,"ts":"2024-12-06T12:20:30.415Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"fc14031077e18e51"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487630420,"ts":"2024-12-06T12:20:30.420Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"fc14031077e18e51","wait_time":4} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487630422,"ts":"2024-12-06T12:20:30.422Z","access-policy-id":"devbox-policy","ctx":"fc14031077e18e51"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487630423,"ts":"2024-12-06T12:20:30.423Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":17,"w_st":200,"ctx":"fc14031077e18e51"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487640468,"ts":"2024-12-06T12:20:40.468Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a9acd5ca870afbd4","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487640470,"ts":"2024-12-06T12:20:40.470Z","access-policy-id":"devbox-policy","ctx":"a9acd5ca870afbd4"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487640471,"ts":"2024-12-06T12:20:40.470Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"a9acd5ca870afbd4"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487648960,"ts":"2024-12-06T12:20:48.960Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"cdd4cd8a82aa6926"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487650502,"ts":"2024-12-06T12:20:50.502Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3a4d9a3cc4bd84f6","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487650502,"ts":"2024-12-06T12:20:50.502Z","access-policy-id":"devbox-policy","ctx":"3a4d9a3cc4bd84f6"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487650503,"ts":"2024-12-06T12:20:50.503Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"3a4d9a3cc4bd84f6"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733487660554,"ts":"2024-12-06T12:21:00.554Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"d0daee1bc8bfc037"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487660559,"ts":"2024-12-06T12:21:00.559Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":9,"w_st":200,"ctx":"d0daee1bc8bfc037"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487660567,"ts":"2024-12-06T12:21:00.567Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":17,"ctx":"f18c74c329237925"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487660569,"ts":"2024-12-06T12:21:00.569Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f18c74c329237925","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487660569,"ts":"2024-12-06T12:21:00.569Z","access-policy-id":"devbox-policy","ctx":"f18c74c329237925"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487660570,"ts":"2024-12-06T12:21:00.570Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":20,"w_st":200,"ctx":"f18c74c329237925"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487670620,"ts":"2024-12-06T12:21:10.619Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"681533540cd224aa","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487670622,"ts":"2024-12-06T12:21:10.622Z","access-policy-id":"devbox-policy","ctx":"681533540cd224aa"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487670623,"ts":"2024-12-06T12:21:10.623Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"681533540cd224aa"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487679067,"ts":"2024-12-06T12:21:19.067Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"0cda73893ceea698"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487680635,"ts":"2024-12-06T12:21:20.635Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1e9a0a7bdb96945a","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487680635,"ts":"2024-12-06T12:21:20.635Z","access-policy-id":"devbox-policy","ctx":"1e9a0a7bdb96945a"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487680637,"ts":"2024-12-06T12:21:20.637Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"1e9a0a7bdb96945a"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487690672,"ts":"2024-12-06T12:21:30.671Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":5,"ctx":"1b0464dc5dd996f7"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487690674,"ts":"2024-12-06T12:21:30.674Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1b0464dc5dd996f7","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487690675,"ts":"2024-12-06T12:21:30.675Z","access-policy-id":"devbox-policy","ctx":"1b0464dc5dd996f7"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487690675,"ts":"2024-12-06T12:21:30.675Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"1b0464dc5dd996f7"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487700752,"ts":"2024-12-06T12:21:40.752Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b500c1749f891f49","wait_time":4} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487700754,"ts":"2024-12-06T12:21:40.754Z","access-policy-id":"devbox-policy","ctx":"b500c1749f891f49"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487700756,"ts":"2024-12-06T12:21:40.756Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"b500c1749f891f49"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487709166,"ts":"2024-12-06T12:21:49.166Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"0e8c2d65ccd7190c"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487710770,"ts":"2024-12-06T12:21:50.770Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3c41bcd569b23b1f","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487710771,"ts":"2024-12-06T12:21:50.771Z","access-policy-id":"devbox-policy","ctx":"3c41bcd569b23b1f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487710771,"ts":"2024-12-06T12:21:50.771Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"3c41bcd569b23b1f"} +{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733487720823,"ts":"2024-12-06T12:22:00.823Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"69903e963dda4ca1"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487720827,"ts":"2024-12-06T12:22:00.827Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"69903e963dda4ca1","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487720827,"ts":"2024-12-06T12:22:00.827Z","access-policy-id":"devbox-policy","ctx":"69903e963dda4ca1"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487720828,"ts":"2024-12-06T12:22:00.828Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"69903e963dda4ca1"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487720834,"ts":"2024-12-06T12:22:00.834Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":14,"ctx":"1d7391306c39c79a"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487720837,"ts":"2024-12-06T12:22:00.837Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":18,"w_st":200,"ctx":"1d7391306c39c79a"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487730882,"ts":"2024-12-06T12:22:10.882Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"938ca033bc622dd5","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487730884,"ts":"2024-12-06T12:22:10.884Z","access-policy-id":"devbox-policy","ctx":"938ca033bc622dd5"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487730885,"ts":"2024-12-06T12:22:10.885Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"938ca033bc622dd5"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487739219,"ts":"2024-12-06T12:22:19.219Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"c40ab38c0d1c7c36"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487740912,"ts":"2024-12-06T12:22:20.912Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9f2758a0a4225bf6","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487740912,"ts":"2024-12-06T12:22:20.912Z","access-policy-id":"devbox-policy","ctx":"9f2758a0a4225bf6"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487740913,"ts":"2024-12-06T12:22:20.913Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"9f2758a0a4225bf6"} +{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733487750985,"ts":"2024-12-06T12:22:30.984Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"27a50c899fb79ccd"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487750991,"ts":"2024-12-06T12:22:30.991Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"27a50c899fb79ccd","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487750992,"ts":"2024-12-06T12:22:30.992Z","access-policy-id":"devbox-policy","ctx":"27a50c899fb79ccd"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487750993,"ts":"2024-12-06T12:22:30.993Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":19,"w_st":200,"ctx":"27a50c899fb79ccd"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487761018,"ts":"2024-12-06T12:22:41.018Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"5a516734969f2ba4","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487761019,"ts":"2024-12-06T12:22:41.019Z","access-policy-id":"devbox-policy","ctx":"5a516734969f2ba4"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487761020,"ts":"2024-12-06T12:22:41.020Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"5a516734969f2ba4"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487769285,"ts":"2024-12-06T12:22:49.285Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"7481c7d955e1c215"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487771043,"ts":"2024-12-06T12:22:51.043Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9fb7e00cd2fa9c41","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487771044,"ts":"2024-12-06T12:22:51.044Z","access-policy-id":"devbox-policy","ctx":"9fb7e00cd2fa9c41"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487771045,"ts":"2024-12-06T12:22:51.045Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"9fb7e00cd2fa9c41"} +{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733487781082,"ts":"2024-12-06T12:23:01.082Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"949d43a734ad7283"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487781085,"ts":"2024-12-06T12:23:01.085Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"949d43a734ad7283","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487781086,"ts":"2024-12-06T12:23:01.086Z","access-policy-id":"devbox-policy","ctx":"949d43a734ad7283"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487781086,"ts":"2024-12-06T12:23:01.086Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"949d43a734ad7283"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487781089,"ts":"2024-12-06T12:23:01.089Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":9,"ctx":"fef5e9621d4ebf97"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487781093,"ts":"2024-12-06T12:23:01.093Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":14,"w_st":200,"ctx":"fef5e9621d4ebf97"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487791116,"ts":"2024-12-06T12:23:11.115Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"acf519799921c170","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487791117,"ts":"2024-12-06T12:23:11.117Z","access-policy-id":"devbox-policy","ctx":"acf519799921c170"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487791118,"ts":"2024-12-06T12:23:11.118Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"acf519799921c170"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487799349,"ts":"2024-12-06T12:23:19.349Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"d501b4e25d1f17c8"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487801152,"ts":"2024-12-06T12:23:21.152Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6442cd0667797d2c","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487801153,"ts":"2024-12-06T12:23:21.153Z","access-policy-id":"devbox-policy","ctx":"6442cd0667797d2c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487801154,"ts":"2024-12-06T12:23:21.154Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"6442cd0667797d2c"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733487811218,"ts":"2024-12-06T12:23:31.217Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":13,"ctx":"7f45f154b631a44d"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487811245,"ts":"2024-12-06T12:23:31.245Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7f45f154b631a44d","wait_time":9} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487811247,"ts":"2024-12-06T12:23:31.247Z","access-policy-id":"devbox-policy","ctx":"7f45f154b631a44d"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487811248,"ts":"2024-12-06T12:23:31.248Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":55,"w_st":200,"ctx":"7f45f154b631a44d"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487821240,"ts":"2024-12-06T12:23:41.240Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"181cafe510f99ba3","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487821240,"ts":"2024-12-06T12:23:41.240Z","access-policy-id":"devbox-policy","ctx":"181cafe510f99ba3"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487821241,"ts":"2024-12-06T12:23:41.241Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"181cafe510f99ba3"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":11,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487829478,"ts":"2024-12-06T12:23:49.477Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":36,"w_st":200,"ctx":"bae2de94f9c4f35a"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487831341,"ts":"2024-12-06T12:23:51.341Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d1f5526a594ff704","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487831343,"ts":"2024-12-06T12:23:51.343Z","access-policy-id":"devbox-policy","ctx":"d1f5526a594ff704"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487831344,"ts":"2024-12-06T12:23:51.344Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"d1f5526a594ff704"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487841299,"ts":"2024-12-06T12:24:01.299Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":8,"ctx":"1706296f903bae47"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w3","execution_time":4,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487841310,"ts":"2024-12-06T12:24:01.310Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":25,"w_st":200,"ctx":"1706296f903bae47"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487842285,"ts":"2024-12-06T12:24:02.285Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1bf97d33de12d060","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487842286,"ts":"2024-12-06T12:24:02.286Z","access-policy-id":"devbox-policy","ctx":"1bf97d33de12d060"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487842287,"ts":"2024-12-06T12:24:02.287Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"1bf97d33de12d060"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487852320,"ts":"2024-12-06T12:24:12.320Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a65500e625aa15e5","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487852322,"ts":"2024-12-06T12:24:12.322Z","access-policy-id":"devbox-policy","ctx":"a65500e625aa15e5"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487852323,"ts":"2024-12-06T12:24:12.323Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"a65500e625aa15e5"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487859572,"ts":"2024-12-06T12:24:19.572Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"964be42174baac7e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487862360,"ts":"2024-12-06T12:24:22.360Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d84f7f4d629d146d","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487862361,"ts":"2024-12-06T12:24:22.361Z","access-policy-id":"devbox-policy","ctx":"d84f7f4d629d146d"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487862362,"ts":"2024-12-06T12:24:22.362Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"d84f7f4d629d146d"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733487872418,"ts":"2024-12-06T12:24:32.418Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":26,"ctx":"f7303ed1d66e2e16"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487872419,"ts":"2024-12-06T12:24:32.419Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f7303ed1d66e2e16","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487872419,"ts":"2024-12-06T12:24:32.419Z","access-policy-id":"devbox-policy","ctx":"f7303ed1d66e2e16"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487872419,"ts":"2024-12-06T12:24:32.419Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":29,"w_st":200,"ctx":"f7303ed1d66e2e16"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487882453,"ts":"2024-12-06T12:24:42.452Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4e05e045b601e2db","wait_time":5} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487882454,"ts":"2024-12-06T12:24:42.454Z","access-policy-id":"devbox-policy","ctx":"4e05e045b601e2db"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487882455,"ts":"2024-12-06T12:24:42.455Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":14,"w_st":200,"ctx":"4e05e045b601e2db"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487889632,"ts":"2024-12-06T12:24:49.632Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"45af80b334176f35"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487892503,"ts":"2024-12-06T12:24:52.503Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ff0b6b66139f3447","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487892504,"ts":"2024-12-06T12:24:52.504Z","access-policy-id":"devbox-policy","ctx":"ff0b6b66139f3447"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487892505,"ts":"2024-12-06T12:24:52.505Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"ff0b6b66139f3447"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w6","execution_time":4,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487901547,"ts":"2024-12-06T12:25:01.547Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":8,"w_st":200,"ctx":"1de9d449b86abfa0"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487902542,"ts":"2024-12-06T12:25:02.542Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":5,"ctx":"53d4bfa63869ef73"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487902545,"ts":"2024-12-06T12:25:02.545Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"53d4bfa63869ef73","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487902546,"ts":"2024-12-06T12:25:02.546Z","access-policy-id":"devbox-policy","ctx":"53d4bfa63869ef73"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487902546,"ts":"2024-12-06T12:25:02.546Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"53d4bfa63869ef73"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487912576,"ts":"2024-12-06T12:25:12.576Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9100c71e762ed23e","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487912577,"ts":"2024-12-06T12:25:12.577Z","access-policy-id":"devbox-policy","ctx":"9100c71e762ed23e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487912578,"ts":"2024-12-06T12:25:12.578Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"9100c71e762ed23e"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487919701,"ts":"2024-12-06T12:25:19.701Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"8ca34a5188c2d318"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487922613,"ts":"2024-12-06T12:25:22.613Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"aab0974d085cce62","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487922613,"ts":"2024-12-06T12:25:22.613Z","access-policy-id":"devbox-policy","ctx":"aab0974d085cce62"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487922614,"ts":"2024-12-06T12:25:22.614Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"aab0974d085cce62"} +{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733487932670,"ts":"2024-12-06T12:25:32.670Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":28,"ctx":"31a9b42963d311d8"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487932671,"ts":"2024-12-06T12:25:32.671Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"31a9b42963d311d8","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487932672,"ts":"2024-12-06T12:25:32.672Z","access-policy-id":"devbox-policy","ctx":"31a9b42963d311d8"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487932672,"ts":"2024-12-06T12:25:32.672Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":30,"w_st":200,"ctx":"31a9b42963d311d8"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487942702,"ts":"2024-12-06T12:25:42.702Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"74cca8bf90d9aa2b","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487942703,"ts":"2024-12-06T12:25:42.703Z","access-policy-id":"devbox-policy","ctx":"74cca8bf90d9aa2b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487942703,"ts":"2024-12-06T12:25:42.703Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"74cca8bf90d9aa2b"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":6,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487949797,"ts":"2024-12-06T12:25:49.797Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":41,"w_st":200,"ctx":"f8bf378cd6f564e4"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487952735,"ts":"2024-12-06T12:25:52.735Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3de6f7c079c20679","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487952736,"ts":"2024-12-06T12:25:52.736Z","access-policy-id":"devbox-policy","ctx":"3de6f7c079c20679"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487952737,"ts":"2024-12-06T12:25:52.737Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"3de6f7c079c20679"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":5,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487961790,"ts":"2024-12-06T12:26:01.790Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":10,"w_st":200,"ctx":"aec4a2212c04d00a"} +{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733487962791,"ts":"2024-12-06T12:26:02.791Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":7,"ctx":"742fefb4d685e100"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487962795,"ts":"2024-12-06T12:26:02.795Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"742fefb4d685e100","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487962796,"ts":"2024-12-06T12:26:02.796Z","access-policy-id":"devbox-policy","ctx":"742fefb4d685e100"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487962797,"ts":"2024-12-06T12:26:02.797Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":14,"w_st":200,"ctx":"742fefb4d685e100"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487972850,"ts":"2024-12-06T12:26:12.850Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4ee3afad88e27e02","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487972852,"ts":"2024-12-06T12:26:12.852Z","access-policy-id":"devbox-policy","ctx":"4ee3afad88e27e02"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487972853,"ts":"2024-12-06T12:26:12.853Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":16,"w_st":200,"ctx":"4ee3afad88e27e02"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487979876,"ts":"2024-12-06T12:26:19.876Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"2add13e081c6be67"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487982884,"ts":"2024-12-06T12:26:22.884Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"dbce9dc5892b4bf8","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487982886,"ts":"2024-12-06T12:26:22.886Z","access-policy-id":"devbox-policy","ctx":"dbce9dc5892b4bf8"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487982886,"ts":"2024-12-06T12:26:22.886Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"dbce9dc5892b4bf8"} +{"sql":"SELECT 1","d":2,"timeUnix":1733487991294,"ts":"2024-12-06T12:26:31.294Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} +{"sql":"SELECT 1","d":1,"timeUnix":1733487992312,"ts":"2024-12-06T12:26:32.312Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} +{"sql":"SELECT TRUE FROM \"pg_database\" WHERE \"datname\" = ?","d":3,"db_prm":["aidbox"],"timeUnix":1733487992317,"ts":"2024-12-06T12:26:32.317Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} +{"sql":"SELECT 1","d":0,"timeUnix":1733487992327,"ts":"2024-12-06T12:26:32.327Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} +{"sql":"SELECT 1","d":1,"timeUnix":1733487992337,"ts":"2024-12-06T12:26:32.337Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} +{"sql":"insert into _aidbox_license (id, token)\n values (?, ?)\n on conflict (id) do update\n set token = excluded.token\n returning id","d":1,"db_prm":["9cc80210-140e-41f3-8fdb-933c90d67aaf","eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJjb25zdHJhaW50cyI6eyJkYXRhYmFzZSI6eyJkZWxheSI6MzYwMDAwMCwibGltaXQiOjUzNjg3MDkxMjB9fSwiaGVhcnRiZWF0RXZlcnkiOjE4MDAwMDAsImtleSI6Im9ubGluZS0yMDIyMDUyNC0xNDM2NDciLCJsaWNlbnNlIjp7ImlkIjoiOWNjODAyMTAtMTQwZS00MWYzLThmZGItOTMzYzkwZDY3YWFmIiwicmVzb3VyY2VUeXBlIjoiTGljZW5zZSJ9LCJleHBpcmF0aW9uIjoiMjAyNC0xMi0wN1QxMjoyNjozMi4yODhaIiwiY3JlYXRlZCI6IjIwMjQtMTItMDZUMTE6NTY6MzAuNDQ2WiIsInJlZnJlc2hFdmVyeSI6MzYwMDAwMCwid2FybmluZyI6bnVsbCwic3RhdHVzIjoiYWN0aXZlIiwiaWQiOiIxMTdlMGVkYi1jMTIwLTQ0NDYtYjhlOC1mOTAxMThlMDQ3OGYiLCJsaWNlbnNlLWV4cGlyYXRpb24iOiIyMTIzLTA5LTI4VDAzOjI2OjAwLjIzM1oifQ.qoX8rMZrr9p82k-AhHxTX399gTIJybMuTzFFvNIuw34KJcpfexsvgtibS9vU8TM51glIHwtL-UNc5TOojbPlfqtqHfaGfMoKkAdMweWxWAZotL8IkFE63x_pP7rW0toR1t_aPMKsL2k85xLOp7T3cbpXNgGMR_qK3AsyvihRc8k"],"timeUnix":1733487992348,"ts":"2024-12-06T12:26:32.348Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} +{"sql":"SELECT 1","d":1,"timeUnix":1733487992357,"ts":"2024-12-06T12:26:32.357Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} +{"sql":"select sum(pg_relation_size(oid)\n + case when reltoastrelid = 0\n\t then 0\n\t else pg_relation_size(reltoastrelid)\n\t end) as size\n from pg_class\n where relkind = 'r'\n and not relisshared\n and not relname in ('_import_all', 'codesystem', 'concept', 'valueset')","d":45,"timeUnix":1733487992403,"ts":"2024-12-06T12:26:32.402Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} +{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733487992945,"ts":"2024-12-06T12:26:32.945Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":24,"ctx":"0905d955f55b530b"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487992951,"ts":"2024-12-06T12:26:32.951Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0905d955f55b530b","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487992952,"ts":"2024-12-06T12:26:32.952Z","access-policy-id":"devbox-policy","ctx":"0905d955f55b530b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487992953,"ts":"2024-12-06T12:26:32.953Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":35,"w_st":200,"ctx":"0905d955f55b530b"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488002982,"ts":"2024-12-06T12:26:42.982Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"80a5c2bba870e1b5","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488002983,"ts":"2024-12-06T12:26:42.983Z","access-policy-id":"devbox-policy","ctx":"80a5c2bba870e1b5"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488002984,"ts":"2024-12-06T12:26:42.984Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"80a5c2bba870e1b5"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488009960,"ts":"2024-12-06T12:26:49.959Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":7,"w_st":200,"ctx":"3a29b16d3a20e415"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488013015,"ts":"2024-12-06T12:26:53.015Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f11e455c61b988bb","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488013017,"ts":"2024-12-06T12:26:53.017Z","access-policy-id":"devbox-policy","ctx":"f11e455c61b988bb"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488013018,"ts":"2024-12-06T12:26:53.018Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"f11e455c61b988bb"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w7","execution_time":22,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488022149,"ts":"2024-12-06T12:27:02.149Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":28,"w_st":200,"ctx":"0a7550c7ad6db579"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733488023140,"ts":"2024-12-06T12:27:03.140Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":12,"ctx":"3ef1b8e1f465c1ab"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488023142,"ts":"2024-12-06T12:27:03.142Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3ef1b8e1f465c1ab","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488023143,"ts":"2024-12-06T12:27:03.143Z","access-policy-id":"devbox-policy","ctx":"3ef1b8e1f465c1ab"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488023143,"ts":"2024-12-06T12:27:03.143Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":16,"w_st":200,"ctx":"3ef1b8e1f465c1ab"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488033189,"ts":"2024-12-06T12:27:13.189Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3fedd9342743cd8d","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488033191,"ts":"2024-12-06T12:27:13.191Z","access-policy-id":"devbox-policy","ctx":"3fedd9342743cd8d"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488033191,"ts":"2024-12-06T12:27:13.191Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"3fedd9342743cd8d"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488040021,"ts":"2024-12-06T12:27:20.021Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"02fc76a1cf473bcb"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488043253,"ts":"2024-12-06T12:27:23.253Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"20eed80c493067fa","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488043254,"ts":"2024-12-06T12:27:23.254Z","access-policy-id":"devbox-policy","ctx":"20eed80c493067fa"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488043256,"ts":"2024-12-06T12:27:23.256Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"20eed80c493067fa"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733488053340,"ts":"2024-12-06T12:27:33.340Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":35,"ctx":"ec18ad29ed0119db"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488053341,"ts":"2024-12-06T12:27:33.341Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ec18ad29ed0119db","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488053341,"ts":"2024-12-06T12:27:33.341Z","access-policy-id":"devbox-policy","ctx":"ec18ad29ed0119db"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488053341,"ts":"2024-12-06T12:27:33.341Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":37,"w_st":200,"ctx":"ec18ad29ed0119db"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488063373,"ts":"2024-12-06T12:27:43.373Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ddff5418f053e275","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488063373,"ts":"2024-12-06T12:27:43.373Z","access-policy-id":"devbox-policy","ctx":"ddff5418f053e275"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488063374,"ts":"2024-12-06T12:27:43.374Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"ddff5418f053e275"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488070106,"ts":"2024-12-06T12:27:50.106Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":6,"w_st":200,"ctx":"bf8bb4289a2c2401"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488073501,"ts":"2024-12-06T12:27:53.501Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a7c834bb2ae81672","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488073503,"ts":"2024-12-06T12:27:53.503Z","access-policy-id":"devbox-policy","ctx":"a7c834bb2ae81672"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488073504,"ts":"2024-12-06T12:27:53.504Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"a7c834bb2ae81672"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w1","execution_time":14,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488082546,"ts":"2024-12-06T12:28:02.546Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":19,"w_st":200,"ctx":"00b2cf42c08a8a1f"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733488083544,"ts":"2024-12-06T12:28:03.544Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":15,"ctx":"41e5ca9d69057525"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488083546,"ts":"2024-12-06T12:28:03.546Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"41e5ca9d69057525","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488083547,"ts":"2024-12-06T12:28:03.547Z","access-policy-id":"devbox-policy","ctx":"41e5ca9d69057525"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488083547,"ts":"2024-12-06T12:28:03.547Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":19,"w_st":200,"ctx":"41e5ca9d69057525"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488093694,"ts":"2024-12-06T12:28:13.694Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"859c64b310c7fcee","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488093695,"ts":"2024-12-06T12:28:13.695Z","access-policy-id":"devbox-policy","ctx":"859c64b310c7fcee"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488093695,"ts":"2024-12-06T12:28:13.695Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"859c64b310c7fcee"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488100174,"ts":"2024-12-06T12:28:20.174Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"5d7e8478521f5ea4"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488103825,"ts":"2024-12-06T12:28:23.825Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9220f62c56589a04","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488103827,"ts":"2024-12-06T12:28:23.827Z","access-policy-id":"devbox-policy","ctx":"9220f62c56589a04"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488103828,"ts":"2024-12-06T12:28:23.828Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":12,"w_st":200,"ctx":"9220f62c56589a04"} +{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733488113977,"ts":"2024-12-06T12:28:33.977Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":37,"ctx":"4f7e0abdf31c64f9"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488113981,"ts":"2024-12-06T12:28:33.981Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4f7e0abdf31c64f9","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488113982,"ts":"2024-12-06T12:28:33.982Z","access-policy-id":"devbox-policy","ctx":"4f7e0abdf31c64f9"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488113982,"ts":"2024-12-06T12:28:33.982Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":45,"w_st":200,"ctx":"4f7e0abdf31c64f9"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488123977,"ts":"2024-12-06T12:28:43.977Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b79f7e5a5ca91be4","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488123978,"ts":"2024-12-06T12:28:43.978Z","access-policy-id":"devbox-policy","ctx":"b79f7e5a5ca91be4"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488123979,"ts":"2024-12-06T12:28:43.979Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"b79f7e5a5ca91be4"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488130233,"ts":"2024-12-06T12:28:50.233Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"8cc9dd722c9ba5bf"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488134032,"ts":"2024-12-06T12:28:54.032Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e692c6232a398a51","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488134033,"ts":"2024-12-06T12:28:54.033Z","access-policy-id":"devbox-policy","ctx":"e692c6232a398a51"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488134034,"ts":"2024-12-06T12:28:54.034Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"e692c6232a398a51"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w5","execution_time":25,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488143080,"ts":"2024-12-06T12:29:03.080Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":29,"w_st":200,"ctx":"65d3cdf7be1205ff"} +{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733488144067,"ts":"2024-12-06T12:29:04.067Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":16,"ctx":"b25768d0981e68d7"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488144069,"ts":"2024-12-06T12:29:04.069Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b25768d0981e68d7","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488144070,"ts":"2024-12-06T12:29:04.070Z","access-policy-id":"devbox-policy","ctx":"b25768d0981e68d7"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488144070,"ts":"2024-12-06T12:29:04.070Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":20,"w_st":200,"ctx":"b25768d0981e68d7"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488154089,"ts":"2024-12-06T12:29:14.089Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c4a438541def6507","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488154090,"ts":"2024-12-06T12:29:14.090Z","access-policy-id":"devbox-policy","ctx":"c4a438541def6507"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488154091,"ts":"2024-12-06T12:29:14.091Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"c4a438541def6507"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488160291,"ts":"2024-12-06T12:29:20.291Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"304797338d50731c"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488164128,"ts":"2024-12-06T12:29:24.128Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7c145f9071cf64db","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488164129,"ts":"2024-12-06T12:29:24.129Z","access-policy-id":"devbox-policy","ctx":"7c145f9071cf64db"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488164130,"ts":"2024-12-06T12:29:24.130Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"7c145f9071cf64db"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733488174200,"ts":"2024-12-06T12:29:34.200Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":25,"ctx":"1de5842dfa2825d4"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488174203,"ts":"2024-12-06T12:29:34.203Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1de5842dfa2825d4","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488174204,"ts":"2024-12-06T12:29:34.204Z","access-policy-id":"devbox-policy","ctx":"1de5842dfa2825d4"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488174204,"ts":"2024-12-06T12:29:34.204Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":31,"w_st":200,"ctx":"1de5842dfa2825d4"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488184239,"ts":"2024-12-06T12:29:44.239Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"eb5d8a2aedc4575b","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488184240,"ts":"2024-12-06T12:29:44.240Z","access-policy-id":"devbox-policy","ctx":"eb5d8a2aedc4575b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488184241,"ts":"2024-12-06T12:29:44.240Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"eb5d8a2aedc4575b"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488190346,"ts":"2024-12-06T12:29:50.346Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"c2934f24d49b2185"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488194280,"ts":"2024-12-06T12:29:54.280Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"09829159dd1a082f","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488194281,"ts":"2024-12-06T12:29:54.281Z","access-policy-id":"devbox-policy","ctx":"09829159dd1a082f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488194281,"ts":"2024-12-06T12:29:54.281Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"09829159dd1a082f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w8","execution_time":18,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488203337,"ts":"2024-12-06T12:30:03.337Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":21,"w_st":200,"ctx":"f552b99a17bc3f8f"} +{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733488204329,"ts":"2024-12-06T12:30:04.329Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":12,"ctx":"7501e9f8c887b44d"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488204331,"ts":"2024-12-06T12:30:04.331Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7501e9f8c887b44d","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488204331,"ts":"2024-12-06T12:30:04.331Z","access-policy-id":"devbox-policy","ctx":"7501e9f8c887b44d"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488204332,"ts":"2024-12-06T12:30:04.332Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":15,"w_st":200,"ctx":"7501e9f8c887b44d"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488214360,"ts":"2024-12-06T12:30:14.360Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"abca20d4c0977bad","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488214361,"ts":"2024-12-06T12:30:14.361Z","access-policy-id":"devbox-policy","ctx":"abca20d4c0977bad"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488214362,"ts":"2024-12-06T12:30:14.362Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"abca20d4c0977bad"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488220410,"ts":"2024-12-06T12:30:20.409Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"4bf417087a918637"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488224401,"ts":"2024-12-06T12:30:24.401Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"07e541119b82c545","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488224402,"ts":"2024-12-06T12:30:24.402Z","access-policy-id":"devbox-policy","ctx":"07e541119b82c545"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488224403,"ts":"2024-12-06T12:30:24.403Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"07e541119b82c545"} +{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733488234468,"ts":"2024-12-06T12:30:34.468Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":15,"ctx":"38c4460e508b0e44"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488234469,"ts":"2024-12-06T12:30:34.469Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"38c4460e508b0e44","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488234470,"ts":"2024-12-06T12:30:34.470Z","access-policy-id":"devbox-policy","ctx":"38c4460e508b0e44"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488234470,"ts":"2024-12-06T12:30:34.470Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":17,"w_st":200,"ctx":"38c4460e508b0e44"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488244504,"ts":"2024-12-06T12:30:44.504Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f5f109a4d40d551b","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488244505,"ts":"2024-12-06T12:30:44.505Z","access-policy-id":"devbox-policy","ctx":"f5f109a4d40d551b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488244506,"ts":"2024-12-06T12:30:44.506Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"f5f109a4d40d551b"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488250461,"ts":"2024-12-06T12:30:50.461Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"6657ed93ec1ffac3"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488254543,"ts":"2024-12-06T12:30:54.543Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"8f18dcc1a177cd52","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488254544,"ts":"2024-12-06T12:30:54.544Z","access-policy-id":"devbox-policy","ctx":"8f18dcc1a177cd52"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488254544,"ts":"2024-12-06T12:30:54.544Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"8f18dcc1a177cd52"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w4","execution_time":10,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488263605,"ts":"2024-12-06T12:31:03.605Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":13,"w_st":200,"ctx":"4786fbb292d869a5"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733488264595,"ts":"2024-12-06T12:31:04.595Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":11,"ctx":"9f24ee98429802f0"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488264597,"ts":"2024-12-06T12:31:04.597Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9f24ee98429802f0","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488264597,"ts":"2024-12-06T12:31:04.597Z","access-policy-id":"devbox-policy","ctx":"9f24ee98429802f0"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488264597,"ts":"2024-12-06T12:31:04.597Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":14,"w_st":200,"ctx":"9f24ee98429802f0"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488274658,"ts":"2024-12-06T12:31:14.657Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f4ae43e28f73695a","wait_time":7} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488274659,"ts":"2024-12-06T12:31:14.659Z","access-policy-id":"devbox-policy","ctx":"f4ae43e28f73695a"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488274660,"ts":"2024-12-06T12:31:14.660Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":21,"w_st":200,"ctx":"f4ae43e28f73695a"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488280534,"ts":"2024-12-06T12:31:20.534Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"6f4390c4e7502b5a"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488284680,"ts":"2024-12-06T12:31:24.680Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6e63db86ca7f9619","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488284681,"ts":"2024-12-06T12:31:24.681Z","access-policy-id":"devbox-policy","ctx":"6e63db86ca7f9619"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488284682,"ts":"2024-12-06T12:31:24.682Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"6e63db86ca7f9619"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733488294768,"ts":"2024-12-06T12:31:34.767Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":38,"ctx":"b87ea1620d273cab"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488294770,"ts":"2024-12-06T12:31:34.770Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b87ea1620d273cab","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488294770,"ts":"2024-12-06T12:31:34.770Z","access-policy-id":"devbox-policy","ctx":"b87ea1620d273cab"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488294770,"ts":"2024-12-06T12:31:34.770Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":42,"w_st":200,"ctx":"b87ea1620d273cab"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488304773,"ts":"2024-12-06T12:31:44.773Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"8528e7afada5d152","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488304773,"ts":"2024-12-06T12:31:44.773Z","access-policy-id":"devbox-policy","ctx":"8528e7afada5d152"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488304774,"ts":"2024-12-06T12:31:44.774Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"8528e7afada5d152"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488310638,"ts":"2024-12-06T12:31:50.638Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":7,"w_st":200,"ctx":"e1a0cdb9a3b7bd2c"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488314811,"ts":"2024-12-06T12:31:54.811Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"79557a93057d9c36","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488314812,"ts":"2024-12-06T12:31:54.812Z","access-policy-id":"devbox-policy","ctx":"79557a93057d9c36"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488314812,"ts":"2024-12-06T12:31:54.812Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"79557a93057d9c36"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w3","execution_time":16,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488323867,"ts":"2024-12-06T12:32:03.867Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":30,"w_st":200,"ctx":"1a20a86d69822b1b"} +{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733488324848,"ts":"2024-12-06T12:32:04.848Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":9,"ctx":"d9cd508fb8ac66ba"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488324849,"ts":"2024-12-06T12:32:04.849Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d9cd508fb8ac66ba","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488324850,"ts":"2024-12-06T12:32:04.850Z","access-policy-id":"devbox-policy","ctx":"d9cd508fb8ac66ba"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488324850,"ts":"2024-12-06T12:32:04.850Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"d9cd508fb8ac66ba"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488334879,"ts":"2024-12-06T12:32:14.879Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b84d66f174c79ce9","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488334879,"ts":"2024-12-06T12:32:14.879Z","access-policy-id":"devbox-policy","ctx":"b84d66f174c79ce9"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488334880,"ts":"2024-12-06T12:32:14.880Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"b84d66f174c79ce9"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488340710,"ts":"2024-12-06T12:32:20.710Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"ba76a11d16e971dd"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488344912,"ts":"2024-12-06T12:32:24.912Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"56f571f2c81b110e","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488344913,"ts":"2024-12-06T12:32:24.913Z","access-policy-id":"devbox-policy","ctx":"56f571f2c81b110e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488344913,"ts":"2024-12-06T12:32:24.913Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"56f571f2c81b110e"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733488354964,"ts":"2024-12-06T12:32:34.964Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":30,"ctx":"2fd900fc4193642e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488354966,"ts":"2024-12-06T12:32:34.966Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"2fd900fc4193642e","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488354966,"ts":"2024-12-06T12:32:34.966Z","access-policy-id":"devbox-policy","ctx":"2fd900fc4193642e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488354967,"ts":"2024-12-06T12:32:34.967Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":33,"w_st":200,"ctx":"2fd900fc4193642e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488365026,"ts":"2024-12-06T12:32:45.025Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6c4ab44df0dd023f","wait_time":6} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488365027,"ts":"2024-12-06T12:32:45.027Z","access-policy-id":"devbox-policy","ctx":"6c4ab44df0dd023f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":6,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488365032,"ts":"2024-12-06T12:32:45.032Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":25,"w_st":200,"ctx":"6c4ab44df0dd023f"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":8,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488370822,"ts":"2024-12-06T12:32:50.822Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":10,"w_st":200,"ctx":"63fddfc2baf1e931"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488375054,"ts":"2024-12-06T12:32:55.054Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"bfcb834cfac81740","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488375054,"ts":"2024-12-06T12:32:55.054Z","access-policy-id":"devbox-policy","ctx":"bfcb834cfac81740"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488375055,"ts":"2024-12-06T12:32:55.055Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"bfcb834cfac81740"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w6","execution_time":25,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488384144,"ts":"2024-12-06T12:33:04.144Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":45,"w_st":200,"ctx":"5fe37f7c4c6a31a7"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733488385124,"ts":"2024-12-06T12:33:05.124Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":21,"ctx":"b19f413a25b10d56"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488385127,"ts":"2024-12-06T12:33:05.127Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b19f413a25b10d56","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488385128,"ts":"2024-12-06T12:33:05.128Z","access-policy-id":"devbox-policy","ctx":"b19f413a25b10d56"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488385129,"ts":"2024-12-06T12:33:05.129Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":28,"w_st":200,"ctx":"b19f413a25b10d56"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488395144,"ts":"2024-12-06T12:33:15.144Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"acc42fda4dacd150","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488395145,"ts":"2024-12-06T12:33:15.145Z","access-policy-id":"devbox-policy","ctx":"acc42fda4dacd150"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488395146,"ts":"2024-12-06T12:33:15.146Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"acc42fda4dacd150"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488400927,"ts":"2024-12-06T12:33:20.927Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":5,"w_st":200,"ctx":"4b64aba302f5be62"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488405209,"ts":"2024-12-06T12:33:25.208Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"da15f66c8ab9ac6b","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488405209,"ts":"2024-12-06T12:33:25.209Z","access-policy-id":"devbox-policy","ctx":"da15f66c8ab9ac6b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488405210,"ts":"2024-12-06T12:33:25.210Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"da15f66c8ab9ac6b"} +{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733488415290,"ts":"2024-12-06T12:33:35.290Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":32,"ctx":"d5f1962901721a77"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488415297,"ts":"2024-12-06T12:33:35.297Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d5f1962901721a77","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488415298,"ts":"2024-12-06T12:33:35.298Z","access-policy-id":"devbox-policy","ctx":"d5f1962901721a77"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488415298,"ts":"2024-12-06T12:33:35.298Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":44,"w_st":200,"ctx":"d5f1962901721a77"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488425344,"ts":"2024-12-06T12:33:45.344Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"90ea6d91e84d52cb","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488425346,"ts":"2024-12-06T12:33:45.346Z","access-policy-id":"devbox-policy","ctx":"90ea6d91e84d52cb"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488425347,"ts":"2024-12-06T12:33:45.347Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"90ea6d91e84d52cb"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488430981,"ts":"2024-12-06T12:33:50.981Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"43cd494943ae05db"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488435375,"ts":"2024-12-06T12:33:55.375Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b413f4eecbdf479e","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488435375,"ts":"2024-12-06T12:33:55.375Z","access-policy-id":"devbox-policy","ctx":"b413f4eecbdf479e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488435376,"ts":"2024-12-06T12:33:55.376Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"b413f4eecbdf479e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":25,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488444428,"ts":"2024-12-06T12:34:04.428Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":29,"w_st":200,"ctx":"79bc6b6f183e8b79"} +{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733488445413,"ts":"2024-12-06T12:34:05.413Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":14,"ctx":"caa4c38e0b148442"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488445416,"ts":"2024-12-06T12:34:05.416Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"caa4c38e0b148442","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488445416,"ts":"2024-12-06T12:34:05.416Z","access-policy-id":"devbox-policy","ctx":"caa4c38e0b148442"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488445417,"ts":"2024-12-06T12:34:05.417Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":19,"w_st":200,"ctx":"caa4c38e0b148442"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488455452,"ts":"2024-12-06T12:34:15.452Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7913f64d385edb06","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488455452,"ts":"2024-12-06T12:34:15.452Z","access-policy-id":"devbox-policy","ctx":"7913f64d385edb06"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488455453,"ts":"2024-12-06T12:34:15.453Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"7913f64d385edb06"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":4,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488461076,"ts":"2024-12-06T12:34:21.076Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":9,"w_st":200,"ctx":"6bd293c4b08223a2"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488465490,"ts":"2024-12-06T12:34:25.489Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a691a8fd1640093f","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488465492,"ts":"2024-12-06T12:34:25.492Z","access-policy-id":"devbox-policy","ctx":"a691a8fd1640093f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488465493,"ts":"2024-12-06T12:34:25.493Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"a691a8fd1640093f"} +{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733488475564,"ts":"2024-12-06T12:34:35.564Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":44,"ctx":"4b93bc5c8bc8d4e4"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488475566,"ts":"2024-12-06T12:34:35.566Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4b93bc5c8bc8d4e4","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488475566,"ts":"2024-12-06T12:34:35.566Z","access-policy-id":"devbox-policy","ctx":"4b93bc5c8bc8d4e4"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488475566,"ts":"2024-12-06T12:34:35.566Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":47,"w_st":200,"ctx":"4b93bc5c8bc8d4e4"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488485567,"ts":"2024-12-06T12:34:45.567Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d649489ad680c9fe","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488485568,"ts":"2024-12-06T12:34:45.568Z","access-policy-id":"devbox-policy","ctx":"d649489ad680c9fe"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488485569,"ts":"2024-12-06T12:34:45.569Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"d649489ad680c9fe"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488491144,"ts":"2024-12-06T12:34:51.144Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"ba780708f9581551"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488495600,"ts":"2024-12-06T12:34:55.600Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"bf6d6c481ed797ff","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488495601,"ts":"2024-12-06T12:34:55.601Z","access-policy-id":"devbox-policy","ctx":"bf6d6c481ed797ff"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488495601,"ts":"2024-12-06T12:34:55.601Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"bf6d6c481ed797ff"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w7","execution_time":41,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488504719,"ts":"2024-12-06T12:35:04.719Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":64,"w_st":200,"ctx":"d8535d39ae0d3ece"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733488505669,"ts":"2024-12-06T12:35:05.669Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":14,"ctx":"0d00b214ca4ac2e5"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488505671,"ts":"2024-12-06T12:35:05.671Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0d00b214ca4ac2e5","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488505672,"ts":"2024-12-06T12:35:05.672Z","access-policy-id":"devbox-policy","ctx":"0d00b214ca4ac2e5"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488505673,"ts":"2024-12-06T12:35:05.673Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":19,"w_st":200,"ctx":"0d00b214ca4ac2e5"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488515717,"ts":"2024-12-06T12:35:15.717Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f882c00958f948c1","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488515718,"ts":"2024-12-06T12:35:15.718Z","access-policy-id":"devbox-policy","ctx":"f882c00958f948c1"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488515719,"ts":"2024-12-06T12:35:15.719Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"f882c00958f948c1"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488521255,"ts":"2024-12-06T12:35:21.254Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":9,"w_st":200,"ctx":"94e73cb2cc394c51"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488525761,"ts":"2024-12-06T12:35:25.761Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"8d2c947673382305","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488525763,"ts":"2024-12-06T12:35:25.763Z","access-policy-id":"devbox-policy","ctx":"8d2c947673382305"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488525764,"ts":"2024-12-06T12:35:25.764Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"8d2c947673382305"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733488535831,"ts":"2024-12-06T12:35:35.831Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":25,"ctx":"4539b26a76f0d467"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488535833,"ts":"2024-12-06T12:35:35.833Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4539b26a76f0d467","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488535833,"ts":"2024-12-06T12:35:35.833Z","access-policy-id":"devbox-policy","ctx":"4539b26a76f0d467"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488535833,"ts":"2024-12-06T12:35:35.833Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":28,"w_st":200,"ctx":"4539b26a76f0d467"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488545852,"ts":"2024-12-06T12:35:45.852Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d3c99fbabc5f2e69","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488545853,"ts":"2024-12-06T12:35:45.853Z","access-policy-id":"devbox-policy","ctx":"d3c99fbabc5f2e69"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488545854,"ts":"2024-12-06T12:35:45.854Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"d3c99fbabc5f2e69"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488551333,"ts":"2024-12-06T12:35:51.333Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":10,"w_st":200,"ctx":"88ae0ca0ce2b4f6d"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488555892,"ts":"2024-12-06T12:35:55.892Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e86a0a8d362d154b","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488555894,"ts":"2024-12-06T12:35:55.894Z","access-policy-id":"devbox-policy","ctx":"e86a0a8d362d154b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488555895,"ts":"2024-12-06T12:35:55.895Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"e86a0a8d362d154b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w1","execution_time":27,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488564971,"ts":"2024-12-06T12:36:04.971Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":30,"w_st":200,"ctx":"304e8f7e9b28e38d"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733488565955,"ts":"2024-12-06T12:36:05.955Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":14,"ctx":"4c5692daed25d1cd"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488565958,"ts":"2024-12-06T12:36:05.958Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4c5692daed25d1cd","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488565958,"ts":"2024-12-06T12:36:05.958Z","access-policy-id":"devbox-policy","ctx":"4c5692daed25d1cd"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488565959,"ts":"2024-12-06T12:36:05.959Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":19,"w_st":200,"ctx":"4c5692daed25d1cd"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488576006,"ts":"2024-12-06T12:36:16.006Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4c23d7bdb5b8c0e8","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488576007,"ts":"2024-12-06T12:36:16.007Z","access-policy-id":"devbox-policy","ctx":"4c23d7bdb5b8c0e8"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488576008,"ts":"2024-12-06T12:36:16.008Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"4c23d7bdb5b8c0e8"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488581405,"ts":"2024-12-06T12:36:21.405Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":10,"w_st":200,"ctx":"9fec59a1f1f5bc40"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488586037,"ts":"2024-12-06T12:36:26.037Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f8c5be2c110dbf7a","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488586038,"ts":"2024-12-06T12:36:26.038Z","access-policy-id":"devbox-policy","ctx":"f8c5be2c110dbf7a"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488586039,"ts":"2024-12-06T12:36:26.039Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"f8c5be2c110dbf7a"} +{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733488587018,"ts":"2024-12-06T12:36:27.018Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":1,"ctx":"654cd4de3a825e3a"} +{"ev":"w/req","w_url":"/Patient","w":"w6","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488587019,"ts":"2024-12-06T12:36:27.019Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"654cd4de3a825e3a","wait_time":7,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488587020,"ts":"2024-12-06T12:36:27.020Z","access-policy-id":"devbox-policy","ctx":"654cd4de3a825e3a"} +{"ev":"db/q","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733488587025,"ts":"2024-12-06T12:36:27.025Z","sql":"select id, ts, cts, txid, resource_type, resource from \"search\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":1,"ctx":"654cd4de3a825e3a"} +{"ev":"db/q","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733488587253,"ts":"2024-12-06T12:36:27.253Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":4,"ctx":"654cd4de3a825e3a"} +{"ev":"resource/create","txid":"8","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733488587257,"ts":"2024-12-06T12:36:27.257Z","rtp":"Patient","ctx":"654cd4de3a825e3a","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w6","execution_time":240,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488587259,"ts":"2024-12-06T12:36:27.259Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":250,"w_st":201,"ctx":"654cd4de3a825e3a","w_qs":"given=John&family=Doe"} +{"ev":"w/req","w_url":"/Patient","w":"w2","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488587264,"ts":"2024-12-06T12:36:27.264Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"819b635ead7f3fdf","wait_time":0,"w_qs":"given=Alice&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488587264,"ts":"2024-12-06T12:36:27.264Z","access-policy-id":"devbox-policy","ctx":"819b635ead7f3fdf"} +{"ev":"db/q","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488587267,"ts":"2024-12-06T12:36:27.267Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":0,"ctx":"819b635ead7f3fdf"} +{"ev":"resource/create","txid":"9","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488587269,"ts":"2024-12-06T12:36:27.269Z","rtp":"Patient","ctx":"819b635ead7f3fdf","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w2","execution_time":6,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488587270,"ts":"2024-12-06T12:36:27.270Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":7,"w_st":201,"ctx":"819b635ead7f3fdf","w_qs":"given=Alice&family=Doe"} +{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733488596085,"ts":"2024-12-06T12:36:36.085Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"887e9044b09c45bb"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488596089,"ts":"2024-12-06T12:36:36.089Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"887e9044b09c45bb","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488596091,"ts":"2024-12-06T12:36:36.091Z","access-policy-id":"devbox-policy","ctx":"887e9044b09c45bb"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488596092,"ts":"2024-12-06T12:36:36.092Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":17,"w_st":200,"ctx":"887e9044b09c45bb"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488606125,"ts":"2024-12-06T12:36:46.125Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c07dcadca14d403f","wait_time":4} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488606127,"ts":"2024-12-06T12:36:46.127Z","access-policy-id":"devbox-policy","ctx":"c07dcadca14d403f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488606128,"ts":"2024-12-06T12:36:46.128Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":16,"w_st":200,"ctx":"c07dcadca14d403f"} +{"ev":"w/req","w_url":"/Patient","w":"w5","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488606580,"ts":"2024-12-06T12:36:46.580Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"a1243225f8e35b35","wait_time":1,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488606580,"ts":"2024-12-06T12:36:46.580Z","access-policy-id":"devbox-policy","ctx":"a1243225f8e35b35"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488606590,"ts":"2024-12-06T12:36:46.589Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"a1243225f8e35b35"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488606597,"ts":"2024-12-06T12:36:46.597Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"a1243225f8e35b35"} +{"ev":"resource/update","txid":"10","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488606601,"ts":"2024-12-06T12:36:46.601Z","rtp":"Patient","ctx":"a1243225f8e35b35","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w5","execution_time":23,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488606603,"ts":"2024-12-06T12:36:46.603Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":26,"w_st":200,"ctx":"a1243225f8e35b35","w_qs":"given=John&family=Doe"} +{"ev":"w/req","w_url":"/Patient","w":"w8","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488606607,"ts":"2024-12-06T12:36:46.607Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"c1cc5130dac4b7e7","wait_time":0,"w_qs":"given=Alice&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488606607,"ts":"2024-12-06T12:36:46.607Z","access-policy-id":"devbox-policy","ctx":"c1cc5130dac4b7e7"} +{"ev":"db/q","w":"w8","tn":"devbox","op":"conditional-update","timeUnix":1733488606612,"ts":"2024-12-06T12:36:46.612Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"c1cc5130dac4b7e7"} +{"ev":"db/q","w":"w8","tn":"devbox","op":"conditional-update","timeUnix":1733488606613,"ts":"2024-12-06T12:36:46.612Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"c1cc5130dac4b7e7"} +{"ev":"resource/update","txid":"11","w":"w8","tn":"devbox","op":"conditional-update","timeUnix":1733488606616,"ts":"2024-12-06T12:36:46.616Z","rtp":"Patient","ctx":"c1cc5130dac4b7e7","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w8","execution_time":11,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488606618,"ts":"2024-12-06T12:36:46.618Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":12,"w_st":200,"ctx":"c1cc5130dac4b7e7","w_qs":"given=Alice&family=Doe"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488611470,"ts":"2024-12-06T12:36:51.470Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"a99f75e677b87a72"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488616165,"ts":"2024-12-06T12:36:56.165Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"23f98c3357ce7c68","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488616165,"ts":"2024-12-06T12:36:56.165Z","access-policy-id":"devbox-policy","ctx":"23f98c3357ce7c68"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488616166,"ts":"2024-12-06T12:36:56.166Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"23f98c3357ce7c68"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w6","execution_time":18,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488625214,"ts":"2024-12-06T12:37:05.214Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":23,"w_st":200,"ctx":"21bee963ec0554eb"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733488626212,"ts":"2024-12-06T12:37:06.212Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":14,"ctx":"10a0cb027fd2d75b"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488626215,"ts":"2024-12-06T12:37:06.214Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"10a0cb027fd2d75b","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488626215,"ts":"2024-12-06T12:37:06.215Z","access-policy-id":"devbox-policy","ctx":"10a0cb027fd2d75b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488626216,"ts":"2024-12-06T12:37:06.216Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":19,"w_st":200,"ctx":"10a0cb027fd2d75b"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488636232,"ts":"2024-12-06T12:37:16.232Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a10b56c3cb4a07ea","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488636233,"ts":"2024-12-06T12:37:16.233Z","access-policy-id":"devbox-policy","ctx":"a10b56c3cb4a07ea"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488636234,"ts":"2024-12-06T12:37:16.234Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"a10b56c3cb4a07ea"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733488636889,"ts":"2024-12-06T12:37:16.889Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":3,"ctx":"7448cd29a88d3d4e"} +{"ev":"w/req","w_url":"/Patient","w":"w1","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488636892,"ts":"2024-12-06T12:37:16.892Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"7448cd29a88d3d4e","wait_time":0,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488636892,"ts":"2024-12-06T12:37:16.892Z","access-policy-id":"devbox-policy","ctx":"7448cd29a88d3d4e"} +{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733488636914,"ts":"2024-12-06T12:37:16.914Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":14,"ctx":"7448cd29a88d3d4e"} +{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733488636916,"ts":"2024-12-06T12:37:16.916Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"7448cd29a88d3d4e"} +{"ev":"resource/update-dup","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733488636922,"ts":"2024-12-06T12:37:16.922Z","rtp":"Patient","ctx":"7448cd29a88d3d4e","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w1","execution_time":32,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488636924,"ts":"2024-12-06T12:37:16.924Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":39,"w_st":200,"ctx":"7448cd29a88d3d4e","w_qs":"given=John&family=Doe"} +{"ev":"w/req","w_url":"/Patient","w":"w5","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488636932,"ts":"2024-12-06T12:37:16.932Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"831d3c26b855ce8f","wait_time":0,"w_qs":"given=Alice&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488636933,"ts":"2024-12-06T12:37:16.933Z","access-policy-id":"devbox-policy","ctx":"831d3c26b855ce8f"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488636942,"ts":"2024-12-06T12:37:16.942Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"831d3c26b855ce8f"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488636943,"ts":"2024-12-06T12:37:16.943Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":1,"ctx":"831d3c26b855ce8f"} +{"ev":"resource/update-dup","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488636945,"ts":"2024-12-06T12:37:16.945Z","rtp":"Patient","ctx":"831d3c26b855ce8f","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w5","execution_time":15,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488636947,"ts":"2024-12-06T12:37:16.947Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":18,"w_st":200,"ctx":"831d3c26b855ce8f","w_qs":"given=Alice&family=Doe"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":6,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488641592,"ts":"2024-12-06T12:37:21.592Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":14,"w_st":200,"ctx":"8ec5c0d0955f4abe"} +{"ev":"w/req","w_url":"/ui/console","w":"w4","w_m":"get","tn":"devbox","op":"console","timeUnix":1733488645193,"ts":"2024-12-06T12:37:25.193Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"524ee188ce6d269d","wait_time":0} +{"w_referer":"http://localhost:8888/auth/login","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/ui/console","w":"w4","execution_time":8,"w_m":"get","tn":"devbox","op":"console","timeUnix":1733488645201,"ts":"2024-12-06T12:37:25.201Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /ui/console","w_uid":"admin","d":12,"w_st":200,"ctx":"524ee188ce6d269d"} +{"ev":"w/req","w_url":"/fhir/Patient","w":"w5","w_m":"get","tn":"devbox","op":"search","timeUnix":1733488646104,"ts":"2024-12-06T12:37:26.104Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"8934677131c5692b","wait_time":1,"w_qs":"_count=30&_sort=_id&_ilike="} +{"ev":"w/req","w_url":"/rpc","w":"w8","w_m":"post","tn":"devbox","op":"rpc","timeUnix":1733488646109,"ts":"2024-12-06T12:37:26.109Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"581fe5f9d6ed10eb","wait_time":3,"w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"FhirSearch","tn":"devbox","op":"search","timeUnix":1733488646111,"ts":"2024-12-06T12:37:26.111Z","access-policy-id":"devbox-policy","ctx":"8934677131c5692b"} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"rpc","tn":"devbox","op":"rpc","timeUnix":1733488646111,"ts":"2024-12-06T12:37:26.111Z","access-policy-id":"devbox-policy","ctx":"581fe5f9d6ed10eb"} +{"ev":"w/req","w_url":"/fhir/metadata","w":"w1","w_m":"get","tn":"devbox","op":"capability","timeUnix":1733488646113,"ts":"2024-12-06T12:37:26.113Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b03058756d9f2288","wait_time":14,"w_qs":"include-custom-resources=true"} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"fhir-capability","tn":"devbox","op":"capability","timeUnix":1733488646113,"ts":"2024-12-06T12:37:26.113Z","access-policy-id":"devbox-policy","ctx":"b03058756d9f2288"} +{"ev":"db/q","w":"w1","tn":"devbox","op":"capability","timeUnix":1733488646116,"ts":"2024-12-06T12:37:26.116Z","sql":"SELECT * FROM \"aidboxconfig\" WHERE \"id\" = ?","db_prm":["box"],"d":2,"ctx":"b03058756d9f2288"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"search","timeUnix":1733488646119,"ts":"2024-12-06T12:37:26.119Z","sql":"SELECT \"patient\".* FROM \"patient\" ORDER BY \"patient\".id ASC LIMIT ? OFFSET ? ","db_prm":["30","0"],"d":5,"ctx":"8934677131c5692b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Patient","w":"w5","execution_time":16,"w_m":"get","tn":"devbox","op":"search","timeUnix":1733488646120,"ts":"2024-12-06T12:37:26.120Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Patient","w_r":"GET /fhir/Patient","w_uid":"admin","d":23,"w_st":200,"ctx":"8934677131c5692b","w_qs":"_count=30&_sort=_id&_ilike="} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/metadata","w":"w1","execution_time":8,"w_m":"get","tn":"devbox","op":"capability","timeUnix":1733488646121,"ts":"2024-12-06T12:37:26.121Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /fhir/metadata","w_uid":"admin","d":23,"w_st":200,"ctx":"b03058756d9f2288","w_qs":"include-custom-resources=true"} +{"rpc_p":{"resource-type":"Patient"},"ev":"rpc/call","rpc_m":"aidbox.introspector/get-schemas-by-resource-type","w":"w8","tn":"devbox","rpc_u":{"email":null},"op":"rpc:get-schemas-by-resource-type","timeUnix":1733488646242,"ts":"2024-12-06T12:37:26.242Z","d":130,"ctx":"581fe5f9d6ed10eb","lvl":"info"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/rpc","w":"w8","execution_time":134,"w_m":"post","tn":"devbox","op":"rpc:get-schemas-by-resource-type","timeUnix":1733488646243,"ts":"2024-12-06T12:37:26.243Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /rpc","w_uid":"admin","d":145,"w_st":200,"ctx":"581fe5f9d6ed10eb","w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} +{"ev":"w/req","w_url":"/fhir/Patient/$validate","w":"w4","w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733488647611,"ts":"2024-12-06T12:37:27.611Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d1a7680446069aba","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"FhirValidateCreate","tn":"devbox","op":"$validate","timeUnix":1733488647612,"ts":"2024-12-06T12:37:27.612Z","access-policy-id":"devbox-policy","ctx":"d1a7680446069aba"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Patient/$validate","w":"w4","execution_time":7,"w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733488647618,"ts":"2024-12-06T12:37:27.618Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Patient","w_r":"POST /fhir/Patient/$validate","w_uid":"admin","d":10,"w_st":200,"ctx":"d1a7680446069aba"} +{"ev":"w/req","w_url":"/fhir/Patient/$validate","w":"w3","w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733488648484,"ts":"2024-12-06T12:37:28.484Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"5c734d13fdf4c3a8","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"FhirValidateCreate","tn":"devbox","op":"$validate","timeUnix":1733488648485,"ts":"2024-12-06T12:37:28.485Z","access-policy-id":"devbox-policy","ctx":"5c734d13fdf4c3a8"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Patient/$validate","w":"w3","execution_time":6,"w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733488648490,"ts":"2024-12-06T12:37:28.490Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Patient","w_r":"POST /fhir/Patient/$validate","w_uid":"admin","d":8,"w_st":200,"ctx":"5c734d13fdf4c3a8"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488656086,"ts":"2024-12-06T12:37:36.086Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"80ec70a1715dccd4","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488656086,"ts":"2024-12-06T12:37:36.086Z","access-policy-id":"devbox-policy","ctx":"80ec70a1715dccd4"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488656088,"ts":"2024-12-06T12:37:36.088Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"80ec70a1715dccd4"} +{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733488666092,"ts":"2024-12-06T12:37:46.091Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"f7102a280e6c607b"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488666099,"ts":"2024-12-06T12:37:46.099Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f7102a280e6c607b","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488666100,"ts":"2024-12-06T12:37:46.100Z","access-policy-id":"devbox-policy","ctx":"f7102a280e6c607b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488666102,"ts":"2024-12-06T12:37:46.102Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"f7102a280e6c607b"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488671692,"ts":"2024-12-06T12:37:51.692Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"ac26dadcd2ee741b"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488676101,"ts":"2024-12-06T12:37:56.101Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f5f666db3f173157","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488676101,"ts":"2024-12-06T12:37:56.101Z","access-policy-id":"devbox-policy","ctx":"f5f666db3f173157"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488676102,"ts":"2024-12-06T12:37:56.102Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"f5f666db3f173157"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488686100,"ts":"2024-12-06T12:38:06.100Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c3533e3c48466504","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488686102,"ts":"2024-12-06T12:38:06.102Z","access-policy-id":"devbox-policy","ctx":"c3533e3c48466504"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488686102,"ts":"2024-12-06T12:38:06.102Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"c3533e3c48466504"} +{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733488694076,"ts":"2024-12-06T12:38:14.076Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":35,"ctx":"a7babe17b25daf25"} +{"ev":"w/req","w_url":"/Patient","w":"w8","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488694090,"ts":"2024-12-06T12:38:14.090Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"a7babe17b25daf25","wait_time":4,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488694091,"ts":"2024-12-06T12:38:14.091Z","access-policy-id":"devbox-policy","ctx":"a7babe17b25daf25"} +{"ev":"db/q","w":"w8","tn":"devbox","op":"conditional-update","timeUnix":1733488694108,"ts":"2024-12-06T12:38:14.108Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":9,"ctx":"a7babe17b25daf25"} +{"ev":"db/q","w":"w8","tn":"devbox","op":"conditional-update","timeUnix":1733488694110,"ts":"2024-12-06T12:38:14.110Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"a7babe17b25daf25"} +{"ev":"resource/update-dup","w":"w8","tn":"devbox","op":"conditional-update","timeUnix":1733488694116,"ts":"2024-12-06T12:38:14.116Z","rtp":"Patient","ctx":"a7babe17b25daf25","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w8","execution_time":29,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488694119,"ts":"2024-12-06T12:38:14.119Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":82,"w_st":200,"ctx":"a7babe17b25daf25","w_qs":"given=John&family=Doe"} +{"ev":"w/req","w_url":"/Patient","w":"w4","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488694125,"ts":"2024-12-06T12:38:14.125Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"d77b983983cf5c1a","wait_time":0,"w_qs":"given=Alice&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488694125,"ts":"2024-12-06T12:38:14.125Z","access-policy-id":"devbox-policy","ctx":"d77b983983cf5c1a"} +{"ev":"db/q","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488694130,"ts":"2024-12-06T12:38:14.130Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"d77b983983cf5c1a"} +{"ev":"db/q","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488694130,"ts":"2024-12-06T12:38:14.130Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"d77b983983cf5c1a"} +{"ev":"resource/update-dup","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488694132,"ts":"2024-12-06T12:38:14.132Z","rtp":"Patient","ctx":"d77b983983cf5c1a","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w4","execution_time":8,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488694133,"ts":"2024-12-06T12:38:14.133Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":9,"w_st":200,"ctx":"d77b983983cf5c1a","w_qs":"given=Alice&family=Doe"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733488696118,"ts":"2024-12-06T12:38:16.118Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"cc68e7a69835f0b9"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488696119,"ts":"2024-12-06T12:38:16.119Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"cc68e7a69835f0b9","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488696120,"ts":"2024-12-06T12:38:16.120Z","access-policy-id":"devbox-policy","ctx":"cc68e7a69835f0b9"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488696120,"ts":"2024-12-06T12:38:16.120Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"cc68e7a69835f0b9"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488701788,"ts":"2024-12-06T12:38:21.788Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"8e3a9fb0ba485ca9"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488706085,"ts":"2024-12-06T12:38:26.085Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":5,"w_st":200,"ctx":"70377d1af064fb64"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488706099,"ts":"2024-12-06T12:38:26.099Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"8bb8d0c302642dc1","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488706100,"ts":"2024-12-06T12:38:26.100Z","access-policy-id":"devbox-policy","ctx":"8bb8d0c302642dc1"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488706101,"ts":"2024-12-06T12:38:26.101Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"8bb8d0c302642dc1"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488716151,"ts":"2024-12-06T12:38:36.149Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7333f2f1dfcf7f77","wait_time":7} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488716190,"ts":"2024-12-06T12:38:36.190Z","access-policy-id":"devbox-policy","ctx":"7333f2f1dfcf7f77"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":38,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488716196,"ts":"2024-12-06T12:38:36.196Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":79,"w_st":200,"ctx":"7333f2f1dfcf7f77"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488726104,"ts":"2024-12-06T12:38:46.104Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"54d5bfa629fde770","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488726104,"ts":"2024-12-06T12:38:46.104Z","access-policy-id":"devbox-policy","ctx":"54d5bfa629fde770"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488726105,"ts":"2024-12-06T12:38:46.105Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"54d5bfa629fde770"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488731874,"ts":"2024-12-06T12:38:51.874Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"8cc90995a8caf840"} +{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733488736135,"ts":"2024-12-06T12:38:56.134Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"862990ed84a7c979"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488736142,"ts":"2024-12-06T12:38:56.142Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"862990ed84a7c979","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488736144,"ts":"2024-12-06T12:38:56.144Z","access-policy-id":"devbox-policy","ctx":"862990ed84a7c979"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488736145,"ts":"2024-12-06T12:38:56.145Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":20,"w_st":200,"ctx":"862990ed84a7c979"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488746109,"ts":"2024-12-06T12:39:06.109Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"743ee100feb75920","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488746110,"ts":"2024-12-06T12:39:06.110Z","access-policy-id":"devbox-policy","ctx":"743ee100feb75920"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488746111,"ts":"2024-12-06T12:39:06.111Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"743ee100feb75920"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488756115,"ts":"2024-12-06T12:39:16.115Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"22bcabc3ecb1f487","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488756116,"ts":"2024-12-06T12:39:16.116Z","access-policy-id":"devbox-policy","ctx":"22bcabc3ecb1f487"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488756117,"ts":"2024-12-06T12:39:16.117Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"22bcabc3ecb1f487"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":16,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488761951,"ts":"2024-12-06T12:39:21.951Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":16,"w_st":200,"ctx":"e5ff6841c361ddcb"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733488765438,"ts":"2024-12-06T12:39:25.438Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":2,"ctx":"2352b60afbe4beda"} +{"ev":"w/req","w_url":"/Patient","w":"w2","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488765441,"ts":"2024-12-06T12:39:25.441Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"2352b60afbe4beda","wait_time":1,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488765441,"ts":"2024-12-06T12:39:25.441Z","access-policy-id":"devbox-policy","ctx":"2352b60afbe4beda"} +{"ev":"db/q","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488765455,"ts":"2024-12-06T12:39:25.455Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":5,"ctx":"2352b60afbe4beda"} +{"ev":"db/q","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488765457,"ts":"2024-12-06T12:39:25.457Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":0,"ctx":"2352b60afbe4beda"} +{"ev":"resource/update-dup","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488765463,"ts":"2024-12-06T12:39:25.463Z","rtp":"Patient","ctx":"2352b60afbe4beda","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w2","execution_time":25,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488765466,"ts":"2024-12-06T12:39:25.466Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":31,"w_st":200,"ctx":"2352b60afbe4beda","w_qs":"given=John&family=Doe"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488766085,"ts":"2024-12-06T12:39:26.085Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":6,"w_st":200,"ctx":"3c27d292b27d5d20"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488766119,"ts":"2024-12-06T12:39:26.119Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"192da87cfdba6610","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488766120,"ts":"2024-12-06T12:39:26.120Z","access-policy-id":"devbox-policy","ctx":"192da87cfdba6610"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488766121,"ts":"2024-12-06T12:39:26.121Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"192da87cfdba6610"} +{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733488776148,"ts":"2024-12-06T12:39:36.148Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":10,"ctx":"3a41a32813a4fbae"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488776247,"ts":"2024-12-06T12:39:36.247Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3a41a32813a4fbae","wait_time":8} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488776249,"ts":"2024-12-06T12:39:36.249Z","access-policy-id":"devbox-policy","ctx":"3a41a32813a4fbae"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488776250,"ts":"2024-12-06T12:39:36.250Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":121,"w_st":200,"ctx":"3a41a32813a4fbae"} +{"ev":"w/req","w_url":"/Patient","w":"w4","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488777204,"ts":"2024-12-06T12:39:37.203Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"2b524dbd53340b0e","wait_time":1,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488777204,"ts":"2024-12-06T12:39:37.204Z","access-policy-id":"devbox-policy","ctx":"2b524dbd53340b0e"} +{"ev":"db/q","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488777211,"ts":"2024-12-06T12:39:37.211Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"2b524dbd53340b0e"} +{"ev":"db/q","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488777212,"ts":"2024-12-06T12:39:37.212Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":0,"ctx":"2b524dbd53340b0e"} +{"ev":"resource/update-dup","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488777216,"ts":"2024-12-06T12:39:37.216Z","rtp":"Patient","ctx":"2b524dbd53340b0e","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w4","execution_time":14,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488777218,"ts":"2024-12-06T12:39:37.218Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":18,"w_st":200,"ctx":"2b524dbd53340b0e","w_qs":"given=John&family=Doe"} +{"ev":"w/req","w_url":"/Patient","w":"w3","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488777223,"ts":"2024-12-06T12:39:37.223Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"ca555ad0b6c76cbb","wait_time":0,"w_qs":"given=Alice&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488777224,"ts":"2024-12-06T12:39:37.223Z","access-policy-id":"devbox-policy","ctx":"ca555ad0b6c76cbb"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733488777228,"ts":"2024-12-06T12:39:37.228Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"ca555ad0b6c76cbb"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733488777229,"ts":"2024-12-06T12:39:37.229Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"ca555ad0b6c76cbb"} +{"ev":"resource/update-dup","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733488777240,"ts":"2024-12-06T12:39:37.240Z","rtp":"Patient","ctx":"ca555ad0b6c76cbb","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w3","execution_time":18,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488777241,"ts":"2024-12-06T12:39:37.241Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":19,"w_st":200,"ctx":"ca555ad0b6c76cbb","w_qs":"given=Alice&family=Doe"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488786121,"ts":"2024-12-06T12:39:46.121Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6ad3f983dbbd3068","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488786122,"ts":"2024-12-06T12:39:46.122Z","access-policy-id":"devbox-policy","ctx":"6ad3f983dbbd3068"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488786122,"ts":"2024-12-06T12:39:46.122Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"6ad3f983dbbd3068"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488792022,"ts":"2024-12-06T12:39:52.022Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"5b9ccc4437115b3e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488796127,"ts":"2024-12-06T12:39:56.127Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1fb07ca4d578179b","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488796128,"ts":"2024-12-06T12:39:56.128Z","access-policy-id":"devbox-policy","ctx":"1fb07ca4d578179b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488796129,"ts":"2024-12-06T12:39:56.129Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"1fb07ca4d578179b"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488806143,"ts":"2024-12-06T12:40:06.143Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"31ee03971ffc3d1d","wait_time":4} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488806144,"ts":"2024-12-06T12:40:06.144Z","access-policy-id":"devbox-policy","ctx":"31ee03971ffc3d1d"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488806145,"ts":"2024-12-06T12:40:06.145Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":15,"w_st":200,"ctx":"31ee03971ffc3d1d"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733488816141,"ts":"2024-12-06T12:40:16.141Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"c0333fcb4d835490"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488816145,"ts":"2024-12-06T12:40:16.145Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c0333fcb4d835490","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488816147,"ts":"2024-12-06T12:40:16.147Z","access-policy-id":"devbox-policy","ctx":"c0333fcb4d835490"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488816148,"ts":"2024-12-06T12:40:16.148Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":14,"w_st":200,"ctx":"c0333fcb4d835490"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488822085,"ts":"2024-12-06T12:40:22.085Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"621d88fcc5e38840"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488826084,"ts":"2024-12-06T12:40:26.084Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":6,"w_st":200,"ctx":"408f970d40c024ac"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488826137,"ts":"2024-12-06T12:40:26.137Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b0047b25ea6e32cc","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488826137,"ts":"2024-12-06T12:40:26.137Z","access-policy-id":"devbox-policy","ctx":"b0047b25ea6e32cc"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488826137,"ts":"2024-12-06T12:40:26.137Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":2,"w_st":200,"ctx":"b0047b25ea6e32cc"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488836142,"ts":"2024-12-06T12:40:36.142Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"fdc80bd70d4c1d81","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488836143,"ts":"2024-12-06T12:40:36.143Z","access-policy-id":"devbox-policy","ctx":"fdc80bd70d4c1d81"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488836144,"ts":"2024-12-06T12:40:36.144Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"fdc80bd70d4c1d81"} +{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733488846152,"ts":"2024-12-06T12:40:46.152Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"82d4542e1d009b7c"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488846155,"ts":"2024-12-06T12:40:46.155Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"82d4542e1d009b7c","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488846156,"ts":"2024-12-06T12:40:46.156Z","access-policy-id":"devbox-policy","ctx":"82d4542e1d009b7c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488846156,"ts":"2024-12-06T12:40:46.156Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"82d4542e1d009b7c"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733488847217,"ts":"2024-12-06T12:40:47.217Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":1,"ctx":"5a32d2ffaac5f2f4"} +{"ev":"w/req","w_url":"/Patient","w":"w2","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488847220,"ts":"2024-12-06T12:40:47.220Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"5a32d2ffaac5f2f4","wait_time":1,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488847221,"ts":"2024-12-06T12:40:47.221Z","access-policy-id":"devbox-policy","ctx":"5a32d2ffaac5f2f4"} +{"ev":"db/q","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488847233,"ts":"2024-12-06T12:40:47.233Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":5,"ctx":"5a32d2ffaac5f2f4"} +{"ev":"db/q","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488847235,"ts":"2024-12-06T12:40:47.235Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"5a32d2ffaac5f2f4"} +{"ev":"resource/update-dup","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488847241,"ts":"2024-12-06T12:40:47.241Z","rtp":"Patient","ctx":"5a32d2ffaac5f2f4","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w2","execution_time":24,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488847244,"ts":"2024-12-06T12:40:47.244Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":30,"w_st":200,"ctx":"5a32d2ffaac5f2f4","w_qs":"given=John&family=Doe"} +{"ev":"w/req","w_url":"/Patient","w":"w5","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488847249,"ts":"2024-12-06T12:40:47.249Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"8b63c741f97fe61a","wait_time":0,"w_qs":"given=Alice&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488847250,"ts":"2024-12-06T12:40:47.250Z","access-policy-id":"devbox-policy","ctx":"8b63c741f97fe61a"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488847253,"ts":"2024-12-06T12:40:47.253Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":1,"ctx":"8b63c741f97fe61a"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488847254,"ts":"2024-12-06T12:40:47.254Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"8b63c741f97fe61a"} +{"ev":"resource/update-dup","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488847256,"ts":"2024-12-06T12:40:47.256Z","rtp":"Patient","ctx":"8b63c741f97fe61a","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w5","execution_time":8,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488847257,"ts":"2024-12-06T12:40:47.257Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":8,"w_st":200,"ctx":"8b63c741f97fe61a","w_qs":"given=Alice&family=Doe"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488852187,"ts":"2024-12-06T12:40:52.187Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"8ab2e62a3d015141"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488856159,"ts":"2024-12-06T12:40:56.159Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"2af9755e04528a14","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488856160,"ts":"2024-12-06T12:40:56.160Z","access-policy-id":"devbox-policy","ctx":"2af9755e04528a14"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488856161,"ts":"2024-12-06T12:40:56.161Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"2af9755e04528a14"} +{"ev":"w/req","w_url":"/Patient","w":"w4","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488861755,"ts":"2024-12-06T12:41:01.754Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"72b86dec0299ff43","wait_time":4,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488861757,"ts":"2024-12-06T12:41:01.757Z","access-policy-id":"devbox-policy","ctx":"72b86dec0299ff43"} +{"ev":"db/q","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488861774,"ts":"2024-12-06T12:41:01.774Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":6,"ctx":"72b86dec0299ff43"} +{"ev":"db/q","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488861775,"ts":"2024-12-06T12:41:01.775Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"72b86dec0299ff43"} +{"ev":"resource/update-dup","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488861778,"ts":"2024-12-06T12:41:01.778Z","rtp":"Patient","ctx":"72b86dec0299ff43","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w4","execution_time":25,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488861780,"ts":"2024-12-06T12:41:01.780Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":36,"w_st":200,"ctx":"72b86dec0299ff43","w_qs":"given=John&family=Doe"} +{"ev":"w/req","w_url":"/Patient","w":"w3","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488861786,"ts":"2024-12-06T12:41:01.786Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"6152bb50e7ab12c3","wait_time":0,"w_qs":"given=Alice&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488861786,"ts":"2024-12-06T12:41:01.786Z","access-policy-id":"devbox-policy","ctx":"6152bb50e7ab12c3"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733488861790,"ts":"2024-12-06T12:41:01.790Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":1,"ctx":"6152bb50e7ab12c3"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733488861791,"ts":"2024-12-06T12:41:01.791Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"6152bb50e7ab12c3"} +{"ev":"resource/update-dup","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733488861793,"ts":"2024-12-06T12:41:01.793Z","rtp":"Patient","ctx":"6152bb50e7ab12c3","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w3","execution_time":8,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488861794,"ts":"2024-12-06T12:41:01.794Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":9,"w_st":200,"ctx":"6152bb50e7ab12c3","w_qs":"given=Alice&family=Doe"} +{"ev":"w/req","w_url":"/Patient","w":"w6","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488861799,"ts":"2024-12-06T12:41:01.799Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"6434fb46208cd615","wait_time":0,"w_qs":"given=Charly&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488861799,"ts":"2024-12-06T12:41:01.799Z","access-policy-id":"devbox-policy","ctx":"6434fb46208cd615"} +{"ev":"db/q","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733488861803,"ts":"2024-12-06T12:41:01.803Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Charly%","[[\"name\",\"family\"]]","% Doe%","100"],"d":1,"ctx":"6434fb46208cd615"} +{"ev":"resource/create","txid":"23","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733488861806,"ts":"2024-12-06T12:41:01.806Z","rtp":"Patient","ctx":"6434fb46208cd615","rid":"192adcc8-2833-4e27-81ad-fcd7575c1785"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w6","execution_time":9,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488861808,"ts":"2024-12-06T12:41:01.808Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":10,"w_st":201,"ctx":"6434fb46208cd615","w_qs":"given=Charly&family=Doe"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488866179,"ts":"2024-12-06T12:41:06.179Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7d51abd1c17e3c9c","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488866180,"ts":"2024-12-06T12:41:06.180Z","access-policy-id":"devbox-policy","ctx":"7d51abd1c17e3c9c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488866180,"ts":"2024-12-06T12:41:06.180Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"7d51abd1c17e3c9c"} +{"ev":"w/req","w_url":"/Patient","w":"w2","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488874281,"ts":"2024-12-06T12:41:14.281Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"630c34f03326f39e","wait_time":1,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488874282,"ts":"2024-12-06T12:41:14.282Z","access-policy-id":"devbox-policy","ctx":"630c34f03326f39e"} +{"ev":"db/q","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488874287,"ts":"2024-12-06T12:41:14.287Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"630c34f03326f39e"} +{"ev":"db/q","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488874288,"ts":"2024-12-06T12:41:14.288Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":0,"ctx":"630c34f03326f39e"} +{"ev":"resource/update-dup","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488874292,"ts":"2024-12-06T12:41:14.292Z","rtp":"Patient","ctx":"630c34f03326f39e","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w2","execution_time":12,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488874293,"ts":"2024-12-06T12:41:14.293Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":16,"w_st":200,"ctx":"630c34f03326f39e","w_qs":"given=John&family=Doe"} +{"ev":"w/req","w_url":"/Patient","w":"w5","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488874298,"ts":"2024-12-06T12:41:14.298Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"adc0319321d40ee4","wait_time":0,"w_qs":"given=Alice&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488874298,"ts":"2024-12-06T12:41:14.298Z","access-policy-id":"devbox-policy","ctx":"adc0319321d40ee4"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488874301,"ts":"2024-12-06T12:41:14.301Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":1,"ctx":"adc0319321d40ee4"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488874302,"ts":"2024-12-06T12:41:14.302Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"adc0319321d40ee4"} +{"ev":"resource/update-dup","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488874305,"ts":"2024-12-06T12:41:14.305Z","rtp":"Patient","ctx":"adc0319321d40ee4","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w5","execution_time":8,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488874306,"ts":"2024-12-06T12:41:14.306Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":9,"w_st":200,"ctx":"adc0319321d40ee4","w_qs":"given=Alice&family=Doe"} +{"ev":"w/req","w_url":"/Patient","w":"w1","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488874310,"ts":"2024-12-06T12:41:14.310Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"9017249f51762c87","wait_time":0,"w_qs":"given=Charly&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488874310,"ts":"2024-12-06T12:41:14.310Z","access-policy-id":"devbox-policy","ctx":"9017249f51762c87"} +{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733488874314,"ts":"2024-12-06T12:41:14.314Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Charly%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"9017249f51762c87"} +{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733488874314,"ts":"2024-12-06T12:41:14.314Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["192adcc8-2833-4e27-81ad-fcd7575c1785"],"d":0,"ctx":"9017249f51762c87"} +{"ev":"resource/update","txid":"26","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733488874317,"ts":"2024-12-06T12:41:14.317Z","rtp":"Patient","ctx":"9017249f51762c87","rid":"192adcc8-2833-4e27-81ad-fcd7575c1785"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w1","execution_time":8,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488874318,"ts":"2024-12-06T12:41:14.318Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":8,"w_st":200,"ctx":"9017249f51762c87","w_qs":"given=Charly&family=Doe"} +{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733488876171,"ts":"2024-12-06T12:41:16.171Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"0fd8cfdb0d1b3c24"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488876174,"ts":"2024-12-06T12:41:16.174Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0fd8cfdb0d1b3c24","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488876174,"ts":"2024-12-06T12:41:16.174Z","access-policy-id":"devbox-policy","ctx":"0fd8cfdb0d1b3c24"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488876175,"ts":"2024-12-06T12:41:16.175Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"0fd8cfdb0d1b3c24"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488882263,"ts":"2024-12-06T12:41:22.263Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"9e6b771eea973f77"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488886130,"ts":"2024-12-06T12:41:26.130Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":4,"w_st":200,"ctx":"9efb02fc24a190fd"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488886164,"ts":"2024-12-06T12:41:26.164Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"76c46ccb0aeef4f0","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488886165,"ts":"2024-12-06T12:41:26.165Z","access-policy-id":"devbox-policy","ctx":"76c46ccb0aeef4f0"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488886165,"ts":"2024-12-06T12:41:26.165Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"76c46ccb0aeef4f0"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488897091,"ts":"2024-12-06T12:41:37.091Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c75e94b3f4a162ee","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488897093,"ts":"2024-12-06T12:41:37.093Z","access-policy-id":"devbox-policy","ctx":"c75e94b3f4a162ee"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488897094,"ts":"2024-12-06T12:41:37.094Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":13,"w_st":200,"ctx":"c75e94b3f4a162ee"} +{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733488907126,"ts":"2024-12-06T12:41:47.126Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":5,"ctx":"8537328216638bb5"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488907130,"ts":"2024-12-06T12:41:47.130Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"8537328216638bb5","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488907131,"ts":"2024-12-06T12:41:47.131Z","access-policy-id":"devbox-policy","ctx":"8537328216638bb5"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488907132,"ts":"2024-12-06T12:41:47.132Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":14,"w_st":200,"ctx":"8537328216638bb5"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488912372,"ts":"2024-12-06T12:41:52.372Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"b101fec3ee819918"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488917171,"ts":"2024-12-06T12:41:57.171Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0cdfcb8a17e19228","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488917172,"ts":"2024-12-06T12:41:57.172Z","access-policy-id":"devbox-policy","ctx":"0cdfcb8a17e19228"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488917173,"ts":"2024-12-06T12:41:57.173Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"0cdfcb8a17e19228"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488927230,"ts":"2024-12-06T12:42:07.230Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"75c75e47baabad20","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488927231,"ts":"2024-12-06T12:42:07.231Z","access-policy-id":"devbox-policy","ctx":"75c75e47baabad20"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488927232,"ts":"2024-12-06T12:42:07.232Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"75c75e47baabad20"} +{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733488937297,"ts":"2024-12-06T12:42:17.297Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":7,"ctx":"bd796a23dba41188"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488937304,"ts":"2024-12-06T12:42:17.304Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"bd796a23dba41188","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488937304,"ts":"2024-12-06T12:42:17.304Z","access-policy-id":"devbox-policy","ctx":"bd796a23dba41188"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488937304,"ts":"2024-12-06T12:42:17.304Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"bd796a23dba41188"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488942455,"ts":"2024-12-06T12:42:22.455Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"97b3fb9e53a802c9"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488946349,"ts":"2024-12-06T12:42:26.349Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":6,"w_st":200,"ctx":"765c1f893d889f28"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488947353,"ts":"2024-12-06T12:42:27.353Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"de122a72112f73d9","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488947356,"ts":"2024-12-06T12:42:27.356Z","access-policy-id":"devbox-policy","ctx":"de122a72112f73d9"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488947357,"ts":"2024-12-06T12:42:27.357Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"de122a72112f73d9"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488957427,"ts":"2024-12-06T12:42:37.427Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c7e4769fc94c71fa","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488957428,"ts":"2024-12-06T12:42:37.428Z","access-policy-id":"devbox-policy","ctx":"c7e4769fc94c71fa"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488957429,"ts":"2024-12-06T12:42:37.429Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"c7e4769fc94c71fa"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733488967468,"ts":"2024-12-06T12:42:47.468Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"32a4cbb0d22e436c"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488967472,"ts":"2024-12-06T12:42:47.472Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"32a4cbb0d22e436c","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488967472,"ts":"2024-12-06T12:42:47.472Z","access-policy-id":"devbox-policy","ctx":"32a4cbb0d22e436c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488967473,"ts":"2024-12-06T12:42:47.473Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"32a4cbb0d22e436c"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488972527,"ts":"2024-12-06T12:42:52.527Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"2bef1b9fb1ceb75f"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488977608,"ts":"2024-12-06T12:42:57.608Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"fbbdb4b98b81508e","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488977609,"ts":"2024-12-06T12:42:57.609Z","access-policy-id":"devbox-policy","ctx":"fbbdb4b98b81508e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488977610,"ts":"2024-12-06T12:42:57.610Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"fbbdb4b98b81508e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488987762,"ts":"2024-12-06T12:43:07.762Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ac1461e615103eea","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488987763,"ts":"2024-12-06T12:43:07.763Z","access-policy-id":"devbox-policy","ctx":"ac1461e615103eea"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488987764,"ts":"2024-12-06T12:43:07.764Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"ac1461e615103eea"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733488997800,"ts":"2024-12-06T12:43:17.800Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"61b2f4859989fddf"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488997802,"ts":"2024-12-06T12:43:17.802Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"61b2f4859989fddf","wait_time":4} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488997803,"ts":"2024-12-06T12:43:17.803Z","access-policy-id":"devbox-policy","ctx":"61b2f4859989fddf"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488997803,"ts":"2024-12-06T12:43:17.803Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":13,"w_st":200,"ctx":"61b2f4859989fddf"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489002593,"ts":"2024-12-06T12:43:22.593Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":5,"w_st":200,"ctx":"a849ebc49404d673"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489006866,"ts":"2024-12-06T12:43:26.866Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":4,"w_st":200,"ctx":"b192af389c3200b3"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489007863,"ts":"2024-12-06T12:43:27.863Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"07c0d62644639e53","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489007864,"ts":"2024-12-06T12:43:27.864Z","access-policy-id":"devbox-policy","ctx":"07c0d62644639e53"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489007865,"ts":"2024-12-06T12:43:27.865Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"07c0d62644639e53"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489017936,"ts":"2024-12-06T12:43:37.935Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b4040a6c6865629c","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489017938,"ts":"2024-12-06T12:43:37.938Z","access-policy-id":"devbox-policy","ctx":"b4040a6c6865629c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":5,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489017941,"ts":"2024-12-06T12:43:37.941Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"b4040a6c6865629c"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733489027996,"ts":"2024-12-06T12:43:47.996Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"fbb28022fd321965"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489028022,"ts":"2024-12-06T12:43:48.022Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"fbb28022fd321965","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489028022,"ts":"2024-12-06T12:43:48.022Z","access-policy-id":"devbox-policy","ctx":"fbb28022fd321965"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489028022,"ts":"2024-12-06T12:43:48.022Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":29,"w_st":200,"ctx":"fbb28022fd321965"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489032674,"ts":"2024-12-06T12:43:52.674Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"563fff489f3776e1"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489038037,"ts":"2024-12-06T12:43:58.037Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d586cc53bfa483f2","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489038038,"ts":"2024-12-06T12:43:58.038Z","access-policy-id":"devbox-policy","ctx":"d586cc53bfa483f2"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489038039,"ts":"2024-12-06T12:43:58.039Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":13,"w_st":200,"ctx":"d586cc53bfa483f2"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733489045321,"ts":"2024-12-06T12:44:05.321Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":2,"ctx":"40520b221c625b3d"} +{"ev":"w/req","w_url":"/Patient","w":"w3","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489045324,"ts":"2024-12-06T12:44:05.324Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"40520b221c625b3d","wait_time":1,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489045325,"ts":"2024-12-06T12:44:05.325Z","access-policy-id":"devbox-policy","ctx":"40520b221c625b3d"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489045341,"ts":"2024-12-06T12:44:05.341Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":3,"ctx":"40520b221c625b3d"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489045343,"ts":"2024-12-06T12:44:05.343Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"40520b221c625b3d"} +{"ev":"resource/update-dup","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489045348,"ts":"2024-12-06T12:44:05.348Z","rtp":"Patient","ctx":"40520b221c625b3d","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w3","execution_time":26,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489045350,"ts":"2024-12-06T12:44:05.350Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":33,"w_st":200,"ctx":"40520b221c625b3d","w_qs":"given=John&family=Doe"} +{"ev":"w/req","w_url":"/Patient","w":"w6","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489045356,"ts":"2024-12-06T12:44:05.356Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"54a2b7629546c24b","wait_time":0,"w_qs":"given=Alice&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489045356,"ts":"2024-12-06T12:44:05.356Z","access-policy-id":"devbox-policy","ctx":"54a2b7629546c24b"} +{"ev":"db/q","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733489045360,"ts":"2024-12-06T12:44:05.360Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"54a2b7629546c24b"} +{"ev":"db/q","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733489045360,"ts":"2024-12-06T12:44:05.360Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"54a2b7629546c24b"} +{"ev":"resource/update-dup","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733489045362,"ts":"2024-12-06T12:44:05.362Z","rtp":"Patient","ctx":"54a2b7629546c24b","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w6","execution_time":7,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489045363,"ts":"2024-12-06T12:44:05.363Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":8,"w_st":200,"ctx":"54a2b7629546c24b","w_qs":"given=Alice&family=Doe"} +{"ev":"w/req","w_url":"/Patient","w":"w7","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489045367,"ts":"2024-12-06T12:44:05.367Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"9037e25f9f5e99c6","wait_time":0,"w_qs":"given=Charly&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489045367,"ts":"2024-12-06T12:44:05.367Z","access-policy-id":"devbox-policy","ctx":"9037e25f9f5e99c6"} +{"ev":"db/q","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489045371,"ts":"2024-12-06T12:44:05.371Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Charly%","[[\"name\",\"family\"]]","% Doe%","100"],"d":1,"ctx":"9037e25f9f5e99c6"} +{"ev":"db/q","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489045372,"ts":"2024-12-06T12:44:05.372Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["192adcc8-2833-4e27-81ad-fcd7575c1785"],"d":0,"ctx":"9037e25f9f5e99c6"} +{"ev":"resource/update-dup","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489045374,"ts":"2024-12-06T12:44:05.374Z","rtp":"Patient","ctx":"9037e25f9f5e99c6","rid":"192adcc8-2833-4e27-81ad-fcd7575c1785"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w7","execution_time":8,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489045375,"ts":"2024-12-06T12:44:05.375Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":8,"w_st":200,"ctx":"9037e25f9f5e99c6","w_qs":"given=Charly&family=Doe"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489048053,"ts":"2024-12-06T12:44:08.053Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"15c0e40a030d7e05","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489048055,"ts":"2024-12-06T12:44:08.055Z","access-policy-id":"devbox-policy","ctx":"15c0e40a030d7e05"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489048056,"ts":"2024-12-06T12:44:08.056Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"15c0e40a030d7e05"} +{"ev":"w/req","w_url":"/ui/console","w":"w5","w_m":"get","tn":"devbox","op":"console","timeUnix":1733489056220,"ts":"2024-12-06T12:44:16.220Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"5ea33dd5f00c4021","wait_time":1} +{"w_referer":"http://localhost:8888/auth/login","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/ui/console","w":"w5","execution_time":10,"w_m":"get","tn":"devbox","op":"console","timeUnix":1733489056230,"ts":"2024-12-06T12:44:16.230Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /ui/console","w_uid":"admin","d":17,"w_st":200,"ctx":"5ea33dd5f00c4021"} +{"ev":"w/req","w_url":"/rpc","w":"w7","w_m":"post","tn":"devbox","op":"rpc","timeUnix":1733489056764,"ts":"2024-12-06T12:44:16.764Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"dfb9f385b98020ae","wait_time":2,"w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} +{"ev":"w/req","w_url":"/fhir/Patient","w":"w6","w_m":"get","tn":"devbox","op":"search","timeUnix":1733489056765,"ts":"2024-12-06T12:44:16.765Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c3016c9596266561","wait_time":1,"w_qs":"_count=30&_sort=_id&_ilike="} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"rpc","tn":"devbox","op":"rpc","timeUnix":1733489056765,"ts":"2024-12-06T12:44:16.765Z","access-policy-id":"devbox-policy","ctx":"dfb9f385b98020ae"} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"FhirSearch","tn":"devbox","op":"search","timeUnix":1733489056766,"ts":"2024-12-06T12:44:16.766Z","access-policy-id":"devbox-policy","ctx":"c3016c9596266561"} +{"ev":"w/req","w_url":"/fhir/metadata","w":"w4","w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489056766,"ts":"2024-12-06T12:44:16.766Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"86da8a947061f54a","wait_time":6,"w_qs":"include-custom-resources=true"} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"fhir-capability","tn":"devbox","op":"capability","timeUnix":1733489056767,"ts":"2024-12-06T12:44:16.767Z","access-policy-id":"devbox-policy","ctx":"86da8a947061f54a"} +{"ev":"db/q","w":"w4","tn":"devbox","op":"capability","timeUnix":1733489056774,"ts":"2024-12-06T12:44:16.774Z","sql":"SELECT * FROM \"aidboxconfig\" WHERE \"id\" = ?","db_prm":["box"],"d":6,"ctx":"86da8a947061f54a"} +{"ev":"db/q","w":"w6","tn":"devbox","op":"search","timeUnix":1733489056776,"ts":"2024-12-06T12:44:16.775Z","sql":"SELECT \"patient\".* FROM \"patient\" ORDER BY \"patient\".id ASC LIMIT ? OFFSET ? ","db_prm":["30","0"],"d":5,"ctx":"c3016c9596266561"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/metadata","w":"w4","execution_time":11,"w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489056777,"ts":"2024-12-06T12:44:16.777Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /fhir/metadata","w_uid":"admin","d":21,"w_st":200,"ctx":"86da8a947061f54a","w_qs":"include-custom-resources=true"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Patient","w":"w6","execution_time":12,"w_m":"get","tn":"devbox","op":"search","timeUnix":1733489056777,"ts":"2024-12-06T12:44:16.777Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Patient","w_r":"GET /fhir/Patient","w_uid":"admin","d":21,"w_st":200,"ctx":"c3016c9596266561","w_qs":"_count=30&_sort=_id&_ilike="} +{"rpc_p":{"resource-type":"Patient"},"ev":"rpc/call","rpc_m":"aidbox.introspector/get-schemas-by-resource-type","w":"w7","tn":"devbox","rpc_u":{"email":null},"op":"rpc:get-schemas-by-resource-type","timeUnix":1733489056892,"ts":"2024-12-06T12:44:16.892Z","d":125,"ctx":"dfb9f385b98020ae","lvl":"info"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/rpc","w":"w7","execution_time":128,"w_m":"post","tn":"devbox","op":"rpc:get-schemas-by-resource-type","timeUnix":1733489056892,"ts":"2024-12-06T12:44:16.892Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /rpc","w_uid":"admin","d":136,"w_st":200,"ctx":"dfb9f385b98020ae","w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} +{"ev":"w/req","w_url":"/fhir/Patient/$validate","w":"w5","w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733489056986,"ts":"2024-12-06T12:44:16.986Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"95e936914b66ad4b","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"FhirValidateCreate","tn":"devbox","op":"$validate","timeUnix":1733489056987,"ts":"2024-12-06T12:44:16.987Z","access-policy-id":"devbox-policy","ctx":"95e936914b66ad4b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Patient/$validate","w":"w5","execution_time":3,"w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733489056989,"ts":"2024-12-06T12:44:16.989Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Patient","w_r":"POST /fhir/Patient/$validate","w_uid":"admin","d":4,"w_st":200,"ctx":"95e936914b66ad4b"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489062790,"ts":"2024-12-06T12:44:22.790Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"d71c063fbc1715f2"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733489066755,"ts":"2024-12-06T12:44:26.754Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"0bba3ba6494f04b6"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489066758,"ts":"2024-12-06T12:44:26.758Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0bba3ba6494f04b6","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489066759,"ts":"2024-12-06T12:44:26.759Z","access-policy-id":"devbox-policy","ctx":"0bba3ba6494f04b6"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489066760,"ts":"2024-12-06T12:44:26.760Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"0bba3ba6494f04b6"} +{"ev":"w/req","w_url":"/fhir/Observation","w":"w2","w_m":"get","tn":"devbox","op":"search","timeUnix":1733489068679,"ts":"2024-12-06T12:44:28.679Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"235f9cb13bc7dc5c","wait_time":1,"w_qs":"_count=30&_sort=_id&_ilike="} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"FhirSearch","tn":"devbox","op":"search","timeUnix":1733489068680,"ts":"2024-12-06T12:44:28.680Z","access-policy-id":"devbox-policy","ctx":"235f9cb13bc7dc5c"} +{"ev":"w/req","w_url":"/rpc","w":"w4","w_m":"post","tn":"devbox","op":"rpc","timeUnix":1733489068681,"ts":"2024-12-06T12:44:28.681Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"23b3f67bdba7262f","wait_time":4,"w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"rpc","tn":"devbox","op":"rpc","timeUnix":1733489068681,"ts":"2024-12-06T12:44:28.681Z","access-policy-id":"devbox-policy","ctx":"23b3f67bdba7262f"} +{"ev":"db/q","w":"w2","tn":"devbox","op":"search","timeUnix":1733489068688,"ts":"2024-12-06T12:44:28.688Z","sql":"SELECT \"observation\".* FROM \"observation\" ORDER BY \"observation\".id ASC LIMIT ? OFFSET ? ","db_prm":["30","0"],"d":3,"ctx":"235f9cb13bc7dc5c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Observation","w":"w2","execution_time":10,"w_m":"get","tn":"devbox","op":"search","timeUnix":1733489068689,"ts":"2024-12-06T12:44:28.689Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Observation","w_r":"GET /fhir/Observation","w_uid":"admin","d":16,"w_st":200,"ctx":"235f9cb13bc7dc5c","w_qs":"_count=30&_sort=_id&_ilike="} +{"ev":"w/req","w_url":"/fhir/metadata","w":"w6","w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489068691,"ts":"2024-12-06T12:44:28.691Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"705fdd742e612415","wait_time":0,"w_qs":"include-custom-resources=true"} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"fhir-capability","tn":"devbox","op":"capability","timeUnix":1733489068691,"ts":"2024-12-06T12:44:28.691Z","access-policy-id":"devbox-policy","ctx":"705fdd742e612415"} +{"ev":"db/q","w":"w6","tn":"devbox","op":"capability","timeUnix":1733489068693,"ts":"2024-12-06T12:44:28.693Z","sql":"SELECT * FROM \"aidboxconfig\" WHERE \"id\" = ?","db_prm":["box"],"d":1,"ctx":"705fdd742e612415"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/metadata","w":"w6","execution_time":6,"w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489068697,"ts":"2024-12-06T12:44:28.697Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /fhir/metadata","w_uid":"admin","d":23,"w_st":200,"ctx":"705fdd742e612415","w_qs":"include-custom-resources=true"} +{"rpc_p":{"resource-type":"Observation"},"ev":"rpc/call","rpc_m":"aidbox.introspector/get-schemas-by-resource-type","w":"w4","tn":"devbox","rpc_u":{"email":null},"op":"rpc:get-schemas-by-resource-type","timeUnix":1733489069253,"ts":"2024-12-06T12:44:29.253Z","d":571,"ctx":"23b3f67bdba7262f","lvl":"info"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/rpc","w":"w4","execution_time":573,"w_m":"post","tn":"devbox","op":"rpc:get-schemas-by-resource-type","timeUnix":1733489069254,"ts":"2024-12-06T12:44:29.254Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /rpc","w_uid":"admin","d":580,"w_st":200,"ctx":"23b3f67bdba7262f","w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} +{"ev":"w/req","w_url":"/ui/console","w":"w5","w_m":"get","tn":"devbox","op":"console","timeUnix":1733489071341,"ts":"2024-12-06T12:44:31.341Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"33984565d23b8558","wait_time":0} +{"w_referer":"http://localhost:8888/auth/login","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/ui/console","w":"w5","execution_time":7,"w_m":"get","tn":"devbox","op":"console","timeUnix":1733489071348,"ts":"2024-12-06T12:44:31.348Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /ui/console","w_uid":"admin","d":10,"w_st":200,"ctx":"33984565d23b8558"} +{"ev":"w/req","w_url":"/fhir/Observation","w":"w6","w_m":"get","tn":"devbox","op":"search","timeUnix":1733489071784,"ts":"2024-12-06T12:44:31.784Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"47c48a851a14ef98","wait_time":0,"w_qs":"_count=30&_sort=_id&_ilike="} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"FhirSearch","tn":"devbox","op":"search","timeUnix":1733489071784,"ts":"2024-12-06T12:44:31.784Z","access-policy-id":"devbox-policy","ctx":"47c48a851a14ef98"} +{"ev":"w/req","w_url":"/fhir/metadata","w":"w7","w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489071787,"ts":"2024-12-06T12:44:31.787Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"2c39bb9eda917ec7","wait_time":4,"w_qs":"include-custom-resources=true"} +{"ev":"w/req","w_url":"/rpc","w":"w4","w_m":"post","tn":"devbox","op":"rpc","timeUnix":1733489071787,"ts":"2024-12-06T12:44:31.787Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"656788cb5786fecc","wait_time":0,"w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} +{"ev":"db/q","w":"w6","tn":"devbox","op":"search","timeUnix":1733489071787,"ts":"2024-12-06T12:44:31.787Z","sql":"SELECT \"observation\".* FROM \"observation\" ORDER BY \"observation\".id ASC LIMIT ? OFFSET ? ","db_prm":["30","0"],"d":2,"ctx":"47c48a851a14ef98"} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"rpc","tn":"devbox","op":"rpc","timeUnix":1733489071787,"ts":"2024-12-06T12:44:31.787Z","access-policy-id":"devbox-policy","ctx":"656788cb5786fecc"} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"fhir-capability","tn":"devbox","op":"capability","timeUnix":1733489071788,"ts":"2024-12-06T12:44:31.788Z","access-policy-id":"devbox-policy","ctx":"2c39bb9eda917ec7"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Observation","w":"w6","execution_time":4,"w_m":"get","tn":"devbox","op":"search","timeUnix":1733489071788,"ts":"2024-12-06T12:44:31.788Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Observation","w_r":"GET /fhir/Observation","w_uid":"admin","d":7,"w_st":200,"ctx":"47c48a851a14ef98","w_qs":"_count=30&_sort=_id&_ilike="} +{"ev":"db/q","w":"w7","tn":"devbox","op":"capability","timeUnix":1733489071789,"ts":"2024-12-06T12:44:31.789Z","sql":"SELECT * FROM \"aidboxconfig\" WHERE \"id\" = ?","db_prm":["box"],"d":1,"ctx":"2c39bb9eda917ec7"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/metadata","w":"w7","execution_time":5,"w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489071792,"ts":"2024-12-06T12:44:31.792Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /fhir/metadata","w_uid":"admin","d":10,"w_st":200,"ctx":"2c39bb9eda917ec7","w_qs":"include-custom-resources=true"} +{"rpc_p":{"resource-type":"Observation"},"ev":"rpc/call","rpc_m":"aidbox.introspector/get-schemas-by-resource-type","w":"w4","tn":"devbox","rpc_u":{"email":null},"op":"rpc:get-schemas-by-resource-type","timeUnix":1733489071976,"ts":"2024-12-06T12:44:31.976Z","d":188,"ctx":"656788cb5786fecc","lvl":"info"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/rpc","w":"w4","execution_time":189,"w_m":"post","tn":"devbox","op":"rpc:get-schemas-by-resource-type","timeUnix":1733489071976,"ts":"2024-12-06T12:44:31.976Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /rpc","w_uid":"admin","d":190,"w_st":200,"ctx":"656788cb5786fecc","w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489081805,"ts":"2024-12-06T12:44:41.805Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"76490ab4b58d0cf8","wait_time":5} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489081809,"ts":"2024-12-06T12:44:41.809Z","access-policy-id":"devbox-policy","ctx":"76490ab4b58d0cf8"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":5,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489081812,"ts":"2024-12-06T12:44:41.811Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":22,"w_st":200,"ctx":"76490ab4b58d0cf8"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733489090043,"ts":"2024-12-06T12:44:50.043Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":2,"ctx":"96aa6d49b49489ee"} +{"ev":"w/req","w_url":"/Patient","w":"w1","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489090045,"ts":"2024-12-06T12:44:50.045Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"96aa6d49b49489ee","wait_time":2,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489090045,"ts":"2024-12-06T12:44:50.045Z","access-policy-id":"devbox-policy","ctx":"96aa6d49b49489ee"} +{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489090056,"ts":"2024-12-06T12:44:50.056Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":3,"ctx":"96aa6d49b49489ee"} +{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489090057,"ts":"2024-12-06T12:44:50.057Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"96aa6d49b49489ee"} +{"ev":"resource/update-dup","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489090062,"ts":"2024-12-06T12:44:50.062Z","rtp":"Patient","ctx":"96aa6d49b49489ee","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w1","execution_time":20,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489090065,"ts":"2024-12-06T12:44:50.065Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":27,"w_st":200,"ctx":"96aa6d49b49489ee","w_qs":"given=John&family=Doe"} +{"ev":"w/req","w_url":"/Observation","w":"w8","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489090071,"ts":"2024-12-06T12:44:50.071Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"2a9f70965403aa9e","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489090072,"ts":"2024-12-06T12:44:50.072Z","access-policy-id":"devbox-policy","ctx":"2a9f70965403aa9e"} +{"ev":"db/q","w":"w8","tn":"devbox","op":"create","timeUnix":1733489090490,"ts":"2024-12-06T12:44:50.490Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"2a9f70965403aa9e"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w8","execution_time":435,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489090506,"ts":"2024-12-06T12:44:50.506Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":436,"w_st":422,"ctx":"2a9f70965403aa9e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489091787,"ts":"2024-12-06T12:44:51.787Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"855becd2ae6aa23e","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489091787,"ts":"2024-12-06T12:44:51.787Z","access-policy-id":"devbox-policy","ctx":"855becd2ae6aa23e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489091788,"ts":"2024-12-06T12:44:51.788Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"855becd2ae6aa23e"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489092885,"ts":"2024-12-06T12:44:52.885Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"f452e7d628a925aa"} +{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733489102278,"ts":"2024-12-06T12:45:02.278Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":5,"ctx":"3b819f673a09bdf1"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489102285,"ts":"2024-12-06T12:45:02.285Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3b819f673a09bdf1","wait_time":3} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489102286,"ts":"2024-12-06T12:45:02.286Z","access-policy-id":"devbox-policy","ctx":"3b819f673a09bdf1"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489102287,"ts":"2024-12-06T12:45:02.287Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":19,"w_st":200,"ctx":"3b819f673a09bdf1"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489112278,"ts":"2024-12-06T12:45:12.277Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c6aee9265518a19d","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489112279,"ts":"2024-12-06T12:45:12.278Z","access-policy-id":"devbox-policy","ctx":"c6aee9265518a19d"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489112280,"ts":"2024-12-06T12:45:12.280Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"c6aee9265518a19d"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489122404,"ts":"2024-12-06T12:45:22.404Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b6696fc1ed2d4f79","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489122405,"ts":"2024-12-06T12:45:22.405Z","access-policy-id":"devbox-policy","ctx":"b6696fc1ed2d4f79"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489122406,"ts":"2024-12-06T12:45:22.406Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"b6696fc1ed2d4f79"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489122968,"ts":"2024-12-06T12:45:22.968Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"063035f24385c19c"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733489132437,"ts":"2024-12-06T12:45:32.437Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":5,"ctx":"261c01dcfb5b5380"} +{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733489132437,"ts":"2024-12-06T12:45:32.437Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"11a8bd3cacc21796"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489132440,"ts":"2024-12-06T12:45:32.440Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"11a8bd3cacc21796","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489132442,"ts":"2024-12-06T12:45:32.442Z","access-policy-id":"devbox-policy","ctx":"11a8bd3cacc21796"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489132443,"ts":"2024-12-06T12:45:32.443Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":13,"w_st":200,"ctx":"11a8bd3cacc21796"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489132443,"ts":"2024-12-06T12:45:32.443Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":13,"w_st":200,"ctx":"261c01dcfb5b5380"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733489141109,"ts":"2024-12-06T12:45:41.109Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":4,"ctx":"16b176ee12beb258"} +{"ev":"w/req","w_url":"/Patient","w":"w3","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489141114,"ts":"2024-12-06T12:45:41.114Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"16b176ee12beb258","wait_time":6,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489141115,"ts":"2024-12-06T12:45:41.115Z","access-policy-id":"devbox-policy","ctx":"16b176ee12beb258"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489141132,"ts":"2024-12-06T12:45:41.132Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":11,"ctx":"16b176ee12beb258"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489141134,"ts":"2024-12-06T12:45:41.134Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"16b176ee12beb258"} +{"ev":"resource/update-dup","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489141151,"ts":"2024-12-06T12:45:41.151Z","rtp":"Patient","ctx":"16b176ee12beb258","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w3","execution_time":40,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489141154,"ts":"2024-12-06T12:45:41.154Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":57,"w_st":200,"ctx":"16b176ee12beb258","w_qs":"given=John&family=Doe"} +{"ev":"w/req","w_url":"/Observation","w":"w2","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489141160,"ts":"2024-12-06T12:45:41.160Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"e23d256d136f21d1","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489141160,"ts":"2024-12-06T12:45:41.160Z","access-policy-id":"devbox-policy","ctx":"e23d256d136f21d1"} +{"ev":"db/q","w":"w2","tn":"devbox","op":"create","timeUnix":1733489141166,"ts":"2024-12-06T12:45:41.166Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"e23d256d136f21d1"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w2","execution_time":7,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489141167,"ts":"2024-12-06T12:45:41.167Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":8,"w_st":422,"ctx":"e23d256d136f21d1"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489142489,"ts":"2024-12-06T12:45:42.489Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1d64890b660b6eb9","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489142490,"ts":"2024-12-06T12:45:42.490Z","access-policy-id":"devbox-policy","ctx":"1d64890b660b6eb9"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489142491,"ts":"2024-12-06T12:45:42.491Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"1d64890b660b6eb9"} +{"ev":"w/req","w_url":"/Patient","w":"w7","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489148281,"ts":"2024-12-06T12:45:48.281Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"459dac39d467008f","wait_time":4,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489148283,"ts":"2024-12-06T12:45:48.283Z","access-policy-id":"devbox-policy","ctx":"459dac39d467008f"} +{"ev":"db/q","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489148299,"ts":"2024-12-06T12:45:48.299Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":6,"ctx":"459dac39d467008f"} +{"ev":"db/q","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489148302,"ts":"2024-12-06T12:45:48.302Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"459dac39d467008f"} +{"ev":"resource/update-dup","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489148306,"ts":"2024-12-06T12:45:48.306Z","rtp":"Patient","ctx":"459dac39d467008f","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w7","execution_time":28,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489148309,"ts":"2024-12-06T12:45:48.309Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":42,"w_st":200,"ctx":"459dac39d467008f","w_qs":"given=John&family=Doe"} +{"ev":"w/req","w_url":"/Observation","w":"w4","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489148321,"ts":"2024-12-06T12:45:48.321Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"2186066bbeb3bcb6","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489148322,"ts":"2024-12-06T12:45:48.322Z","access-policy-id":"devbox-policy","ctx":"2186066bbeb3bcb6"} +{"ev":"db/q","w":"w4","tn":"devbox","op":"create","timeUnix":1733489148328,"ts":"2024-12-06T12:45:48.328Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"2186066bbeb3bcb6"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w4","execution_time":9,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489148330,"ts":"2024-12-06T12:45:48.330Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":12,"w_st":422,"ctx":"2186066bbeb3bcb6"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489152639,"ts":"2024-12-06T12:45:52.639Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"af5a4cc80fe51906","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489152641,"ts":"2024-12-06T12:45:52.641Z","access-policy-id":"devbox-policy","ctx":"af5a4cc80fe51906"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489152642,"ts":"2024-12-06T12:45:52.642Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"af5a4cc80fe51906"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489153061,"ts":"2024-12-06T12:45:53.061Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"6a8de758e401ebdf"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733489162663,"ts":"2024-12-06T12:46:02.663Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"f02b342e8ab29575"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489162666,"ts":"2024-12-06T12:46:02.666Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f02b342e8ab29575","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489162667,"ts":"2024-12-06T12:46:02.667Z","access-policy-id":"devbox-policy","ctx":"f02b342e8ab29575"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489162668,"ts":"2024-12-06T12:46:02.668Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"f02b342e8ab29575"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489172712,"ts":"2024-12-06T12:46:12.712Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f3446ef807c26ac3","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489172713,"ts":"2024-12-06T12:46:12.713Z","access-policy-id":"devbox-policy","ctx":"f3446ef807c26ac3"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489172714,"ts":"2024-12-06T12:46:12.714Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"f3446ef807c26ac3"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489182750,"ts":"2024-12-06T12:46:22.750Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"bff3c3638f36b89d","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489182750,"ts":"2024-12-06T12:46:22.750Z","access-policy-id":"devbox-policy","ctx":"bff3c3638f36b89d"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489182751,"ts":"2024-12-06T12:46:22.751Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"bff3c3638f36b89d"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489183116,"ts":"2024-12-06T12:46:23.116Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"f6a68be7273d3b95"} +{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733489187503,"ts":"2024-12-06T12:46:27.503Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":4,"ctx":"8165596750c74855"} +{"ev":"w/req","w_url":"/Patient","w":"w7","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489187506,"ts":"2024-12-06T12:46:27.506Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"8165596750c74855","wait_time":1,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489187506,"ts":"2024-12-06T12:46:27.506Z","access-policy-id":"devbox-policy","ctx":"8165596750c74855"} +{"ev":"db/q","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489187511,"ts":"2024-12-06T12:46:27.511Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"8165596750c74855"} +{"ev":"db/q","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489187512,"ts":"2024-12-06T12:46:27.512Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":0,"ctx":"8165596750c74855"} +{"ev":"resource/update-dup","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489187517,"ts":"2024-12-06T12:46:27.517Z","rtp":"Patient","ctx":"8165596750c74855","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w7","execution_time":13,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489187519,"ts":"2024-12-06T12:46:27.519Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":21,"w_st":200,"ctx":"8165596750c74855","w_qs":"given=John&family=Doe"} +{"ev":"w/req","w_url":"/Observation","w":"w4","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489187525,"ts":"2024-12-06T12:46:27.525Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"09b69d454216dee1","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489187525,"ts":"2024-12-06T12:46:27.525Z","access-policy-id":"devbox-policy","ctx":"09b69d454216dee1"} +{"ev":"db/q","w":"w4","tn":"devbox","op":"create","timeUnix":1733489187529,"ts":"2024-12-06T12:46:27.529Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"09b69d454216dee1"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w4","execution_time":4,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489187529,"ts":"2024-12-06T12:46:27.529Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":5,"w_st":422,"ctx":"09b69d454216dee1"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733489192806,"ts":"2024-12-06T12:46:32.806Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"f460a410e243c746"} +{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733489192808,"ts":"2024-12-06T12:46:32.808Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":5,"ctx":"dae5e1bad1a0029c"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489192815,"ts":"2024-12-06T12:46:32.815Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"dae5e1bad1a0029c","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489192816,"ts":"2024-12-06T12:46:32.816Z","access-policy-id":"devbox-policy","ctx":"dae5e1bad1a0029c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489192817,"ts":"2024-12-06T12:46:32.817Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":16,"w_st":200,"ctx":"dae5e1bad1a0029c"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489192817,"ts":"2024-12-06T12:46:32.817Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":17,"w_st":200,"ctx":"f460a410e243c746"} +{"ev":"w/req","w_url":"/Patient","w":"w1","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489194362,"ts":"2024-12-06T12:46:34.362Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"0d8a72cb5bf25549","wait_time":0,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489194362,"ts":"2024-12-06T12:46:34.362Z","access-policy-id":"devbox-policy","ctx":"0d8a72cb5bf25549"} +{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489194368,"ts":"2024-12-06T12:46:34.368Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"0d8a72cb5bf25549"} +{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489194369,"ts":"2024-12-06T12:46:34.369Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":0,"ctx":"0d8a72cb5bf25549"} +{"ev":"resource/update-dup","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489194371,"ts":"2024-12-06T12:46:34.371Z","rtp":"Patient","ctx":"0d8a72cb5bf25549","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w1","execution_time":10,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489194372,"ts":"2024-12-06T12:46:34.372Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":12,"w_st":200,"ctx":"0d8a72cb5bf25549","w_qs":"given=John&family=Doe"} +{"ev":"w/req","w_url":"/Observation","w":"w3","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489194377,"ts":"2024-12-06T12:46:34.377Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"bbe0c0e0dac0fa70","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489194377,"ts":"2024-12-06T12:46:34.377Z","access-policy-id":"devbox-policy","ctx":"bbe0c0e0dac0fa70"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"create","timeUnix":1733489194379,"ts":"2024-12-06T12:46:34.379Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"bbe0c0e0dac0fa70"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w3","execution_time":2,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489194380,"ts":"2024-12-06T12:46:34.379Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":3,"w_st":422,"ctx":"bbe0c0e0dac0fa70"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489202846,"ts":"2024-12-06T12:46:42.845Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e65b17a1e0bbd55f","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489202846,"ts":"2024-12-06T12:46:42.846Z","access-policy-id":"devbox-policy","ctx":"e65b17a1e0bbd55f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489202847,"ts":"2024-12-06T12:46:42.847Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"e65b17a1e0bbd55f"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489212910,"ts":"2024-12-06T12:46:52.910Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7f59ab95b553af86","wait_time":7} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489212913,"ts":"2024-12-06T12:46:52.913Z","access-policy-id":"devbox-policy","ctx":"7f59ab95b553af86"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489212914,"ts":"2024-12-06T12:46:52.914Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":22,"w_st":200,"ctx":"7f59ab95b553af86"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489213204,"ts":"2024-12-06T12:46:53.204Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"0f1438a253e2ab93"} +{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733489222939,"ts":"2024-12-06T12:47:02.939Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"cfbb9d46c75608cb"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489222941,"ts":"2024-12-06T12:47:02.941Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"cfbb9d46c75608cb","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489222941,"ts":"2024-12-06T12:47:02.941Z","access-policy-id":"devbox-policy","ctx":"cfbb9d46c75608cb"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489222942,"ts":"2024-12-06T12:47:02.942Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"cfbb9d46c75608cb"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489233056,"ts":"2024-12-06T12:47:13.056Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"68cd9c1153f37e28","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489233058,"ts":"2024-12-06T12:47:13.058Z","access-policy-id":"devbox-policy","ctx":"68cd9c1153f37e28"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489233059,"ts":"2024-12-06T12:47:13.059Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":12,"w_st":200,"ctx":"68cd9c1153f37e28"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489243085,"ts":"2024-12-06T12:47:23.085Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d58bade0a105e585","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489243085,"ts":"2024-12-06T12:47:23.085Z","access-policy-id":"devbox-policy","ctx":"d58bade0a105e585"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489243086,"ts":"2024-12-06T12:47:23.086Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"d58bade0a105e585"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":12,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489243298,"ts":"2024-12-06T12:47:23.298Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":13,"w_st":200,"ctx":"0330a1b94e528b72"} +{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733489250412,"ts":"2024-12-06T12:47:30.412Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":5,"ctx":"2de82b81079e2846"} +{"ev":"w/req","w_url":"/Patient","w":"w3","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489250414,"ts":"2024-12-06T12:47:30.414Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"2de82b81079e2846","wait_time":2,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489250415,"ts":"2024-12-06T12:47:30.415Z","access-policy-id":"devbox-policy","ctx":"2de82b81079e2846"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489250424,"ts":"2024-12-06T12:47:30.424Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":4,"ctx":"2de82b81079e2846"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489250425,"ts":"2024-12-06T12:47:30.425Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":0,"ctx":"2de82b81079e2846"} +{"ev":"resource/update-dup","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489250430,"ts":"2024-12-06T12:47:30.430Z","rtp":"Patient","ctx":"2de82b81079e2846","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w3","execution_time":17,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489250432,"ts":"2024-12-06T12:47:30.432Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":27,"w_st":200,"ctx":"2de82b81079e2846","w_qs":"given=John&family=Doe"} +{"ev":"w/req","w_url":"/Observation","w":"w2","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489250438,"ts":"2024-12-06T12:47:30.438Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"e12baddcf50e7776","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489250438,"ts":"2024-12-06T12:47:30.438Z","access-policy-id":"devbox-policy","ctx":"e12baddcf50e7776"} +{"ev":"db/q","w":"w2","tn":"devbox","op":"create","timeUnix":1733489250441,"ts":"2024-12-06T12:47:30.441Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"e12baddcf50e7776"} +{"ev":"resource/create","txid":"36","w":"w2","tn":"devbox","op":"create","timeUnix":1733489250443,"ts":"2024-12-06T12:47:30.443Z","rtp":"Observation","ctx":"e12baddcf50e7776","rid":"c9938a08-9ddc-4db4-b2b0-627370bcdf3c"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w2","execution_time":6,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489250444,"ts":"2024-12-06T12:47:30.444Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":7,"w_st":201,"ctx":"e12baddcf50e7776"} +{"ev":"w/req","w_url":"/Patient","w":"w6","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489250450,"ts":"2024-12-06T12:47:30.450Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"e51aa3b7220c9e0c","wait_time":0,"w_qs":"given=Alice&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489250451,"ts":"2024-12-06T12:47:30.451Z","access-policy-id":"devbox-policy","ctx":"e51aa3b7220c9e0c"} +{"ev":"db/q","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733489250457,"ts":"2024-12-06T12:47:30.457Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":3,"ctx":"e51aa3b7220c9e0c"} +{"ev":"db/q","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733489250458,"ts":"2024-12-06T12:47:30.458Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"e51aa3b7220c9e0c"} +{"ev":"resource/update-dup","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733489250460,"ts":"2024-12-06T12:47:30.460Z","rtp":"Patient","ctx":"e51aa3b7220c9e0c","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w6","execution_time":11,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489250461,"ts":"2024-12-06T12:47:30.461Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":13,"w_st":200,"ctx":"e51aa3b7220c9e0c","w_qs":"given=Alice&family=Doe"} +{"ev":"w/req","w_url":"/Observation","w":"w7","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489250466,"ts":"2024-12-06T12:47:30.466Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"1f71bbbb9aac8345","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489250466,"ts":"2024-12-06T12:47:30.466Z","access-policy-id":"devbox-policy","ctx":"1f71bbbb9aac8345"} +{"ev":"db/q","w":"w7","tn":"devbox","op":"create","timeUnix":1733489250468,"ts":"2024-12-06T12:47:30.468Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"1f71bbbb9aac8345"} +{"ev":"resource/create","txid":"38","w":"w7","tn":"devbox","op":"create","timeUnix":1733489250469,"ts":"2024-12-06T12:47:30.469Z","rtp":"Observation","ctx":"1f71bbbb9aac8345","rid":"ddbc880a-e3f5-4a31-b31c-5b3e43975fb6"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w7","execution_time":4,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489250470,"ts":"2024-12-06T12:47:30.470Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":5,"w_st":201,"ctx":"1f71bbbb9aac8345"} +{"ev":"w/req","w_url":"/Patient","w":"w4","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489250475,"ts":"2024-12-06T12:47:30.475Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"781d050bc16f2aa4","wait_time":0,"w_qs":"given=Charly&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489250475,"ts":"2024-12-06T12:47:30.475Z","access-policy-id":"devbox-policy","ctx":"781d050bc16f2aa4"} +{"ev":"db/q","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733489250479,"ts":"2024-12-06T12:47:30.479Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Charly%","[[\"name\",\"family\"]]","% Doe%","100"],"d":1,"ctx":"781d050bc16f2aa4"} +{"ev":"db/q","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733489250480,"ts":"2024-12-06T12:47:30.480Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["192adcc8-2833-4e27-81ad-fcd7575c1785"],"d":0,"ctx":"781d050bc16f2aa4"} +{"ev":"resource/update-dup","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733489250482,"ts":"2024-12-06T12:47:30.482Z","rtp":"Patient","ctx":"781d050bc16f2aa4","rid":"192adcc8-2833-4e27-81ad-fcd7575c1785"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w4","execution_time":8,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489250483,"ts":"2024-12-06T12:47:30.483Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":9,"w_st":200,"ctx":"781d050bc16f2aa4","w_qs":"given=Charly&family=Doe"} +{"ev":"w/req","w_url":"/Observation","w":"w8","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489250487,"ts":"2024-12-06T12:47:30.487Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"1af9161e54df196f","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489250487,"ts":"2024-12-06T12:47:30.487Z","access-policy-id":"devbox-policy","ctx":"1af9161e54df196f"} +{"ev":"db/q","w":"w8","tn":"devbox","op":"create","timeUnix":1733489250489,"ts":"2024-12-06T12:47:30.489Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["192adcc8-2833-4e27-81ad-fcd7575c1785"],"d":0,"ctx":"1af9161e54df196f"} +{"ev":"resource/create","txid":"40","w":"w8","tn":"devbox","op":"create","timeUnix":1733489250490,"ts":"2024-12-06T12:47:30.490Z","rtp":"Observation","ctx":"1af9161e54df196f","rid":"50dc87c7-0ed0-4690-8c80-ee247e712dea"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w8","execution_time":4,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489250491,"ts":"2024-12-06T12:47:30.491Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":4,"w_st":201,"ctx":"1af9161e54df196f"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733489253122,"ts":"2024-12-06T12:47:33.122Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"2af13acec1ae0970"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733489253123,"ts":"2024-12-06T12:47:33.123Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"22955469ba56f176"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489253127,"ts":"2024-12-06T12:47:33.127Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"22955469ba56f176","wait_time":0} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489253128,"ts":"2024-12-06T12:47:33.127Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":9,"w_st":200,"ctx":"2af13acec1ae0970"} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489253128,"ts":"2024-12-06T12:47:33.128Z","access-policy-id":"devbox-policy","ctx":"22955469ba56f176"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489253128,"ts":"2024-12-06T12:47:33.128Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"22955469ba56f176"} +{"ev":"w/req","w_url":"/ui/console","w":"w3","w_m":"get","tn":"devbox","op":"console","timeUnix":1733489256512,"ts":"2024-12-06T12:47:36.511Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"bf8b6a18675a2671","wait_time":8} +{"w_referer":"http://localhost:8888/auth/login","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/ui/console","w":"w3","execution_time":12,"w_m":"get","tn":"devbox","op":"console","timeUnix":1733489256524,"ts":"2024-12-06T12:47:36.524Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /ui/console","w_uid":"admin","d":46,"w_st":200,"ctx":"bf8b6a18675a2671"} +{"ev":"w/req","w_url":"/rpc","w":"w8","w_m":"post","tn":"devbox","op":"rpc","timeUnix":1733489257028,"ts":"2024-12-06T12:47:37.028Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3cd34498341fddea","wait_time":1,"w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} +{"ev":"w/req","w_url":"/fhir/metadata","w":"w5","w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489257029,"ts":"2024-12-06T12:47:37.029Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"923bc0b6c0df9e8f","wait_time":5,"w_qs":"include-custom-resources=true"} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"rpc","tn":"devbox","op":"rpc","timeUnix":1733489257030,"ts":"2024-12-06T12:47:37.030Z","access-policy-id":"devbox-policy","ctx":"3cd34498341fddea"} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"fhir-capability","tn":"devbox","op":"capability","timeUnix":1733489257030,"ts":"2024-12-06T12:47:37.030Z","access-policy-id":"devbox-policy","ctx":"923bc0b6c0df9e8f"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"capability","timeUnix":1733489257032,"ts":"2024-12-06T12:47:37.032Z","sql":"SELECT * FROM \"aidboxconfig\" WHERE \"id\" = ?","db_prm":["box"],"d":1,"ctx":"923bc0b6c0df9e8f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/metadata","w":"w5","execution_time":8,"w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489257037,"ts":"2024-12-06T12:47:37.037Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /fhir/metadata","w_uid":"admin","d":14,"w_st":200,"ctx":"923bc0b6c0df9e8f","w_qs":"include-custom-resources=true"} +{"ev":"w/req","w_url":"/fhir/Observation","w":"w1","w_m":"get","tn":"devbox","op":"search","timeUnix":1733489257038,"ts":"2024-12-06T12:47:37.038Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e1e4d185cec2cd4b","wait_time":1,"w_qs":"_count=30&_sort=_id&_ilike="} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"FhirSearch","tn":"devbox","op":"search","timeUnix":1733489257039,"ts":"2024-12-06T12:47:37.039Z","access-policy-id":"devbox-policy","ctx":"e1e4d185cec2cd4b"} +{"ev":"db/q","w":"w1","tn":"devbox","op":"search","timeUnix":1733489257044,"ts":"2024-12-06T12:47:37.044Z","sql":"SELECT \"observation\".* FROM \"observation\" ORDER BY \"observation\".id ASC LIMIT ? OFFSET ? ","db_prm":["30","0"],"d":2,"ctx":"e1e4d185cec2cd4b"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Observation","w":"w1","execution_time":9,"w_m":"get","tn":"devbox","op":"search","timeUnix":1733489257047,"ts":"2024-12-06T12:47:37.047Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Observation","w_r":"GET /fhir/Observation","w_uid":"admin","d":24,"w_st":200,"ctx":"e1e4d185cec2cd4b","w_qs":"_count=30&_sort=_id&_ilike="} +{"rpc_p":{"resource-type":"Observation"},"ev":"rpc/call","rpc_m":"aidbox.introspector/get-schemas-by-resource-type","w":"w8","tn":"devbox","rpc_u":{"email":null},"op":"rpc:get-schemas-by-resource-type","timeUnix":1733489257542,"ts":"2024-12-06T12:47:37.542Z","d":511,"ctx":"3cd34498341fddea","lvl":"info"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/rpc","w":"w8","execution_time":515,"w_m":"post","tn":"devbox","op":"rpc:get-schemas-by-resource-type","timeUnix":1733489257543,"ts":"2024-12-06T12:47:37.543Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /rpc","w_uid":"admin","d":520,"w_st":200,"ctx":"3cd34498341fddea","w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} +{"ev":"w/req","w_url":"/fhir/Observation/$validate","w":"w3","w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733489265163,"ts":"2024-12-06T12:47:45.163Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ae4186f7614f5cd8","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"FhirValidateCreate","tn":"devbox","op":"$validate","timeUnix":1733489265164,"ts":"2024-12-06T12:47:45.164Z","access-policy-id":"devbox-policy","ctx":"ae4186f7614f5cd8"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"$validate","timeUnix":1733489265171,"ts":"2024-12-06T12:47:45.171Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["192adcc8-2833-4e27-81ad-fcd7575c1785"],"d":1,"ctx":"ae4186f7614f5cd8"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Observation/$validate","w":"w3","execution_time":9,"w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733489265172,"ts":"2024-12-06T12:47:45.172Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Observation","w_r":"POST /fhir/Observation/$validate","w_uid":"admin","d":17,"w_st":200,"ctx":"ae4186f7614f5cd8"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489267023,"ts":"2024-12-06T12:47:47.023Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b469ee9e4d8b49b5","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489267023,"ts":"2024-12-06T12:47:47.023Z","access-policy-id":"devbox-policy","ctx":"b469ee9e4d8b49b5"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489267024,"ts":"2024-12-06T12:47:47.024Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"b469ee9e4d8b49b5"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489273387,"ts":"2024-12-06T12:47:53.387Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"0c01c7cd260d80a0"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489277029,"ts":"2024-12-06T12:47:57.029Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"bc057e0877fcb2eb","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489277030,"ts":"2024-12-06T12:47:57.030Z","access-policy-id":"devbox-policy","ctx":"bc057e0877fcb2eb"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489277031,"ts":"2024-12-06T12:47:57.031Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"bc057e0877fcb2eb"} +{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733489287027,"ts":"2024-12-06T12:48:07.027Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"70bf83544a249ad6"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489287031,"ts":"2024-12-06T12:48:07.031Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"70bf83544a249ad6","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489287032,"ts":"2024-12-06T12:48:07.032Z","access-policy-id":"devbox-policy","ctx":"70bf83544a249ad6"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489287032,"ts":"2024-12-06T12:48:07.032Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"70bf83544a249ad6"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489297059,"ts":"2024-12-06T12:48:17.058Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0ae40c981e48ea5f","wait_time":9} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489297062,"ts":"2024-12-06T12:48:17.062Z","access-policy-id":"devbox-policy","ctx":"0ae40c981e48ea5f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":5,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489297064,"ts":"2024-12-06T12:48:17.064Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":32,"w_st":200,"ctx":"0ae40c981e48ea5f"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489303500,"ts":"2024-12-06T12:48:23.500Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"8059dff47445141a"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489307030,"ts":"2024-12-06T12:48:27.030Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"dea373786c22c313","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489307031,"ts":"2024-12-06T12:48:27.031Z","access-policy-id":"devbox-policy","ctx":"dea373786c22c313"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489307032,"ts":"2024-12-06T12:48:27.032Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"dea373786c22c313"} +{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733489317033,"ts":"2024-12-06T12:48:37.033Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":5,"ctx":"0428202b85ea016e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":5,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489317035,"ts":"2024-12-06T12:48:37.035Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":17,"w_st":200,"ctx":"6140ac4ca1dcbf2a"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489317036,"ts":"2024-12-06T12:48:37.036Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0428202b85ea016e","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489317036,"ts":"2024-12-06T12:48:37.036Z","access-policy-id":"devbox-policy","ctx":"0428202b85ea016e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489317037,"ts":"2024-12-06T12:48:37.037Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"0428202b85ea016e"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489327719,"ts":"2024-12-06T12:48:47.719Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6b775bf72b84372e","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489327721,"ts":"2024-12-06T12:48:47.721Z","access-policy-id":"devbox-policy","ctx":"6b775bf72b84372e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489327722,"ts":"2024-12-06T12:48:47.722Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"6b775bf72b84372e"} +{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733489328469,"ts":"2024-12-06T12:48:48.469Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":2,"ctx":"c9f767c3e15853db"} +{"ev":"w/req","w_url":"/Patient","w":"w7","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489328471,"ts":"2024-12-06T12:48:48.471Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"c9f767c3e15853db","wait_time":0,"w_qs":"given=John&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489328471,"ts":"2024-12-06T12:48:48.471Z","access-policy-id":"devbox-policy","ctx":"c9f767c3e15853db"} +{"ev":"db/q","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489328481,"ts":"2024-12-06T12:48:48.481Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":3,"ctx":"c9f767c3e15853db"} +{"ev":"db/q","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489328483,"ts":"2024-12-06T12:48:48.483Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"c9f767c3e15853db"} +{"ev":"resource/update-dup","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489328487,"ts":"2024-12-06T12:48:48.487Z","rtp":"Patient","ctx":"c9f767c3e15853db","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w7","execution_time":19,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489328490,"ts":"2024-12-06T12:48:48.490Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":24,"w_st":200,"ctx":"c9f767c3e15853db","w_qs":"given=John&family=Doe"} +{"ev":"w/req","w_url":"/Observation","w":"w5","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489328496,"ts":"2024-12-06T12:48:48.496Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"0cda2608bdb64dd3","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489328496,"ts":"2024-12-06T12:48:48.496Z","access-policy-id":"devbox-policy","ctx":"0cda2608bdb64dd3"} +{"ev":"db/q","w":"w5","tn":"devbox","op":"create","timeUnix":1733489328512,"ts":"2024-12-06T12:48:48.512Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"0cda2608bdb64dd3"} +{"ev":"resource/create","txid":"42","w":"w5","tn":"devbox","op":"create","timeUnix":1733489328515,"ts":"2024-12-06T12:48:48.515Z","rtp":"Observation","ctx":"0cda2608bdb64dd3","rid":"e73e432d-f255-4642-a44b-f59dd5bac67c"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w5","execution_time":25,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489328521,"ts":"2024-12-06T12:48:48.521Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":26,"w_st":201,"ctx":"0cda2608bdb64dd3"} +{"ev":"w/req","w_url":"/Patient","w":"w1","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489328526,"ts":"2024-12-06T12:48:48.526Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"d00bda5b05240cea","wait_time":0,"w_qs":"given=Alice&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489328527,"ts":"2024-12-06T12:48:48.527Z","access-policy-id":"devbox-policy","ctx":"d00bda5b05240cea"} +{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489328531,"ts":"2024-12-06T12:48:48.531Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"d00bda5b05240cea"} +{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489328532,"ts":"2024-12-06T12:48:48.532Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":1,"ctx":"d00bda5b05240cea"} +{"ev":"resource/update-dup","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489328534,"ts":"2024-12-06T12:48:48.534Z","rtp":"Patient","ctx":"d00bda5b05240cea","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w1","execution_time":9,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489328535,"ts":"2024-12-06T12:48:48.535Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":10,"w_st":200,"ctx":"d00bda5b05240cea","w_qs":"given=Alice&family=Doe"} +{"ev":"w/req","w_url":"/Observation","w":"w8","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489328543,"ts":"2024-12-06T12:48:48.543Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"7daec689fb9b5876","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489328544,"ts":"2024-12-06T12:48:48.544Z","access-policy-id":"devbox-policy","ctx":"7daec689fb9b5876"} +{"ev":"db/q","w":"w8","tn":"devbox","op":"create","timeUnix":1733489328546,"ts":"2024-12-06T12:48:48.546Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":1,"ctx":"7daec689fb9b5876"} +{"ev":"resource/create","txid":"44","w":"w8","tn":"devbox","op":"create","timeUnix":1733489328548,"ts":"2024-12-06T12:48:48.548Z","rtp":"Observation","ctx":"7daec689fb9b5876","rid":"2e9b1cb3-8410-4de7-a4c3-3061b380adb6"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w8","execution_time":7,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489328551,"ts":"2024-12-06T12:48:48.551Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":9,"w_st":201,"ctx":"7daec689fb9b5876"} +{"ev":"w/req","w_url":"/Patient","w":"w3","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489328564,"ts":"2024-12-06T12:48:48.564Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"9ef81b351c26ec1f","wait_time":0,"w_qs":"given=Charly&family=Doe"} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489328566,"ts":"2024-12-06T12:48:48.566Z","access-policy-id":"devbox-policy","ctx":"9ef81b351c26ec1f"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489328573,"ts":"2024-12-06T12:48:48.573Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Charly%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"9ef81b351c26ec1f"} +{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489328574,"ts":"2024-12-06T12:48:48.574Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["192adcc8-2833-4e27-81ad-fcd7575c1785"],"d":1,"ctx":"9ef81b351c26ec1f"} +{"ev":"resource/update-dup","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489328577,"ts":"2024-12-06T12:48:48.577Z","rtp":"Patient","ctx":"9ef81b351c26ec1f","rid":"192adcc8-2833-4e27-81ad-fcd7575c1785"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w3","execution_time":14,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489328578,"ts":"2024-12-06T12:48:48.578Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":16,"w_st":200,"ctx":"9ef81b351c26ec1f","w_qs":"given=Charly&family=Doe"} +{"ev":"w/req","w_url":"/Observation","w":"w2","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489328584,"ts":"2024-12-06T12:48:48.584Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"8c7811671594f02a","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489328584,"ts":"2024-12-06T12:48:48.584Z","access-policy-id":"devbox-policy","ctx":"8c7811671594f02a"} +{"ev":"db/q","w":"w2","tn":"devbox","op":"create","timeUnix":1733489328586,"ts":"2024-12-06T12:48:48.586Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["192adcc8-2833-4e27-81ad-fcd7575c1785"],"d":0,"ctx":"8c7811671594f02a"} +{"ev":"resource/create","txid":"46","w":"w2","tn":"devbox","op":"create","timeUnix":1733489328587,"ts":"2024-12-06T12:48:48.587Z","rtp":"Observation","ctx":"8c7811671594f02a","rid":"d31a9804-cd95-44c9-b114-ff962be3e072"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w2","execution_time":4,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489328588,"ts":"2024-12-06T12:48:48.588Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":5,"w_st":201,"ctx":"8c7811671594f02a"} +{"ev":"w/req","w_url":"/ui/console","w":"w6","w_m":"get","tn":"devbox","op":"console","timeUnix":1733489332481,"ts":"2024-12-06T12:48:52.481Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9d56f16705ff783d","wait_time":3} +{"w_referer":"http://localhost:8888/auth/login","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/ui/console","w":"w6","execution_time":8,"w_m":"get","tn":"devbox","op":"console","timeUnix":1733489332489,"ts":"2024-12-06T12:48:52.489Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /ui/console","w_uid":"admin","d":18,"w_st":200,"ctx":"9d56f16705ff783d"} +{"ev":"w/req","w_url":"/fhir/Observation","w":"w8","w_m":"get","tn":"devbox","op":"search","timeUnix":1733489333339,"ts":"2024-12-06T12:48:53.339Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"667af9ae57ab2b9e","wait_time":0,"w_qs":"_count=30&_sort=_id&_ilike="} +{"ev":"auth/authorized-access-policy","w":"w8","op_id":"FhirSearch","tn":"devbox","op":"search","timeUnix":1733489333339,"ts":"2024-12-06T12:48:53.339Z","access-policy-id":"devbox-policy","ctx":"667af9ae57ab2b9e"} +{"ev":"w/req","w_url":"/rpc","w":"w3","w_m":"post","tn":"devbox","op":"rpc","timeUnix":1733489333340,"ts":"2024-12-06T12:48:53.340Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"47102e15bb60f7bb","wait_time":1,"w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} +{"ev":"auth/authorized-access-policy","w":"w3","op_id":"rpc","tn":"devbox","op":"rpc","timeUnix":1733489333341,"ts":"2024-12-06T12:48:53.341Z","access-policy-id":"devbox-policy","ctx":"47102e15bb60f7bb"} +{"ev":"w/req","w_url":"/fhir/metadata","w":"w2","w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489333342,"ts":"2024-12-06T12:48:53.342Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c306795b31951721","wait_time":0,"w_qs":"include-custom-resources=true"} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"fhir-capability","tn":"devbox","op":"capability","timeUnix":1733489333343,"ts":"2024-12-06T12:48:53.343Z","access-policy-id":"devbox-policy","ctx":"c306795b31951721"} +{"ev":"db/q","w":"w8","tn":"devbox","op":"search","timeUnix":1733489333344,"ts":"2024-12-06T12:48:53.344Z","sql":"SELECT \"observation\".* FROM \"observation\" ORDER BY \"observation\".id ASC LIMIT ? OFFSET ? ","db_prm":["30","0"],"d":3,"ctx":"667af9ae57ab2b9e"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Observation","w":"w8","execution_time":7,"w_m":"get","tn":"devbox","op":"search","timeUnix":1733489333346,"ts":"2024-12-06T12:48:53.346Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Observation","w_r":"GET /fhir/Observation","w_uid":"admin","d":9,"w_st":200,"ctx":"667af9ae57ab2b9e","w_qs":"_count=30&_sort=_id&_ilike="} +{"ev":"db/q","w":"w2","tn":"devbox","op":"capability","timeUnix":1733489333351,"ts":"2024-12-06T12:48:53.351Z","sql":"SELECT * FROM \"aidboxconfig\" WHERE \"id\" = ?","db_prm":["box"],"d":7,"ctx":"c306795b31951721"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/metadata","w":"w2","execution_time":16,"w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489333358,"ts":"2024-12-06T12:48:53.358Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /fhir/metadata","w_uid":"admin","d":21,"w_st":200,"ctx":"c306795b31951721","w_qs":"include-custom-resources=true"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489333588,"ts":"2024-12-06T12:48:53.588Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"b3777cd6dee0709f"} +{"rpc_p":{"resource-type":"Observation"},"ev":"rpc/call","rpc_m":"aidbox.introspector/get-schemas-by-resource-type","w":"w3","tn":"devbox","rpc_u":{"email":null},"op":"rpc:get-schemas-by-resource-type","timeUnix":1733489333731,"ts":"2024-12-06T12:48:53.731Z","d":388,"ctx":"47102e15bb60f7bb","lvl":"info"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/rpc","w":"w3","execution_time":391,"w_m":"post","tn":"devbox","op":"rpc:get-schemas-by-resource-type","timeUnix":1733489333731,"ts":"2024-12-06T12:48:53.731Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /rpc","w_uid":"admin","d":394,"w_st":200,"ctx":"47102e15bb60f7bb","w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} +{"ev":"w/req","w_url":"/fhir/Observation/$validate","w":"w4","w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733489333820,"ts":"2024-12-06T12:48:53.820Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4491595d53adc8d1","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w4","op_id":"FhirValidateCreate","tn":"devbox","op":"$validate","timeUnix":1733489333820,"ts":"2024-12-06T12:48:53.820Z","access-policy-id":"devbox-policy","ctx":"4491595d53adc8d1"} +{"ev":"db/q","w":"w4","tn":"devbox","op":"$validate","timeUnix":1733489333824,"ts":"2024-12-06T12:48:53.824Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["192adcc8-2833-4e27-81ad-fcd7575c1785"],"d":2,"ctx":"4491595d53adc8d1"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Observation/$validate","w":"w4","execution_time":5,"w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733489333825,"ts":"2024-12-06T12:48:53.825Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Observation","w_r":"POST /fhir/Observation/$validate","w_uid":"admin","d":6,"w_st":200,"ctx":"4491595d53adc8d1"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489343352,"ts":"2024-12-06T12:49:03.352Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"cb8ec62853c44055","wait_time":2} +{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489343356,"ts":"2024-12-06T12:49:03.356Z","access-policy-id":"devbox-policy","ctx":"cb8ec62853c44055"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":5,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489343357,"ts":"2024-12-06T12:49:03.357Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"cb8ec62853c44055"} +{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733489353344,"ts":"2024-12-06T12:49:13.344Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":7,"ctx":"d91ed4f539164923"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489353348,"ts":"2024-12-06T12:49:13.348Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d91ed4f539164923","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489353348,"ts":"2024-12-06T12:49:13.348Z","access-policy-id":"devbox-policy","ctx":"d91ed4f539164923"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489353349,"ts":"2024-12-06T12:49:13.349Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":14,"w_st":200,"ctx":"d91ed4f539164923"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489363335,"ts":"2024-12-06T12:49:23.335Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f19072d64021cd28","wait_time":0} +{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489363336,"ts":"2024-12-06T12:49:23.336Z","access-policy-id":"devbox-policy","ctx":"f19072d64021cd28"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489363337,"ts":"2024-12-06T12:49:23.337Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"f19072d64021cd28"} +{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489363670,"ts":"2024-12-06T12:49:23.670Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"8463c162ae8f1453"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489373344,"ts":"2024-12-06T12:49:33.344Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ae383ae7cc7fab24","wait_time":1} +{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489373346,"ts":"2024-12-06T12:49:33.346Z","access-policy-id":"devbox-policy","ctx":"ae383ae7cc7fab24"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489373347,"ts":"2024-12-06T12:49:33.347Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"ae383ae7cc7fab24"} +{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733489383419,"ts":"2024-12-06T12:49:43.418Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":25,"ctx":"8a42f235df9ef49f"} +{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489383428,"ts":"2024-12-06T12:49:43.428Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"8a42f235df9ef49f","wait_time":6} +{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489383430,"ts":"2024-12-06T12:49:43.430Z","access-policy-id":"devbox-policy","ctx":"8a42f235df9ef49f"} +{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489383431,"ts":"2024-12-06T12:49:43.431Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":46,"w_st":200,"ctx":"8a42f235df9ef49f"} diff --git a/aidbox-with-python-sdk/tmp/hsperfdata_aidbox/1 b/aidbox-with-python-sdk/tmp/hsperfdata_aidbox/1 new file mode 100644 index 0000000000000000000000000000000000000000..0e4f3a53c5a37faf1a3850bf83daa045e78a552f GIT binary patch literal 32768 zcmeHOe~cVe9iQE80j&rIP_Q6l_|amyx!vuxrA6cPu6NhgmKLs*YDkW`+1b14&CaYd zv)emjf=P`Uql6zZ3dTed6T*KeKP(VQ6@!QdG-@Cr_^)VC@kinxiu(D!`SIq>&hFk1 z6JmTXc{jV;_xb+#yzl$IH}Ac^_^-2POJ$|h-mb8+_5N)e=!1&-W7Hc^FGi(uP}xwf z;u&;Y%@4KNVA(Zi54cUo2yM>|SevKW-xc8YSpx3K7^mZz)kpdTeG{G=T5iK?9P-S? zyod zP;>jo3vrbmJ`a2D=20n^@m9jX~w~Wv_-Ws>&ZTFbnvIzOeUw-+G`%5dr zO}dQ)r6?~C$8}o=Tsz$7xfX{hXNz#9C|*t)T|)~OU}huGg3$0os}XspD0^Td6@mX! zsY3hcy-U`Rv$`6cB8q^FHa<6|%CxU#WCe8%Gv?I(=3F=sn=Xj_3&t5w%k zAUWq(HjYdu&>YV|0+?`&Ab>trPTv^#Z zw8mgObkrgETYI&0ycjR#G+wy7Wr1puM5hBuY=|VKn2H~=9 zX0gNcMYzO05t;LgjcbYG;nSo;aioin{=QgtEE6Ni;B!K7-AD<-O zqyV8@#lv4&y7=_ntHNo4!uVt#Za< z0e3vIK6`e=a?becle06H^Yu9J*6J5~se!B){vM6IwaTG!Lgmc#`sD16#3=f?(T6qK zQ%mFdt##Q`OXB%#{35(ody;t8-&~(xNj!gx5GB$w}h*!nosfNaOiO z$iKz;Cy4Ujh0F@>&t`n5dFFaN$wA!Z04l{`k9Jhn7 zFKB*FCLGAI-L9AJ836*FQ4!}KzJAN$)0M$y^IR4xI^bMyC7ZvqdTFknbVEOVae3S)UvW7{%TsvUxL%| zVJLq!t%tw0;IsTC_=LZK@mEjz!$Q;S_`c|KAv0mxQf5%UR-zU9`5nY>Zc zg0^AO_>QuAe!P^k>pcP2vR&FVGwqPQE=5Z5S4T}aKd21A8%sI7`WX_E!)M34px^9K zuD&;mKL=lkFUqGyd@;Y1#K*o6n&(UUO!n(|4#H#gTj)m;_pzMHFge5gN#sz!4zdT? znk`?|W|d7uIXi~>Lwh2kLw69B>H9;%YjGUL6A7C|2*q*qxqlp1(>Sb9Llhl#cpO!= z^~E9Zeflq_zfT-i@p76U1nMO)J++^bNdGvD{Z8T#?;f;gO=V^M#_|39$jRvwhg?pt zKX0*a&|y=iKl<{KjH@ILaYDsXOU{lyamelHjl<6}IZ0llI2q1soEL-YD*3Dx#03jiv9Zzikbv!3#~^nF?p_w?&ffBNw$`cowv^$32twi*Tk&ZB+V$LcPiTj?Piz`Htb5cC>Xl zK?@?3B!200ksjp5sTe{{l)K98k<(MIY{k!6J1doIkxd>L$mDbP?j;mr=CjdFaJK-z`~a{b2^n>Fe#M!0}G) zrM`-qD_Z;%{p-a+-%J+TXFo5yzQl2w5ltWcCiTI7a=b8!{dyCbtfTU{67~@}4n~V> zA3`dJ=#S{Hz%R#VlJplp`ctM?%m>1H()3zw?3ZG}X3|05VApeUvU##ljz9r9pmbRr zuU1Y0B|1r?KYjQtv?rnF(fvNNL&WpM)kSs%$=L*k5`Tk8Z zA9Y(ta5lt_57^<*k>k^(DmQL=ap`>6ZBcXO;@iJUOXhrjPVaYs=U64RQk0lZv3)5z zcaQEr06=F?%qm6s!_7{KwnD{xo;jztH81ev#%OoV)PZTzGoU?g1kveObT0eCrmLQ& zcccM4Gjqlb+wnSd^Ghtla0lEjPOKYdt)i+=Fv#6=oi1|1D?SHN3kRb z$N)VF4;+N{8w>Sh?uRfv{6zCln+oSMem}&f8(55Q4uYP0zxfg7km!$~C(bL;0nz>+ zEVDc$`ja`QP4mEn*RawS4oNz=a5PCfhE}Z!|}cd`e$M^5YAJ_3hZZ zp%~Lq$u8P-BOIMi72#SMZUM2oi4k;LZ97`>_s`4ld63>#v^!)_&OW-W+tdG?bpTLKppv~8p^_ZB-n=q7jI|@a zL8lWFp5OMORS)n~bX1Z{i+_^aFMe9sk!gBL%U-e?Y70{g+OvWIOn91K2tS5rfn94R zag<)xEq~8yh+lbQO{0#A+LP6z*c@HN)rf%qjDO!bwuipQk5oEyU&mka|2?SWf1h#0 z-k9PLGVI2jw}f#|R{)ZJrQ>D77sM~c$AX8;H7n%+qLi(uWEbUEl6y6ttY46W}J4?yP9BFj|M?HAUWVYG$>RiWmLKO$d^=f@=q*fiN?mkxC zwWof=p8EDrsi*94L7g{EwN};YT8$c2YxOEpp*YX+b$L85gtkfli$PIFH+}7u-*a)3IQ@D$$Ruub{{D#hhC5-=vAFBqto%8;7Cqh ze~RO;71W%Sq@U?a*8Yy~Fjef*wy)7X8T-x_y#;ba-uU|9PP?t4Vh=1bdSj$E&GU&~ z!js*Z_8KPC^#5bL_UD(Ar9~`3J|qK@0m*=5Kr$d1kPJu$Bm Date: Sat, 7 Dec 2024 12:53:52 +0100 Subject: [PATCH 02/11] WIP: refactoring, add poetry project file, add make file, add .env.tpl --- aidbox-with-python-sdk/.env.tpl | 14 + aidbox-with-python-sdk/.gitignore | 3 + aidbox-with-python-sdk/Makefile | 9 + aidbox-with-python-sdk/README.md | 9 + .../{ => data}/patients.csv | 0 aidbox-with-python-sdk/main.py | 175 +- aidbox-with-python-sdk/poetry.lock | 782 ++++++++ aidbox-with-python-sdk/pyproject.toml | 17 + aidbox-with-python-sdk/tmp/aidbox.ndjson | 1753 ----------------- .../tmp/hsperfdata_aidbox/1 | Bin 32768 -> 0 bytes 10 files changed, 941 insertions(+), 1821 deletions(-) create mode 100644 aidbox-with-python-sdk/.env.tpl create mode 100644 aidbox-with-python-sdk/.gitignore create mode 100644 aidbox-with-python-sdk/Makefile create mode 100644 aidbox-with-python-sdk/README.md rename aidbox-with-python-sdk/{ => data}/patients.csv (100%) create mode 100644 aidbox-with-python-sdk/poetry.lock create mode 100644 aidbox-with-python-sdk/pyproject.toml delete mode 100644 aidbox-with-python-sdk/tmp/aidbox.ndjson delete mode 100644 aidbox-with-python-sdk/tmp/hsperfdata_aidbox/1 diff --git a/aidbox-with-python-sdk/.env.tpl b/aidbox-with-python-sdk/.env.tpl new file mode 100644 index 00000000..ef2e7a39 --- /dev/null +++ b/aidbox-with-python-sdk/.env.tpl @@ -0,0 +1,14 @@ +AIDBOX_LICENSE= + +AIDBOX_DEV_MODE=true +AIDBOX_FHIR_VERSION=4.0.1 +AIDBOX_FHIR_SCHEMA_VALIDATION=true +AIDBOX_FHIR_PACKAGES=hl7.fhir.r4.core#4.0.1 + +AIDBOX_CLIENT_SECRET=secret +AIDBOX_CLIENT_ID=root +AIDBOX_ADMIN_PASSWORD=password + +BOX_AUTH_KEYS_SECRET=auth-key-secret +BOX_AUTH_KEYS_PRIVATE="-----BEGIN RSA PRIVATE KEY-----\nMIIEpAIBAAKCAQEApbUYGNmCz1P8G0j/FFOjx1d5GNssJ/jj6xasSwTIbjjt6FtY\nCDw8o7hayOc/u8aUqXCGhK3JD2T9gtKv9/rV30w4YzmHhA8OOuLJE7tfh/PJA4Hn\n4i2JJ30BuoZ7rPTlTRGdc1FS3XFdmBQtnplEkJ7y8qbdrVme3Kbtn+BR1BdtgwSy\nbpNH2yqh3bb6PwpgNSMH7BIkBWL4A6QDpaFf1/9jSNE1vO25ssLC+bhFQNWLYriu\n+HogzEf9NWIrR2W29mI1QiA7wqvEuhg1yx38ylWD8GhCGL6+2QLKBYgp7DIGv6Uo\nTnqcVISatdQ51lVcCPmU6L1BhmcXVti6dWBI+wIDAQABAoIBAFKMOcJbTKpKvLq8\n7PErz1lFDpreyArrlmKsy0ydx9j8vCt1oY+MrmqisnsFk/7PaIxV9XUP+6qTFSUA\nHtAKYVOZLTfk10jmlSCpjCCrxWW9AISiSKkoJPyKbfuE9gRNhRMU9NoXB5Av4r+Z\nQbaRxJHE1OMjVCgAjr592786qJjd+shhY8ZLchrxctpBj6/4T2Rd4Q8ltyEV3hiy\noYaFVp9g332bFw7jZSuxgedZojNO6xPvbparTAgVDDwKB+CVUhuZ5EXWwemRvwoc\nYZM1UKPgtCqBZwm2GRv7s6XzJKBAZEMxcL7hS0RfijCe4MJcZlUCoM43Tf5XqDlT\nMmoXnPECgYEA4dkY/uqDLjJep5+4imRbceotxV2CZoJRQ0D85Ewu3tm9zdXhqL4p\n3XAOcNnqj7xBP3qkb/cXZumwdAIZns4kO1kw5hVQLX+xwMAJuravxp8sYJkx3CLO\noaOPNnlhGRv35fg4ZnoHHMO2C0wUmtSqsi6vE1EObYsIIFil58pI0NECgYEAu9SL\ne6AUCI/sdDlrTXQ8fdW8XSSJYPhZHqAvOAZfkeG4uuA2Qzxe8yUSES7z5V29futl\nWU7x+FWfqzkjh8qerviydAEFxVOpZ99ih9VB9dAwz3nX3OCoz3EUFmQGtTMxQmbo\nfW9sT4E6R7Hpa5jKnYvixk6u4p3aoEaZI4KeUAsCgYEA2OC3hiQBcN1h1Com9o7E\n2bF93qebT4EZNDI2J62Y3NvPztfy6S4j2cd/tpMtEnY/WgwV2Ic5a9RBZEWYAM4I\nMQ3HTUtuQSL8uRIwxaIlTeEQpnq2TKUINGRyZGdO/OPEvIwO7SmFpvOx30tiBgTv\nHkiCS1RtPHhkh1tZhirUneECgYAxNmARVQDKuYLXdM/jbEgJJD4FHXSNHqSi/I9C\nm5DgtQZkmCg/d4rdI+JW9Dlc6DGlFmHog2GskiqSfxcLFhB7gZeoAziS2fexynqT\nYlG06QZQ5fij24z/RP5hW3XSdgY7AqF5c/8p2Y7+h+PDmDXGD4esM6NoprlIcxbe\nkfOOvwKBgQCoOpkW+OWnxPLawmG/gv8+s5CsfOPUpURwAjltSXz9LXvsJmWQPQVG\np4sKEOJidYyt24YrIHi9/UEqRi+uuRQ4zCuXS6UjXftjAarPIPGkL/1S6B1Z91zg\nE5C0rXOvAlrvK09p4HGXLrwQxjrWt8R7rPvaD2yqVKLP4liFj8RMdg==\n-----END RSA PRIVATE KEY-----\n" +BOX_AUTH_KEYS_PUBLIC="-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbUYGNmCz1P8G0j/FFOj\nx1d5GNssJ/jj6xasSwTIbjjt6FtYCDw8o7hayOc/u8aUqXCGhK3JD2T9gtKv9/rV\n30w4YzmHhA8OOuLJE7tfh/PJA4Hn4i2JJ30BuoZ7rPTlTRGdc1FS3XFdmBQtnplE\nkJ7y8qbdrVme3Kbtn+BR1BdtgwSybpNH2yqh3bb6PwpgNSMH7BIkBWL4A6QDpaFf\n1/9jSNE1vO25ssLC+bhFQNWLYriu+HogzEf9NWIrR2W29mI1QiA7wqvEuhg1yx38\nylWD8GhCGL6+2QLKBYgp7DIGv6UoTnqcVISatdQ51lVcCPmU6L1BhmcXVti6dWBI\n+wIDAQAB\n-----END PUBLIC KEY-----\n" diff --git a/aidbox-with-python-sdk/.gitignore b/aidbox-with-python-sdk/.gitignore new file mode 100644 index 00000000..0f8ce8b2 --- /dev/null +++ b/aidbox-with-python-sdk/.gitignore @@ -0,0 +1,3 @@ +.env +tmp/ +.ruff_cache diff --git a/aidbox-with-python-sdk/Makefile b/aidbox-with-python-sdk/Makefile new file mode 100644 index 00000000..d6da9707 --- /dev/null +++ b/aidbox-with-python-sdk/Makefile @@ -0,0 +1,9 @@ +.PHONY: format-fix lint + +all: format-fix lint + +format-fix: + ruff format + +lint: + ruff check diff --git a/aidbox-with-python-sdk/README.md b/aidbox-with-python-sdk/README.md new file mode 100644 index 00000000..f1a8d756 --- /dev/null +++ b/aidbox-with-python-sdk/README.md @@ -0,0 +1,9 @@ +# Python SDK Example + +``` shell +cp .env.tpt .env +# manually add license to .env +docker compose up +poetry shell +python3 main.py +``` diff --git a/aidbox-with-python-sdk/patients.csv b/aidbox-with-python-sdk/data/patients.csv similarity index 100% rename from aidbox-with-python-sdk/patients.csv rename to aidbox-with-python-sdk/data/patients.csv diff --git a/aidbox-with-python-sdk/main.py b/aidbox-with-python-sdk/main.py index 5ddeff16..e390f50a 100644 --- a/aidbox-with-python-sdk/main.py +++ b/aidbox-with-python-sdk/main.py @@ -1,90 +1,131 @@ -from fhirpy import SyncFHIRClient -from typing import List, Optional, Literal, Annotated -from fhirpy.base.resource_protocol import ResourceProtocol -from pydantic import BaseModel as BaseModel_, Field, Extra -from datetime import datetime - -# Models -class BaseModel(BaseModel_): - class Config: - validate_assignment = True - allow_population_by_field_name = True - - def dict(self, *args, **kwargs): - by_alias = kwargs.pop('by_alias', True) - return super().dict(*args, **kwargs, by_alias=by_alias) - - -class HumanName(BaseModel): - use: Optional[str] = None - text: Optional[str] = None - given: Optional[List[str]] = None - family: Optional[str] = None - prefix: Optional[List[str]] = None - suffix: Optional[List[str]] = None +# ruff: noqa: E402 +from datetime import datetime -class Patient(BaseModel): - resourceType: str = 'Patient' - id: Optional[str] = None - gender: Optional[str] = None - name: Optional[List[HumanName]] = None - active: Optional[bool] = None - -client = SyncFHIRClient( - url="http://localhost:8888/", - authorization="Basic cm9vdDpzZWNyZXQ=", - # dump_resource=BaseModel.model_dump -) - -newpt = Patient( - name=[HumanName(given=['rabrab'], family='Bababa')], - active=True, - gender='female' -) -def csv_to_dict(file_path): - with open(file_path, mode='r') as file: +def read_csv_as_dict(file_path): + with open(file_path, mode="r") as file: lines = file.readlines() - keys = lines[0].strip().split(',') + keys = lines[0].strip().split(",") data = lines[1:] result = [] for line in data: - values = line.strip().split(',') + values = line.strip().split(",") result.append(dict(zip(keys, values))) return result -def dict_to_csv(data, file_path): - with open(file_path, mode='w') as file: + +def write_dict_as_csv(data, file_path): + with open(file_path, mode="w") as file: columns = data[0].keys() rows = [] for item in data: - rows.append(','.join([str(item[column]) for column in columns])) - file.write(','.join(columns) + '\n') - file.write('\n'.join(rows)) + rows.append(",".join([str(item[column]) for column in columns])) + file.write(",".join(columns) + "\n") + file.write("\n".join(rows)) + + +def now(): + return datetime.now().strftime("%Y-%m-%dT%H:%M:%S+00:00") + + +##################################################################### +# Use . Only Runtime + + +from fhirpy import SyncFHIRClient def import_data(client, file_path): - raw_data = csv_to_dict(file_path) - now = datetime.now().strftime('%Y-%m-%dT%H:%M:%S+00:00') + raw_data = read_csv_as_dict(file_path) for item in raw_data: - patient_to_update = client.resource("Patient", - name=[{'given': [item['given']], 'family': item['family']}], - gender=item['gender'], + patient_to_update = client.resource( + "Patient", + name=[{"given": [item["given"]], "family": item["family"]}], + gender=item["gender"], + ) + patient, is_created = ( + client.resources("Patient") + .search(given=item["given"], family=item["family"]) + .update(patient_to_update) + ) + patient_id = dict(patient)["id"] + print( + f"Patient {item [ 'given']} {item['family']} {'created' if is_created else 'updated'}. Id: {patient_id}" + ) + observation = client.resource( + "Observation", + status="final", + code={"text": "Body weight"}, + subject={"reference": f"Patient/{patient_id}"}, + valueQuantity={"value": int(item["weight"]), "unit": "kg"}, + effectiveDateTime=now(), ) - patient, is_created = client.resources("Patient").search(given=item['given'], family=item['family']).update(patient_to_update) - patient_id = dict(patient)['id'] - observation = client.resource("Observation", - status='final', - code={'text': 'Body weight'}, - subject={'reference': f'Patient/{patient_id}'}, - valueQuantity={'value':int(item['weight']), 'unit': 'kg'}, - effectiveDateTime=now, + observation.save() + print( + f"Obsetvation for {item['given']} {item['family']} created. Id: {observation.id}" ) -import_data(client, 'patients.csv') - # find id (new patient or existing) +client = SyncFHIRClient( + url="http://localhost:8888/", authorization="Basic cm9vdDpzZWNyZXQ=" +) + +# client.resource("Patient", name=[{"given": ["given"], "family": "family"}]).save() + +import_data(client, "data/patients.csv") + + +##################################################################### +# Use . With generated +# resource classes + + +# from fhirpy.base.resource_protocol import ResourceProtocol +# from pydantic import BaseModel as BaseModel_, Field, Extra +# from typing import List, Optional, Literal, Annotated + + +# # Models +# class BaseModel(BaseModel_): +# class Config: +# validate_assignment = True +# allow_population_by_field_name = True + +# def dict(self, *args, **kwargs): +# by_alias = kwargs.pop("by_alias", True) +# return super().dict(*args, **kwargs, by_alias=by_alias) + + +# class HumanName(BaseModel): +# use: Optional[str] = None +# text: Optional[str] = None +# given: Optional[List[str]] = None +# family: Optional[str] = None +# prefix: Optional[List[str]] = None +# suffix: Optional[List[str]] = None + + +# class Patient(BaseModel): +# resourceType: str = "Patient" +# id: Optional[str] = None +# gender: Optional[str] = None +# name: Optional[List[HumanName]] = None +# active: Optional[bool] = None + + +# client = SyncFHIRClient( +# url="http://localhost:8888/", +# authorization="Basic cm9vdDpzZWNyZXQ=", +# # dump_resource=BaseModel.model_dump +# ) + +# newpt = Patient( +# name=[HumanName(given=["rabrab"], family="Bababa")], active=True, gender="female" +# ) + + +# find id (new patient or existing) # patient = client.resources('Patient').search(name=f"{item['first_name']} {item['last_name']}").first() # patient = client.resource('patient', ) @@ -105,8 +146,6 @@ def import_data(client, file_path): # - Make comparison table between different SDK adoption levels. It should show to us sailing/growing points. - - # client.create(newpt) diff --git a/aidbox-with-python-sdk/poetry.lock b/aidbox-with-python-sdk/poetry.lock new file mode 100644 index 00000000..d8735369 --- /dev/null +++ b/aidbox-with-python-sdk/poetry.lock @@ -0,0 +1,782 @@ +# This file is automatically @generated by Poetry 1.8.4 and should not be changed by hand. + +[[package]] +name = "aiohappyeyeballs" +version = "2.4.4" +description = "Happy Eyeballs for asyncio" +optional = false +python-versions = ">=3.8" +files = [ + {file = "aiohappyeyeballs-2.4.4-py3-none-any.whl", hash = "sha256:a980909d50efcd44795c4afeca523296716d50cd756ddca6af8c65b996e27de8"}, + {file = "aiohappyeyeballs-2.4.4.tar.gz", hash = "sha256:5fdd7d87889c63183afc18ce9271f9b0a7d32c2303e394468dd45d514a757745"}, +] + +[[package]] +name = "aiohttp" +version = "3.11.10" +description = "Async http client/server framework (asyncio)" +optional = false +python-versions = ">=3.9" +files = [ + {file = "aiohttp-3.11.10-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cbad88a61fa743c5d283ad501b01c153820734118b65aee2bd7dbb735475ce0d"}, + {file = "aiohttp-3.11.10-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:80886dac673ceaef499de2f393fc80bb4481a129e6cb29e624a12e3296cc088f"}, + {file = "aiohttp-3.11.10-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:61b9bae80ed1f338c42f57c16918853dc51775fb5cb61da70d590de14d8b5fb4"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9e2e576caec5c6a6b93f41626c9c02fc87cd91538b81a3670b2e04452a63def6"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02c13415b5732fb6ee7ff64583a5e6ed1c57aa68f17d2bda79c04888dfdc2769"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4cfce37f31f20800a6a6620ce2cdd6737b82e42e06e6e9bd1b36f546feb3c44f"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3bbbfff4c679c64e6e23cb213f57cc2c9165c9a65d63717108a644eb5a7398df"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49c7dbbc1a559ae14fc48387a115b7d4bbc84b4a2c3b9299c31696953c2a5219"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:68386d78743e6570f054fe7949d6cb37ef2b672b4d3405ce91fafa996f7d9b4d"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9ef405356ba989fb57f84cac66f7b0260772836191ccefbb987f414bcd2979d9"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:5d6958671b296febe7f5f859bea581a21c1d05430d1bbdcf2b393599b1cdce77"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:99b7920e7165be5a9e9a3a7f1b680f06f68ff0d0328ff4079e5163990d046767"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0dc49f42422163efb7e6f1df2636fe3db72713f6cd94688e339dbe33fe06d61d"}, + {file = "aiohttp-3.11.10-cp310-cp310-win32.whl", hash = "sha256:40d1c7a7f750b5648642586ba7206999650208dbe5afbcc5284bcec6579c9b91"}, + {file = "aiohttp-3.11.10-cp310-cp310-win_amd64.whl", hash = "sha256:68ff6f48b51bd78ea92b31079817aff539f6c8fc80b6b8d6ca347d7c02384e33"}, + {file = "aiohttp-3.11.10-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:77c4aa15a89847b9891abf97f3d4048f3c2d667e00f8a623c89ad2dccee6771b"}, + {file = "aiohttp-3.11.10-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:909af95a72cedbefe5596f0bdf3055740f96c1a4baa0dd11fd74ca4de0b4e3f1"}, + {file = "aiohttp-3.11.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:386fbe79863eb564e9f3615b959e28b222259da0c48fd1be5929ac838bc65683"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3de34936eb1a647aa919655ff8d38b618e9f6b7f250cc19a57a4bf7fd2062b6d"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c9527819b29cd2b9f52033e7fb9ff08073df49b4799c89cb5754624ecd98299"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65a96e3e03300b41f261bbfd40dfdbf1c301e87eab7cd61c054b1f2e7c89b9e8"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98f5635f7b74bcd4f6f72fcd85bea2154b323a9f05226a80bc7398d0c90763b0"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:03b6002e20938fc6ee0918c81d9e776bebccc84690e2b03ed132331cca065ee5"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6362cc6c23c08d18ddbf0e8c4d5159b5df74fea1a5278ff4f2c79aed3f4e9f46"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3691ed7726fef54e928fe26344d930c0c8575bc968c3e239c2e1a04bd8cf7838"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:31d5093d3acd02b31c649d3a69bb072d539d4c7659b87caa4f6d2bcf57c2fa2b"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:8b3cf2dc0f0690a33f2d2b2cb15db87a65f1c609f53c37e226f84edb08d10f52"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:fbbaea811a2bba171197b08eea288b9402faa2bab2ba0858eecdd0a4105753a3"}, + {file = "aiohttp-3.11.10-cp311-cp311-win32.whl", hash = "sha256:4b2c7ac59c5698a7a8207ba72d9e9c15b0fc484a560be0788b31312c2c5504e4"}, + {file = "aiohttp-3.11.10-cp311-cp311-win_amd64.whl", hash = "sha256:974d3a2cce5fcfa32f06b13ccc8f20c6ad9c51802bb7f829eae8a1845c4019ec"}, + {file = "aiohttp-3.11.10-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:b78f053a7ecfc35f0451d961dacdc671f4bcbc2f58241a7c820e9d82559844cf"}, + {file = "aiohttp-3.11.10-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ab7485222db0959a87fbe8125e233b5a6f01f4400785b36e8a7878170d8c3138"}, + {file = "aiohttp-3.11.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:cf14627232dfa8730453752e9cdc210966490992234d77ff90bc8dc0dce361d5"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:076bc454a7e6fd646bc82ea7f98296be0b1219b5e3ef8a488afbdd8e81fbac50"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:482cafb7dc886bebeb6c9ba7925e03591a62ab34298ee70d3dd47ba966370d2c"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bf3d1a519a324af764a46da4115bdbd566b3c73fb793ffb97f9111dbc684fc4d"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24213ba85a419103e641e55c27dc7ff03536c4873470c2478cce3311ba1eee7b"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b99acd4730ad1b196bfb03ee0803e4adac371ae8efa7e1cbc820200fc5ded109"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:14cdb5a9570be5a04eec2ace174a48ae85833c2aadc86de68f55541f66ce42ab"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:7e97d622cb083e86f18317282084bc9fbf261801b0192c34fe4b1febd9f7ae69"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:012f176945af138abc10c4a48743327a92b4ca9adc7a0e078077cdb5dbab7be0"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44224d815853962f48fe124748227773acd9686eba6dc102578defd6fc99e8d9"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c87bf31b7fdab94ae3adbe4a48e711bfc5f89d21cf4c197e75561def39e223bc"}, + {file = "aiohttp-3.11.10-cp312-cp312-win32.whl", hash = "sha256:06a8e2ee1cbac16fe61e51e0b0c269400e781b13bcfc33f5425912391a542985"}, + {file = "aiohttp-3.11.10-cp312-cp312-win_amd64.whl", hash = "sha256:be2b516f56ea883a3e14dda17059716593526e10fb6303189aaf5503937db408"}, + {file = "aiohttp-3.11.10-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8cc5203b817b748adccb07f36390feb730b1bc5f56683445bfe924fc270b8816"}, + {file = "aiohttp-3.11.10-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5ef359ebc6949e3a34c65ce20230fae70920714367c63afd80ea0c2702902ccf"}, + {file = "aiohttp-3.11.10-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9bca390cb247dbfaec3c664326e034ef23882c3f3bfa5fbf0b56cad0320aaca5"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:811f23b3351ca532af598405db1093f018edf81368e689d1b508c57dcc6b6a32"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddf5f7d877615f6a1e75971bfa5ac88609af3b74796ff3e06879e8422729fd01"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6ab29b8a0beb6f8eaf1e5049252cfe74adbaafd39ba91e10f18caeb0e99ffb34"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c49a76c1038c2dd116fa443eba26bbb8e6c37e924e2513574856de3b6516be99"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f3dc0e330575f5b134918976a645e79adf333c0a1439dcf6899a80776c9ab39"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:efb15a17a12497685304b2d976cb4939e55137df7b09fa53f1b6a023f01fcb4e"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:db1d0b28fcb7f1d35600150c3e4b490775251dea70f894bf15c678fdd84eda6a"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:15fccaf62a4889527539ecb86834084ecf6e9ea70588efde86e8bc775e0e7542"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:593c114a2221444f30749cc5e5f4012488f56bd14de2af44fe23e1e9894a9c60"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7852bbcb4d0d2f0c4d583f40c3bc750ee033265d80598d0f9cb6f372baa6b836"}, + {file = "aiohttp-3.11.10-cp313-cp313-win32.whl", hash = "sha256:65e55ca7debae8faaffee0ebb4b47a51b4075f01e9b641c31e554fd376595c6c"}, + {file = "aiohttp-3.11.10-cp313-cp313-win_amd64.whl", hash = "sha256:beb39a6d60a709ae3fb3516a1581777e7e8b76933bb88c8f4420d875bb0267c6"}, + {file = "aiohttp-3.11.10-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0580f2e12de2138f34debcd5d88894786453a76e98febaf3e8fe5db62d01c9bf"}, + {file = "aiohttp-3.11.10-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a55d2ad345684e7c3dd2c20d2f9572e9e1d5446d57200ff630e6ede7612e307f"}, + {file = "aiohttp-3.11.10-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:04814571cb72d65a6899db6099e377ed00710bf2e3eafd2985166f2918beaf59"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e44a9a3c053b90c6f09b1bb4edd880959f5328cf63052503f892c41ea786d99f"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:502a1464ccbc800b4b1995b302efaf426e8763fadf185e933c2931df7db9a199"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:613e5169f8ae77b1933e42e418a95931fb4867b2991fc311430b15901ed67079"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cca22a61b7fe45da8fc73c3443150c3608750bbe27641fc7558ec5117b27fdf"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:86a5dfcc39309470bd7b68c591d84056d195428d5d2e0b5ccadfbaf25b026ebc"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:77ae58586930ee6b2b6f696c82cf8e78c8016ec4795c53e36718365f6959dc82"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:78153314f26d5abef3239b4a9af20c229c6f3ecb97d4c1c01b22c4f87669820c"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:98283b94cc0e11c73acaf1c9698dea80c830ca476492c0fe2622bd931f34b487"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:53bf2097e05c2accc166c142a2090e4c6fd86581bde3fd9b2d3f9e93dda66ac1"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c5532f0441fc09c119e1dca18fbc0687e64fbeb45aa4d6a87211ceaee50a74c4"}, + {file = "aiohttp-3.11.10-cp39-cp39-win32.whl", hash = "sha256:47ad15a65fb41c570cd0ad9a9ff8012489e68176e7207ec7b82a0940dddfd8be"}, + {file = "aiohttp-3.11.10-cp39-cp39-win_amd64.whl", hash = "sha256:c6b9e6d7e41656d78e37ce754813fa44b455c3d0d0dced2a047def7dc5570b74"}, + {file = "aiohttp-3.11.10.tar.gz", hash = "sha256:b1fc6b45010a8d0ff9e88f9f2418c6fd408c99c211257334aff41597ebece42e"}, +] + +[package.dependencies] +aiohappyeyeballs = ">=2.3.0" +aiosignal = ">=1.1.2" +attrs = ">=17.3.0" +frozenlist = ">=1.1.1" +multidict = ">=4.5,<7.0" +propcache = ">=0.2.0" +yarl = ">=1.17.0,<2.0" + +[package.extras] +speedups = ["Brotli", "aiodns (>=3.2.0)", "brotlicffi"] + +[[package]] +name = "aiosignal" +version = "1.3.1" +description = "aiosignal: a list of registered asynchronous callbacks" +optional = false +python-versions = ">=3.7" +files = [ + {file = "aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17"}, + {file = "aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc"}, +] + +[package.dependencies] +frozenlist = ">=1.1.0" + +[[package]] +name = "attrs" +version = "24.2.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, + {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, +] + +[package.extras] +benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] + +[[package]] +name = "certifi" +version = "2024.8.30" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, + {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, + {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, + {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, +] + +[[package]] +name = "fhirpy" +version = "2.0.15" +description = "FHIR client for python" +optional = false +python-versions = ">=3.9" +files = [ + {file = "fhirpy-2.0.15-py3-none-any.whl", hash = "sha256:0de65918546c41114f132baba106babb36f5ca6e1c282bb88ea4db513a18dfa7"}, + {file = "fhirpy-2.0.15.tar.gz", hash = "sha256:8718574b15735b21e2b04e36b2d87318875e5c41f17e6bada75a59ae446dc8eb"}, +] + +[package.dependencies] +aiohttp = ">=3.6.3" +pytz = "*" +requests = ">=2.25.1" +typing-extensions = "*" + +[package.extras] +test = ["pytest (>=6.2.4)", "pytest-asyncio (>=0.15.1)", "responses (>=0.13.3)"] + +[[package]] +name = "frozenlist" +version = "1.5.0" +description = "A list-like structure which implements collections.abc.MutableSequence" +optional = false +python-versions = ">=3.8" +files = [ + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5b6a66c18b5b9dd261ca98dffcb826a525334b2f29e7caa54e182255c5f6a65a"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d1b3eb7b05ea246510b43a7e53ed1653e55c2121019a97e60cad7efb881a97bb"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:15538c0cbf0e4fa11d1e3a71f823524b0c46299aed6e10ebb4c2089abd8c3bec"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e79225373c317ff1e35f210dd5f1344ff31066ba8067c307ab60254cd3a78ad5"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9272fa73ca71266702c4c3e2d4a28553ea03418e591e377a03b8e3659d94fa76"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:498524025a5b8ba81695761d78c8dd7382ac0b052f34e66939c42df860b8ff17"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92b5278ed9d50fe610185ecd23c55d8b307d75ca18e94c0e7de328089ac5dcba"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f3c8c1dacd037df16e85227bac13cca58c30da836c6f936ba1df0c05d046d8d"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f2ac49a9bedb996086057b75bf93538240538c6d9b38e57c82d51f75a73409d2"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e66cc454f97053b79c2ab09c17fbe3c825ea6b4de20baf1be28919460dd7877f"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:5a3ba5f9a0dfed20337d3e966dc359784c9f96503674c2faf015f7fe8e96798c"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6321899477db90bdeb9299ac3627a6a53c7399c8cd58d25da094007402b039ab"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:76e4753701248476e6286f2ef492af900ea67d9706a0155335a40ea21bf3b2f5"}, + {file = "frozenlist-1.5.0-cp310-cp310-win32.whl", hash = "sha256:977701c081c0241d0955c9586ffdd9ce44f7a7795df39b9151cd9a6fd0ce4cfb"}, + {file = "frozenlist-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:189f03b53e64144f90990d29a27ec4f7997d91ed3d01b51fa39d2dbe77540fd4"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fd74520371c3c4175142d02a976aee0b4cb4a7cc912a60586ffd8d5929979b30"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2f3f7a0fbc219fb4455264cae4d9f01ad41ae6ee8524500f381de64ffaa077d5"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f47c9c9028f55a04ac254346e92977bf0f166c483c74b4232bee19a6697e4778"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0996c66760924da6e88922756d99b47512a71cfd45215f3570bf1e0b694c206a"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2fe128eb4edeabe11896cb6af88fca5346059f6c8d807e3b910069f39157869"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a8ea951bbb6cacd492e3948b8da8c502a3f814f5d20935aae74b5df2b19cf3d"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:de537c11e4aa01d37db0d403b57bd6f0546e71a82347a97c6a9f0dcc532b3a45"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c2623347b933fcb9095841f1cc5d4ff0b278addd743e0e966cb3d460278840d"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cee6798eaf8b1416ef6909b06f7dc04b60755206bddc599f52232606e18179d3"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f5f9da7f5dbc00a604fe74aa02ae7c98bcede8a3b8b9666f9f86fc13993bc71a"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:90646abbc7a5d5c7c19461d2e3eeb76eb0b204919e6ece342feb6032c9325ae9"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:bdac3c7d9b705d253b2ce370fde941836a5f8b3c5c2b8fd70940a3ea3af7f4f2"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:03d33c2ddbc1816237a67f66336616416e2bbb6beb306e5f890f2eb22b959cdf"}, + {file = "frozenlist-1.5.0-cp311-cp311-win32.whl", hash = "sha256:237f6b23ee0f44066219dae14c70ae38a63f0440ce6750f868ee08775073f942"}, + {file = "frozenlist-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:0cc974cc93d32c42e7b0f6cf242a6bd941c57c61b618e78b6c0a96cb72788c1d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:31115ba75889723431aa9a4e77d5f398f5cf976eea3bdf61749731f62d4a4a21"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7437601c4d89d070eac8323f121fcf25f88674627505334654fd027b091db09d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7948140d9f8ece1745be806f2bfdf390127cf1a763b925c4a805c603df5e697e"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:feeb64bc9bcc6b45c6311c9e9b99406660a9c05ca8a5b30d14a78555088b0b3a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:683173d371daad49cffb8309779e886e59c2f369430ad28fe715f66d08d4ab1a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7d57d8f702221405a9d9b40f9da8ac2e4a1a8b5285aac6100f3393675f0a85ee"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30c72000fbcc35b129cb09956836c7d7abf78ab5416595e4857d1cae8d6251a6"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:000a77d6034fbad9b6bb880f7ec073027908f1b40254b5d6f26210d2dab1240e"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5d7f5a50342475962eb18b740f3beecc685a15b52c91f7d975257e13e029eca9"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:87f724d055eb4785d9be84e9ebf0f24e392ddfad00b3fe036e43f489fafc9039"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:6e9080bb2fb195a046e5177f10d9d82b8a204c0736a97a153c2466127de87784"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9b93d7aaa36c966fa42efcaf716e6b3900438632a626fb09c049f6a2f09fc631"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:52ef692a4bc60a6dd57f507429636c2af8b6046db8b31b18dac02cbc8f507f7f"}, + {file = "frozenlist-1.5.0-cp312-cp312-win32.whl", hash = "sha256:29d94c256679247b33a3dc96cce0f93cbc69c23bf75ff715919332fdbb6a32b8"}, + {file = "frozenlist-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:8969190d709e7c48ea386db202d708eb94bdb29207a1f269bab1196ce0dcca1f"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:7a1a048f9215c90973402e26c01d1cff8a209e1f1b53f72b95c13db61b00f953"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dd47a5181ce5fcb463b5d9e17ecfdb02b678cca31280639255ce9d0e5aa67af0"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1431d60b36d15cda188ea222033eec8e0eab488f39a272461f2e6d9e1a8e63c2"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6482a5851f5d72767fbd0e507e80737f9c8646ae7fd303def99bfe813f76cf7f"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44c49271a937625619e862baacbd037a7ef86dd1ee215afc298a417ff3270608"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:12f78f98c2f1c2429d42e6a485f433722b0061d5c0b0139efa64f396efb5886b"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce3aa154c452d2467487765e3adc730a8c153af77ad84096bc19ce19a2400840"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b7dc0c4338e6b8b091e8faf0db3168a37101943e687f373dce00959583f7439"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45e0896250900b5aa25180f9aec243e84e92ac84bd4a74d9ad4138ef3f5c97de"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:561eb1c9579d495fddb6da8959fd2a1fca2c6d060d4113f5844b433fc02f2641"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:df6e2f325bfee1f49f81aaac97d2aa757c7646534a06f8f577ce184afe2f0a9e"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:140228863501b44b809fb39ec56b5d4071f4d0aa6d216c19cbb08b8c5a7eadb9"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7707a25d6a77f5d27ea7dc7d1fc608aa0a478193823f88511ef5e6b8a48f9d03"}, + {file = "frozenlist-1.5.0-cp313-cp313-win32.whl", hash = "sha256:31a9ac2b38ab9b5a8933b693db4939764ad3f299fcaa931a3e605bc3460e693c"}, + {file = "frozenlist-1.5.0-cp313-cp313-win_amd64.whl", hash = "sha256:11aabdd62b8b9c4b84081a3c246506d1cddd2dd93ff0ad53ede5defec7886b28"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:dd94994fc91a6177bfaafd7d9fd951bc8689b0a98168aa26b5f543868548d3ca"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2d0da8bbec082bf6bf18345b180958775363588678f64998c2b7609e34719b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:73f2e31ea8dd7df61a359b731716018c2be196e5bb3b74ddba107f694fbd7604"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:828afae9f17e6de596825cf4228ff28fbdf6065974e5ac1410cecc22f699d2b3"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1577515d35ed5649d52ab4319db757bb881ce3b2b796d7283e6634d99ace307"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2150cc6305a2c2ab33299453e2968611dacb970d2283a14955923062c8d00b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a72b7a6e3cd2725eff67cd64c8f13335ee18fc3c7befc05aed043d24c7b9ccb9"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c16d2fa63e0800723139137d667e1056bee1a1cf7965153d2d104b62855e9b99"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:17dcc32fc7bda7ce5875435003220a457bcfa34ab7924a49a1c19f55b6ee185c"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:97160e245ea33d8609cd2b8fd997c850b56db147a304a262abc2b3be021a9171"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:f1e6540b7fa044eee0bb5111ada694cf3dc15f2b0347ca125ee9ca984d5e9e6e"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:91d6c171862df0a6c61479d9724f22efb6109111017c87567cfeb7b5d1449fdf"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c1fac3e2ace2eb1052e9f7c7db480818371134410e1f5c55d65e8f3ac6d1407e"}, + {file = "frozenlist-1.5.0-cp38-cp38-win32.whl", hash = "sha256:b97f7b575ab4a8af9b7bc1d2ef7f29d3afee2226bd03ca3875c16451ad5a7723"}, + {file = "frozenlist-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:374ca2dabdccad8e2a76d40b1d037f5bd16824933bf7bcea3e59c891fd4a0923"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9bbcdfaf4af7ce002694a4e10a0159d5a8d20056a12b05b45cea944a4953f972"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1893f948bf6681733aaccf36c5232c231e3b5166d607c5fa77773611df6dc336"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2b5e23253bb709ef57a8e95e6ae48daa9ac5f265637529e4ce6b003a37b2621f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f253985bb515ecd89629db13cb58d702035ecd8cfbca7d7a7e29a0e6d39af5f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04a5c6babd5e8fb7d3c871dc8b321166b80e41b637c31a995ed844a6139942b6"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fe0f1c29ba24ba6ff6abf688cb0b7cf1efab6b6aa6adc55441773c252f7411"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:226d72559fa19babe2ccd920273e767c96a49b9d3d38badd7c91a0fdeda8ea08"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b731db116ab3aedec558573c1a5eec78822b32292fe4f2f0345b7f697745c2"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:366d8f93e3edfe5a918c874702f78faac300209a4d5bf38352b2c1bdc07a766d"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1b96af8c582b94d381a1c1f51ffaedeb77c821c690ea5f01da3d70a487dd0a9b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c03eff4a41bd4e38415cbed054bbaff4a075b093e2394b6915dca34a40d1e38b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:50cf5e7ee9b98f22bdecbabf3800ae78ddcc26e4a435515fc72d97903e8488e0"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e76bfbc72353269c44e0bc2cfe171900fbf7f722ad74c9a7b638052afe6a00c"}, + {file = "frozenlist-1.5.0-cp39-cp39-win32.whl", hash = "sha256:666534d15ba8f0fda3f53969117383d5dc021266b3c1a42c9ec4855e4b58b9d3"}, + {file = "frozenlist-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:5c28f4b5dbef8a0d8aad0d4de24d1e9e981728628afaf4ea0792f5d0939372f0"}, + {file = "frozenlist-1.5.0-py3-none-any.whl", hash = "sha256:d994863bba198a4a518b467bb971c56e1db3f180a25c6cf7bb1949c267f748c3"}, + {file = "frozenlist-1.5.0.tar.gz", hash = "sha256:81d5af29e61b9c8348e876d442253723928dce6433e0e76cd925cd83f1b4b817"}, +] + +[[package]] +name = "idna" +version = "3.10" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.6" +files = [ + {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, + {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, +] + +[package.extras] +all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] + +[[package]] +name = "multidict" +version = "6.1.0" +description = "multidict implementation" +optional = false +python-versions = ">=3.8" +files = [ + {file = "multidict-6.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3380252550e372e8511d49481bd836264c009adb826b23fefcc5dd3c69692f60"}, + {file = "multidict-6.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:99f826cbf970077383d7de805c0681799491cb939c25450b9b5b3ced03ca99f1"}, + {file = "multidict-6.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a114d03b938376557927ab23f1e950827c3b893ccb94b62fd95d430fd0e5cf53"}, + {file = "multidict-6.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1c416351ee6271b2f49b56ad7f308072f6f44b37118d69c2cad94f3fa8a40d5"}, + {file = "multidict-6.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6b5d83030255983181005e6cfbac1617ce9746b219bc2aad52201ad121226581"}, + {file = "multidict-6.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3e97b5e938051226dc025ec80980c285b053ffb1e25a3db2a3aa3bc046bf7f56"}, + {file = "multidict-6.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d618649d4e70ac6efcbba75be98b26ef5078faad23592f9b51ca492953012429"}, + {file = "multidict-6.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10524ebd769727ac77ef2278390fb0068d83f3acb7773792a5080f2b0abf7748"}, + {file = "multidict-6.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ff3827aef427c89a25cc96ded1759271a93603aba9fb977a6d264648ebf989db"}, + {file = "multidict-6.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:06809f4f0f7ab7ea2cabf9caca7d79c22c0758b58a71f9d32943ae13c7ace056"}, + {file = "multidict-6.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:f179dee3b863ab1c59580ff60f9d99f632f34ccb38bf67a33ec6b3ecadd0fd76"}, + {file = "multidict-6.1.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:aaed8b0562be4a0876ee3b6946f6869b7bcdb571a5d1496683505944e268b160"}, + {file = "multidict-6.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3c8b88a2ccf5493b6c8da9076fb151ba106960a2df90c2633f342f120751a9e7"}, + {file = "multidict-6.1.0-cp310-cp310-win32.whl", hash = "sha256:4a9cb68166a34117d6646c0023c7b759bf197bee5ad4272f420a0141d7eb03a0"}, + {file = "multidict-6.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:20b9b5fbe0b88d0bdef2012ef7dee867f874b72528cf1d08f1d59b0e3850129d"}, + {file = "multidict-6.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3efe2c2cb5763f2f1b275ad2bf7a287d3f7ebbef35648a9726e3b69284a4f3d6"}, + {file = "multidict-6.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c7053d3b0353a8b9de430a4f4b4268ac9a4fb3481af37dfe49825bf45ca24156"}, + {file = "multidict-6.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:27e5fc84ccef8dfaabb09d82b7d179c7cf1a3fbc8a966f8274fcb4ab2eb4cadb"}, + {file = "multidict-6.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e2b90b43e696f25c62656389d32236e049568b39320e2735d51f08fd362761b"}, + {file = "multidict-6.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d83a047959d38a7ff552ff94be767b7fd79b831ad1cd9920662db05fec24fe72"}, + {file = "multidict-6.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1a9dd711d0877a1ece3d2e4fea11a8e75741ca21954c919406b44e7cf971304"}, + {file = "multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec2abea24d98246b94913b76a125e855eb5c434f7c46546046372fe60f666351"}, + {file = "multidict-6.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4867cafcbc6585e4b678876c489b9273b13e9fff9f6d6d66add5e15d11d926cb"}, + {file = "multidict-6.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5b48204e8d955c47c55b72779802b219a39acc3ee3d0116d5080c388970b76e3"}, + {file = "multidict-6.1.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:d8fff389528cad1618fb4b26b95550327495462cd745d879a8c7c2115248e399"}, + {file = "multidict-6.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:a7a9541cd308eed5e30318430a9c74d2132e9a8cb46b901326272d780bf2d423"}, + {file = "multidict-6.1.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:da1758c76f50c39a2efd5e9859ce7d776317eb1dd34317c8152ac9251fc574a3"}, + {file = "multidict-6.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c943a53e9186688b45b323602298ab727d8865d8c9ee0b17f8d62d14b56f0753"}, + {file = "multidict-6.1.0-cp311-cp311-win32.whl", hash = "sha256:90f8717cb649eea3504091e640a1b8568faad18bd4b9fcd692853a04475a4b80"}, + {file = "multidict-6.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:82176036e65644a6cc5bd619f65f6f19781e8ec2e5330f51aa9ada7504cc1926"}, + {file = "multidict-6.1.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b04772ed465fa3cc947db808fa306d79b43e896beb677a56fb2347ca1a49c1fa"}, + {file = "multidict-6.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6180c0ae073bddeb5a97a38c03f30c233e0a4d39cd86166251617d1bbd0af436"}, + {file = "multidict-6.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:071120490b47aa997cca00666923a83f02c7fbb44f71cf7f136df753f7fa8761"}, + {file = "multidict-6.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50b3a2710631848991d0bf7de077502e8994c804bb805aeb2925a981de58ec2e"}, + {file = "multidict-6.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b58c621844d55e71c1b7f7c498ce5aa6985d743a1a59034c57a905b3f153c1ef"}, + {file = "multidict-6.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55b6d90641869892caa9ca42ff913f7ff1c5ece06474fbd32fb2cf6834726c95"}, + {file = "multidict-6.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b820514bfc0b98a30e3d85462084779900347e4d49267f747ff54060cc33925"}, + {file = "multidict-6.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10a9b09aba0c5b48c53761b7c720aaaf7cf236d5fe394cd399c7ba662d5f9966"}, + {file = "multidict-6.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1e16bf3e5fc9f44632affb159d30a437bfe286ce9e02754759be5536b169b305"}, + {file = "multidict-6.1.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:76f364861c3bfc98cbbcbd402d83454ed9e01a5224bb3a28bf70002a230f73e2"}, + {file = "multidict-6.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:820c661588bd01a0aa62a1283f20d2be4281b086f80dad9e955e690c75fb54a2"}, + {file = "multidict-6.1.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:0e5f362e895bc5b9e67fe6e4ded2492d8124bdf817827f33c5b46c2fe3ffaca6"}, + {file = "multidict-6.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3ec660d19bbc671e3a6443325f07263be452c453ac9e512f5eb935e7d4ac28b3"}, + {file = "multidict-6.1.0-cp312-cp312-win32.whl", hash = "sha256:58130ecf8f7b8112cdb841486404f1282b9c86ccb30d3519faf301b2e5659133"}, + {file = "multidict-6.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:188215fc0aafb8e03341995e7c4797860181562380f81ed0a87ff455b70bf1f1"}, + {file = "multidict-6.1.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:d569388c381b24671589335a3be6e1d45546c2988c2ebe30fdcada8457a31008"}, + {file = "multidict-6.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:052e10d2d37810b99cc170b785945421141bf7bb7d2f8799d431e7db229c385f"}, + {file = "multidict-6.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f90c822a402cb865e396a504f9fc8173ef34212a342d92e362ca498cad308e28"}, + {file = "multidict-6.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b225d95519a5bf73860323e633a664b0d85ad3d5bede6d30d95b35d4dfe8805b"}, + {file = "multidict-6.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:23bfd518810af7de1116313ebd9092cb9aa629beb12f6ed631ad53356ed6b86c"}, + {file = "multidict-6.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c09fcfdccdd0b57867577b719c69e347a436b86cd83747f179dbf0cc0d4c1f3"}, + {file = "multidict-6.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf6bea52ec97e95560af5ae576bdac3aa3aae0b6758c6efa115236d9e07dae44"}, + {file = "multidict-6.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57feec87371dbb3520da6192213c7d6fc892d5589a93db548331954de8248fd2"}, + {file = "multidict-6.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0c3f390dc53279cbc8ba976e5f8035eab997829066756d811616b652b00a23a3"}, + {file = "multidict-6.1.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:59bfeae4b25ec05b34f1956eaa1cb38032282cd4dfabc5056d0a1ec4d696d3aa"}, + {file = "multidict-6.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:b2f59caeaf7632cc633b5cf6fc449372b83bbdf0da4ae04d5be36118e46cc0aa"}, + {file = "multidict-6.1.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:37bb93b2178e02b7b618893990941900fd25b6b9ac0fa49931a40aecdf083fe4"}, + {file = "multidict-6.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4e9f48f58c2c523d5a06faea47866cd35b32655c46b443f163d08c6d0ddb17d6"}, + {file = "multidict-6.1.0-cp313-cp313-win32.whl", hash = "sha256:3a37ffb35399029b45c6cc33640a92bef403c9fd388acce75cdc88f58bd19a81"}, + {file = "multidict-6.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:e9aa71e15d9d9beaad2c6b9319edcdc0a49a43ef5c0a4c8265ca9ee7d6c67774"}, + {file = "multidict-6.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:db7457bac39421addd0c8449933ac32d8042aae84a14911a757ae6ca3eef1392"}, + {file = "multidict-6.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d094ddec350a2fb899fec68d8353c78233debde9b7d8b4beeafa70825f1c281a"}, + {file = "multidict-6.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5845c1fd4866bb5dd3125d89b90e57ed3138241540897de748cdf19de8a2fca2"}, + {file = "multidict-6.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9079dfc6a70abe341f521f78405b8949f96db48da98aeb43f9907f342f627cdc"}, + {file = "multidict-6.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3914f5aaa0f36d5d60e8ece6a308ee1c9784cd75ec8151062614657a114c4478"}, + {file = "multidict-6.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c08be4f460903e5a9d0f76818db3250f12e9c344e79314d1d570fc69d7f4eae4"}, + {file = "multidict-6.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d093be959277cb7dee84b801eb1af388b6ad3ca6a6b6bf1ed7585895789d027d"}, + {file = "multidict-6.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3702ea6872c5a2a4eeefa6ffd36b042e9773f05b1f37ae3ef7264b1163c2dcf6"}, + {file = "multidict-6.1.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:2090f6a85cafc5b2db085124d752757c9d251548cedabe9bd31afe6363e0aff2"}, + {file = "multidict-6.1.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:f67f217af4b1ff66c68a87318012de788dd95fcfeb24cc889011f4e1c7454dfd"}, + {file = "multidict-6.1.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:189f652a87e876098bbc67b4da1049afb5f5dfbaa310dd67c594b01c10388db6"}, + {file = "multidict-6.1.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:6bb5992037f7a9eff7991ebe4273ea7f51f1c1c511e6a2ce511d0e7bdb754492"}, + {file = "multidict-6.1.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:ac10f4c2b9e770c4e393876e35a7046879d195cd123b4f116d299d442b335bcd"}, + {file = "multidict-6.1.0-cp38-cp38-win32.whl", hash = "sha256:e27bbb6d14416713a8bd7aaa1313c0fc8d44ee48d74497a0ff4c3a1b6ccb5167"}, + {file = "multidict-6.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:22f3105d4fb15c8f57ff3959a58fcab6ce36814486500cd7485651230ad4d4ef"}, + {file = "multidict-6.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4e18b656c5e844539d506a0a06432274d7bd52a7487e6828c63a63d69185626c"}, + {file = "multidict-6.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a185f876e69897a6f3325c3f19f26a297fa058c5e456bfcff8015e9a27e83ae1"}, + {file = "multidict-6.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ab7c4ceb38d91570a650dba194e1ca87c2b543488fe9309b4212694174fd539c"}, + {file = "multidict-6.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e617fb6b0b6953fffd762669610c1c4ffd05632c138d61ac7e14ad187870669c"}, + {file = "multidict-6.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:16e5f4bf4e603eb1fdd5d8180f1a25f30056f22e55ce51fb3d6ad4ab29f7d96f"}, + {file = "multidict-6.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c035da3f544b1882bac24115f3e2e8760f10a0107614fc9839fd232200b875"}, + {file = "multidict-6.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:957cf8e4b6e123a9eea554fa7ebc85674674b713551de587eb318a2df3e00255"}, + {file = "multidict-6.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:483a6aea59cb89904e1ceabd2b47368b5600fb7de78a6e4a2c2987b2d256cf30"}, + {file = "multidict-6.1.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:87701f25a2352e5bf7454caa64757642734da9f6b11384c1f9d1a8e699758057"}, + {file = "multidict-6.1.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:682b987361e5fd7a139ed565e30d81fd81e9629acc7d925a205366877d8c8657"}, + {file = "multidict-6.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ce2186a7df133a9c895dea3331ddc5ddad42cdd0d1ea2f0a51e5d161e4762f28"}, + {file = "multidict-6.1.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:9f636b730f7e8cb19feb87094949ba54ee5357440b9658b2a32a5ce4bce53972"}, + {file = "multidict-6.1.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:73eae06aa53af2ea5270cc066dcaf02cc60d2994bbb2c4ef5764949257d10f43"}, + {file = "multidict-6.1.0-cp39-cp39-win32.whl", hash = "sha256:1ca0083e80e791cffc6efce7660ad24af66c8d4079d2a750b29001b53ff59ada"}, + {file = "multidict-6.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:aa466da5b15ccea564bdab9c89175c762bc12825f4659c11227f515cee76fa4a"}, + {file = "multidict-6.1.0-py3-none-any.whl", hash = "sha256:48e171e52d1c4d33888e529b999e5900356b9ae588c2f09a52dcefb158b27506"}, + {file = "multidict-6.1.0.tar.gz", hash = "sha256:22ae2ebf9b0c69d206c003e2f6a914ea33f0a932d4aa16f236afc049d9958f4a"}, +] + +[[package]] +name = "propcache" +version = "0.2.1" +description = "Accelerated property cache" +optional = false +python-versions = ">=3.9" +files = [ + {file = "propcache-0.2.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6b3f39a85d671436ee3d12c017f8fdea38509e4f25b28eb25877293c98c243f6"}, + {file = "propcache-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d51fbe4285d5db5d92a929e3e21536ea3dd43732c5b177c7ef03f918dff9f2"}, + {file = "propcache-0.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6445804cf4ec763dc70de65a3b0d9954e868609e83850a47ca4f0cb64bd79fea"}, + {file = "propcache-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9479aa06a793c5aeba49ce5c5692ffb51fcd9a7016e017d555d5e2b0045d212"}, + {file = "propcache-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d9631c5e8b5b3a0fda99cb0d29c18133bca1e18aea9effe55adb3da1adef80d3"}, + {file = "propcache-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3156628250f46a0895f1f36e1d4fbe062a1af8718ec3ebeb746f1d23f0c5dc4d"}, + {file = "propcache-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b6fb63ae352e13748289f04f37868099e69dba4c2b3e271c46061e82c745634"}, + {file = "propcache-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:887d9b0a65404929641a9fabb6452b07fe4572b269d901d622d8a34a4e9043b2"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a96dc1fa45bd8c407a0af03b2d5218392729e1822b0c32e62c5bf7eeb5fb3958"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:a7e65eb5c003a303b94aa2c3852ef130230ec79e349632d030e9571b87c4698c"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:999779addc413181912e984b942fbcc951be1f5b3663cd80b2687758f434c583"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:19a0f89a7bb9d8048d9c4370c9c543c396e894c76be5525f5e1ad287f1750ddf"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:1ac2f5fe02fa75f56e1ad473f1175e11f475606ec9bd0be2e78e4734ad575034"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:574faa3b79e8ebac7cb1d7930f51184ba1ccf69adfdec53a12f319a06030a68b"}, + {file = "propcache-0.2.1-cp310-cp310-win32.whl", hash = "sha256:03ff9d3f665769b2a85e6157ac8b439644f2d7fd17615a82fa55739bc97863f4"}, + {file = "propcache-0.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:2d3af2e79991102678f53e0dbf4c35de99b6b8b58f29a27ca0325816364caaba"}, + {file = "propcache-0.2.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:1ffc3cca89bb438fb9c95c13fc874012f7b9466b89328c3c8b1aa93cdcfadd16"}, + {file = "propcache-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f174bbd484294ed9fdf09437f889f95807e5f229d5d93588d34e92106fbf6717"}, + {file = "propcache-0.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:70693319e0b8fd35dd863e3e29513875eb15c51945bf32519ef52927ca883bc3"}, + {file = "propcache-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b480c6a4e1138e1aa137c0079b9b6305ec6dcc1098a8ca5196283e8a49df95a9"}, + {file = "propcache-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d27b84d5880f6d8aa9ae3edb253c59d9f6642ffbb2c889b78b60361eed449787"}, + {file = "propcache-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:857112b22acd417c40fa4595db2fe28ab900c8c5fe4670c7989b1c0230955465"}, + {file = "propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf6c4150f8c0e32d241436526f3c3f9cbd34429492abddbada2ffcff506c51af"}, + {file = "propcache-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66d4cfda1d8ed687daa4bc0274fcfd5267873db9a5bc0418c2da19273040eeb7"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c2f992c07c0fca81655066705beae35fc95a2fa7366467366db627d9f2ee097f"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:4a571d97dbe66ef38e472703067021b1467025ec85707d57e78711c085984e54"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:bb6178c241278d5fe853b3de743087be7f5f4c6f7d6d22a3b524d323eecec505"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:ad1af54a62ffe39cf34db1aa6ed1a1873bd548f6401db39d8e7cd060b9211f82"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:e7048abd75fe40712005bcfc06bb44b9dfcd8e101dda2ecf2f5aa46115ad07ca"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:160291c60081f23ee43d44b08a7e5fb76681221a8e10b3139618c5a9a291b84e"}, + {file = "propcache-0.2.1-cp311-cp311-win32.whl", hash = "sha256:819ce3b883b7576ca28da3861c7e1a88afd08cc8c96908e08a3f4dd64a228034"}, + {file = "propcache-0.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:edc9fc7051e3350643ad929df55c451899bb9ae6d24998a949d2e4c87fb596d3"}, + {file = "propcache-0.2.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:081a430aa8d5e8876c6909b67bd2d937bfd531b0382d3fdedb82612c618bc41a"}, + {file = "propcache-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2ccec9ac47cf4e04897619c0e0c1a48c54a71bdf045117d3a26f80d38ab1fb0"}, + {file = "propcache-0.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:14d86fe14b7e04fa306e0c43cdbeebe6b2c2156a0c9ce56b815faacc193e320d"}, + {file = "propcache-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:049324ee97bb67285b49632132db351b41e77833678432be52bdd0289c0e05e4"}, + {file = "propcache-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cd9a1d071158de1cc1c71a26014dcdfa7dd3d5f4f88c298c7f90ad6f27bb46d"}, + {file = "propcache-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98110aa363f1bb4c073e8dcfaefd3a5cea0f0834c2aab23dda657e4dab2f53b5"}, + {file = "propcache-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:647894f5ae99c4cf6bb82a1bb3a796f6e06af3caa3d32e26d2350d0e3e3faf24"}, + {file = "propcache-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bfd3223c15bebe26518d58ccf9a39b93948d3dcb3e57a20480dfdd315356baff"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d71264a80f3fcf512eb4f18f59423fe82d6e346ee97b90625f283df56aee103f"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:e73091191e4280403bde6c9a52a6999d69cdfde498f1fdf629105247599b57ec"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3935bfa5fede35fb202c4b569bb9c042f337ca4ff7bd540a0aa5e37131659348"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:f508b0491767bb1f2b87fdfacaba5f7eddc2f867740ec69ece6d1946d29029a6"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:1672137af7c46662a1c2be1e8dc78cb6d224319aaa40271c9257d886be4363a6"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b74c261802d3d2b85c9df2dfb2fa81b6f90deeef63c2db9f0e029a3cac50b518"}, + {file = "propcache-0.2.1-cp312-cp312-win32.whl", hash = "sha256:d09c333d36c1409d56a9d29b3a1b800a42c76a57a5a8907eacdbce3f18768246"}, + {file = "propcache-0.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:c214999039d4f2a5b2073ac506bba279945233da8c786e490d411dfc30f855c1"}, + {file = "propcache-0.2.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aca405706e0b0a44cc6bfd41fbe89919a6a56999157f6de7e182a990c36e37bc"}, + {file = "propcache-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:12d1083f001ace206fe34b6bdc2cb94be66d57a850866f0b908972f90996b3e9"}, + {file = "propcache-0.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d93f3307ad32a27bda2e88ec81134b823c240aa3abb55821a8da553eed8d9439"}, + {file = "propcache-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba278acf14471d36316159c94a802933d10b6a1e117b8554fe0d0d9b75c9d536"}, + {file = "propcache-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4e6281aedfca15301c41f74d7005e6e3f4ca143584ba696ac69df4f02f40d629"}, + {file = "propcache-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b750a8e5a1262434fb1517ddf64b5de58327f1adc3524a5e44c2ca43305eb0b"}, + {file = "propcache-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf72af5e0fb40e9babf594308911436c8efde3cb5e75b6f206c34ad18be5c052"}, + {file = "propcache-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b2d0a12018b04f4cb820781ec0dffb5f7c7c1d2a5cd22bff7fb055a2cb19ebce"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e800776a79a5aabdb17dcc2346a7d66d0777e942e4cd251defeb084762ecd17d"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:4160d9283bd382fa6c0c2b5e017acc95bc183570cd70968b9202ad6d8fc48dce"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:30b43e74f1359353341a7adb783c8f1b1c676367b011709f466f42fda2045e95"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:58791550b27d5488b1bb52bc96328456095d96206a250d28d874fafe11b3dfaf"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:0f022d381747f0dfe27e99d928e31bc51a18b65bb9e481ae0af1380a6725dd1f"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:297878dc9d0a334358f9b608b56d02e72899f3b8499fc6044133f0d319e2ec30"}, + {file = "propcache-0.2.1-cp313-cp313-win32.whl", hash = "sha256:ddfab44e4489bd79bda09d84c430677fc7f0a4939a73d2bba3073036f487a0a6"}, + {file = "propcache-0.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:556fc6c10989f19a179e4321e5d678db8eb2924131e64652a51fe83e4c3db0e1"}, + {file = "propcache-0.2.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6a9a8c34fb7bb609419a211e59da8887eeca40d300b5ea8e56af98f6fbbb1541"}, + {file = "propcache-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ae1aa1cd222c6d205853b3013c69cd04515f9d6ab6de4b0603e2e1c33221303e"}, + {file = "propcache-0.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:accb6150ce61c9c4b7738d45550806aa2b71c7668c6942f17b0ac182b6142fd4"}, + {file = "propcache-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5eee736daafa7af6d0a2dc15cc75e05c64f37fc37bafef2e00d77c14171c2097"}, + {file = "propcache-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7a31fc1e1bd362874863fdeed71aed92d348f5336fd84f2197ba40c59f061bd"}, + {file = "propcache-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba4cfa1052819d16699e1d55d18c92b6e094d4517c41dd231a8b9f87b6fa681"}, + {file = "propcache-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f089118d584e859c62b3da0892b88a83d611c2033ac410e929cb6754eec0ed16"}, + {file = "propcache-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:781e65134efaf88feb447e8c97a51772aa75e48b794352f94cb7ea717dedda0d"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:31f5af773530fd3c658b32b6bdc2d0838543de70eb9a2156c03e410f7b0d3aae"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:a7a078f5d37bee6690959c813977da5291b24286e7b962e62a94cec31aa5188b"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:cea7daf9fc7ae6687cf1e2c049752f19f146fdc37c2cc376e7d0032cf4f25347"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:8b3489ff1ed1e8315674d0775dc7d2195fb13ca17b3808721b54dbe9fd020faf"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:9403db39be1393618dd80c746cb22ccda168efce239c73af13c3763ef56ffc04"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5d97151bc92d2b2578ff7ce779cdb9174337390a535953cbb9452fb65164c587"}, + {file = "propcache-0.2.1-cp39-cp39-win32.whl", hash = "sha256:9caac6b54914bdf41bcc91e7eb9147d331d29235a7c967c150ef5df6464fd1bb"}, + {file = "propcache-0.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:92fc4500fcb33899b05ba73276dfb684a20d31caa567b7cb5252d48f896a91b1"}, + {file = "propcache-0.2.1-py3-none-any.whl", hash = "sha256:52277518d6aae65536e9cea52d4e7fd2f7a66f4aa2d30ed3f2fcea620ace3c54"}, + {file = "propcache-0.2.1.tar.gz", hash = "sha256:3f77ce728b19cb537714499928fe800c3dda29e8d9428778fc7c186da4c09a64"}, +] + +[[package]] +name = "pytz" +version = "2024.2" +description = "World timezone definitions, modern and historical" +optional = false +python-versions = "*" +files = [ + {file = "pytz-2024.2-py2.py3-none-any.whl", hash = "sha256:31c7c1817eb7fae7ca4b8c7ee50c72f93aa2dd863de768e1ef4245d426aa0725"}, + {file = "pytz-2024.2.tar.gz", hash = "sha256:2aa355083c50a0f93fa581709deac0c9ad65cca8a9e9beac660adcbd493c798a"}, +] + +[[package]] +name = "requests" +version = "2.32.3" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.8" +files = [ + {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, + {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "ruff" +version = "0.8.2" +description = "An extremely fast Python linter and code formatter, written in Rust." +optional = false +python-versions = ">=3.7" +files = [ + {file = "ruff-0.8.2-py3-none-linux_armv6l.whl", hash = "sha256:c49ab4da37e7c457105aadfd2725e24305ff9bc908487a9bf8d548c6dad8bb3d"}, + {file = "ruff-0.8.2-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:ec016beb69ac16be416c435828be702ee694c0d722505f9c1f35e1b9c0cc1bf5"}, + {file = "ruff-0.8.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:f05cdf8d050b30e2ba55c9b09330b51f9f97d36d4673213679b965d25a785f3c"}, + {file = "ruff-0.8.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:60f578c11feb1d3d257b2fb043ddb47501ab4816e7e221fbb0077f0d5d4e7b6f"}, + {file = "ruff-0.8.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cbd5cf9b0ae8f30eebc7b360171bd50f59ab29d39f06a670b3e4501a36ba5897"}, + {file = "ruff-0.8.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b402ddee3d777683de60ff76da801fa7e5e8a71038f57ee53e903afbcefdaa58"}, + {file = "ruff-0.8.2-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:705832cd7d85605cb7858d8a13d75993c8f3ef1397b0831289109e953d833d29"}, + {file = "ruff-0.8.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:32096b41aaf7a5cc095fa45b4167b890e4c8d3fd217603f3634c92a541de7248"}, + {file = "ruff-0.8.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e769083da9439508833cfc7c23e351e1809e67f47c50248250ce1ac52c21fb93"}, + {file = "ruff-0.8.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fe716592ae8a376c2673fdfc1f5c0c193a6d0411f90a496863c99cd9e2ae25d"}, + {file = "ruff-0.8.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:81c148825277e737493242b44c5388a300584d73d5774defa9245aaef55448b0"}, + {file = "ruff-0.8.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:d261d7850c8367704874847d95febc698a950bf061c9475d4a8b7689adc4f7fa"}, + {file = "ruff-0.8.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:1ca4e3a87496dc07d2427b7dd7ffa88a1e597c28dad65ae6433ecb9f2e4f022f"}, + {file = "ruff-0.8.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:729850feed82ef2440aa27946ab39c18cb4a8889c1128a6d589ffa028ddcfc22"}, + {file = "ruff-0.8.2-py3-none-win32.whl", hash = "sha256:ac42caaa0411d6a7d9594363294416e0e48fc1279e1b0e948391695db2b3d5b1"}, + {file = "ruff-0.8.2-py3-none-win_amd64.whl", hash = "sha256:2aae99ec70abf43372612a838d97bfe77d45146254568d94926e8ed5bbb409ea"}, + {file = "ruff-0.8.2-py3-none-win_arm64.whl", hash = "sha256:fb88e2a506b70cfbc2de6fae6681c4f944f7dd5f2fe87233a7233d888bad73e8"}, + {file = "ruff-0.8.2.tar.gz", hash = "sha256:b84f4f414dda8ac7f75075c1fa0b905ac0ff25361f42e6d5da681a465e0f78e5"}, +] + +[[package]] +name = "typing-extensions" +version = "4.12.2" +description = "Backported and Experimental Type Hints for Python 3.8+" +optional = false +python-versions = ">=3.8" +files = [ + {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, + {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, +] + +[[package]] +name = "urllib3" +version = "2.2.3" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.8" +files = [ + {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, + {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +h2 = ["h2 (>=4,<5)"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "yarl" +version = "1.18.3" +description = "Yet another URL library" +optional = false +python-versions = ">=3.9" +files = [ + {file = "yarl-1.18.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7df647e8edd71f000a5208fe6ff8c382a1de8edfbccdbbfe649d263de07d8c34"}, + {file = "yarl-1.18.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c69697d3adff5aa4f874b19c0e4ed65180ceed6318ec856ebc423aa5850d84f7"}, + {file = "yarl-1.18.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:602d98f2c2d929f8e697ed274fbadc09902c4025c5a9963bf4e9edfc3ab6f7ed"}, + {file = "yarl-1.18.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c654d5207c78e0bd6d749f6dae1dcbbfde3403ad3a4b11f3c5544d9906969dde"}, + {file = "yarl-1.18.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5094d9206c64181d0f6e76ebd8fb2f8fe274950a63890ee9e0ebfd58bf9d787b"}, + {file = "yarl-1.18.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35098b24e0327fc4ebdc8ffe336cee0a87a700c24ffed13161af80124b7dc8e5"}, + {file = "yarl-1.18.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3236da9272872443f81fedc389bace88408f64f89f75d1bdb2256069a8730ccc"}, + {file = "yarl-1.18.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e2c08cc9b16f4f4bc522771d96734c7901e7ebef70c6c5c35dd0f10845270bcd"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80316a8bd5109320d38eef8833ccf5f89608c9107d02d2a7f985f98ed6876990"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c1e1cc06da1491e6734f0ea1e6294ce00792193c463350626571c287c9a704db"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fea09ca13323376a2fdfb353a5fa2e59f90cd18d7ca4eaa1fd31f0a8b4f91e62"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e3b9fd71836999aad54084906f8663dffcd2a7fb5cdafd6c37713b2e72be1760"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:757e81cae69244257d125ff31663249b3013b5dc0a8520d73694aed497fb195b"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b1771de9944d875f1b98a745bc547e684b863abf8f8287da8466cf470ef52690"}, + {file = "yarl-1.18.3-cp310-cp310-win32.whl", hash = "sha256:8874027a53e3aea659a6d62751800cf6e63314c160fd607489ba5c2edd753cf6"}, + {file = "yarl-1.18.3-cp310-cp310-win_amd64.whl", hash = "sha256:93b2e109287f93db79210f86deb6b9bbb81ac32fc97236b16f7433db7fc437d8"}, + {file = "yarl-1.18.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8503ad47387b8ebd39cbbbdf0bf113e17330ffd339ba1144074da24c545f0069"}, + {file = "yarl-1.18.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:02ddb6756f8f4517a2d5e99d8b2f272488e18dd0bfbc802f31c16c6c20f22193"}, + {file = "yarl-1.18.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:67a283dd2882ac98cc6318384f565bffc751ab564605959df4752d42483ad889"}, + {file = "yarl-1.18.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d980e0325b6eddc81331d3f4551e2a333999fb176fd153e075c6d1c2530aa8a8"}, + {file = "yarl-1.18.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b643562c12680b01e17239be267bc306bbc6aac1f34f6444d1bded0c5ce438ca"}, + {file = "yarl-1.18.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c017a3b6df3a1bd45b9fa49a0f54005e53fbcad16633870104b66fa1a30a29d8"}, + {file = "yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75674776d96d7b851b6498f17824ba17849d790a44d282929c42dbb77d4f17ae"}, + {file = "yarl-1.18.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ccaa3a4b521b780a7e771cc336a2dba389a0861592bbce09a476190bb0c8b4b3"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2d06d3005e668744e11ed80812e61efd77d70bb7f03e33c1598c301eea20efbb"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:9d41beda9dc97ca9ab0b9888cb71f7539124bc05df02c0cff6e5acc5a19dcc6e"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ba23302c0c61a9999784e73809427c9dbedd79f66a13d84ad1b1943802eaaf59"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:6748dbf9bfa5ba1afcc7556b71cda0d7ce5f24768043a02a58846e4a443d808d"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:0b0cad37311123211dc91eadcb322ef4d4a66008d3e1bdc404808992260e1a0e"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0fb2171a4486bb075316ee754c6d8382ea6eb8b399d4ec62fde2b591f879778a"}, + {file = "yarl-1.18.3-cp311-cp311-win32.whl", hash = "sha256:61b1a825a13bef4a5f10b1885245377d3cd0bf87cba068e1d9a88c2ae36880e1"}, + {file = "yarl-1.18.3-cp311-cp311-win_amd64.whl", hash = "sha256:b9d60031cf568c627d028239693fd718025719c02c9f55df0a53e587aab951b5"}, + {file = "yarl-1.18.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:1dd4bdd05407ced96fed3d7f25dbbf88d2ffb045a0db60dbc247f5b3c5c25d50"}, + {file = "yarl-1.18.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7c33dd1931a95e5d9a772d0ac5e44cac8957eaf58e3c8da8c1414de7dd27c576"}, + {file = "yarl-1.18.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:25b411eddcfd56a2f0cd6a384e9f4f7aa3efee14b188de13048c25b5e91f1640"}, + {file = "yarl-1.18.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:436c4fc0a4d66b2badc6c5fc5ef4e47bb10e4fd9bf0c79524ac719a01f3607c2"}, + {file = "yarl-1.18.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e35ef8683211db69ffe129a25d5634319a677570ab6b2eba4afa860f54eeaf75"}, + {file = "yarl-1.18.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:84b2deecba4a3f1a398df819151eb72d29bfeb3b69abb145a00ddc8d30094512"}, + {file = "yarl-1.18.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00e5a1fea0fd4f5bfa7440a47eff01d9822a65b4488f7cff83155a0f31a2ecba"}, + {file = "yarl-1.18.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d0e883008013c0e4aef84dcfe2a0b172c4d23c2669412cf5b3371003941f72bb"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5a3f356548e34a70b0172d8890006c37be92995f62d95a07b4a42e90fba54272"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:ccd17349166b1bee6e529b4add61727d3f55edb7babbe4069b5764c9587a8cc6"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b958ddd075ddba5b09bb0be8a6d9906d2ce933aee81100db289badbeb966f54e"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c7d79f7d9aabd6011004e33b22bc13056a3e3fb54794d138af57f5ee9d9032cb"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4891ed92157e5430874dad17b15eb1fda57627710756c27422200c52d8a4e393"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ce1af883b94304f493698b00d0f006d56aea98aeb49d75ec7d98cd4a777e9285"}, + {file = "yarl-1.18.3-cp312-cp312-win32.whl", hash = "sha256:f91c4803173928a25e1a55b943c81f55b8872f0018be83e3ad4938adffb77dd2"}, + {file = "yarl-1.18.3-cp312-cp312-win_amd64.whl", hash = "sha256:7e2ee16578af3b52ac2f334c3b1f92262f47e02cc6193c598502bd46f5cd1477"}, + {file = "yarl-1.18.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:90adb47ad432332d4f0bc28f83a5963f426ce9a1a8809f5e584e704b82685dcb"}, + {file = "yarl-1.18.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:913829534200eb0f789d45349e55203a091f45c37a2674678744ae52fae23efa"}, + {file = "yarl-1.18.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ef9f7768395923c3039055c14334ba4d926f3baf7b776c923c93d80195624782"}, + {file = "yarl-1.18.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88a19f62ff30117e706ebc9090b8ecc79aeb77d0b1f5ec10d2d27a12bc9f66d0"}, + {file = "yarl-1.18.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e17c9361d46a4d5addf777c6dd5eab0715a7684c2f11b88c67ac37edfba6c482"}, + {file = "yarl-1.18.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a74a13a4c857a84a845505fd2d68e54826a2cd01935a96efb1e9d86c728e186"}, + {file = "yarl-1.18.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41f7ce59d6ee7741af71d82020346af364949314ed3d87553763a2df1829cc58"}, + {file = "yarl-1.18.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f52a265001d830bc425f82ca9eabda94a64a4d753b07d623a9f2863fde532b53"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:82123d0c954dc58db301f5021a01854a85bf1f3bb7d12ae0c01afc414a882ca2"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:2ec9bbba33b2d00999af4631a3397d1fd78290c48e2a3e52d8dd72db3a067ac8"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:fbd6748e8ab9b41171bb95c6142faf068f5ef1511935a0aa07025438dd9a9bc1"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:877d209b6aebeb5b16c42cbb377f5f94d9e556626b1bfff66d7b0d115be88d0a"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:b464c4ab4bfcb41e3bfd3f1c26600d038376c2de3297760dfe064d2cb7ea8e10"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8d39d351e7faf01483cc7ff7c0213c412e38e5a340238826be7e0e4da450fdc8"}, + {file = "yarl-1.18.3-cp313-cp313-win32.whl", hash = "sha256:61ee62ead9b68b9123ec24bc866cbef297dd266175d53296e2db5e7f797f902d"}, + {file = "yarl-1.18.3-cp313-cp313-win_amd64.whl", hash = "sha256:578e281c393af575879990861823ef19d66e2b1d0098414855dd367e234f5b3c"}, + {file = "yarl-1.18.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:61e5e68cb65ac8f547f6b5ef933f510134a6bf31bb178be428994b0cb46c2a04"}, + {file = "yarl-1.18.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fe57328fbc1bfd0bd0514470ac692630f3901c0ee39052ae47acd1d90a436719"}, + {file = "yarl-1.18.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a440a2a624683108a1b454705ecd7afc1c3438a08e890a1513d468671d90a04e"}, + {file = "yarl-1.18.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09c7907c8548bcd6ab860e5f513e727c53b4a714f459b084f6580b49fa1b9cee"}, + {file = "yarl-1.18.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b4f6450109834af88cb4cc5ecddfc5380ebb9c228695afc11915a0bf82116789"}, + {file = "yarl-1.18.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9ca04806f3be0ac6d558fffc2fdf8fcef767e0489d2684a21912cc4ed0cd1b8"}, + {file = "yarl-1.18.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77a6e85b90a7641d2e07184df5557132a337f136250caafc9ccaa4a2a998ca2c"}, + {file = "yarl-1.18.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6333c5a377c8e2f5fae35e7b8f145c617b02c939d04110c76f29ee3676b5f9a5"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0b3c92fa08759dbf12b3a59579a4096ba9af8dd344d9a813fc7f5070d86bbab1"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:4ac515b860c36becb81bb84b667466885096b5fc85596948548b667da3bf9f24"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:045b8482ce9483ada4f3f23b3774f4e1bf4f23a2d5c912ed5170f68efb053318"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:a4bb030cf46a434ec0225bddbebd4b89e6471814ca851abb8696170adb163985"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:54d6921f07555713b9300bee9c50fb46e57e2e639027089b1d795ecd9f7fa910"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1d407181cfa6e70077df3377938c08012d18893f9f20e92f7d2f314a437c30b1"}, + {file = "yarl-1.18.3-cp39-cp39-win32.whl", hash = "sha256:ac36703a585e0929b032fbaab0707b75dc12703766d0b53486eabd5139ebadd5"}, + {file = "yarl-1.18.3-cp39-cp39-win_amd64.whl", hash = "sha256:ba87babd629f8af77f557b61e49e7c7cac36f22f871156b91e10a6e9d4f829e9"}, + {file = "yarl-1.18.3-py3-none-any.whl", hash = "sha256:b57f4f58099328dfb26c6a771d09fb20dbbae81d20cfb66141251ea063bd101b"}, + {file = "yarl-1.18.3.tar.gz", hash = "sha256:ac1801c45cbf77b6c99242eeff4fffb5e4e73a800b5c4ad4fc0be5def634d2e1"}, +] + +[package.dependencies] +idna = ">=2.0" +multidict = ">=4.0" +propcache = ">=0.2.0" + +[metadata] +lock-version = "2.0" +python-versions = "3.13" +content-hash = "cab90358cb32f9b764e0f176ebaced974a6a2cfb5b36d01dfd65538b3bac0c90" diff --git a/aidbox-with-python-sdk/pyproject.toml b/aidbox-with-python-sdk/pyproject.toml new file mode 100644 index 00000000..691073cb --- /dev/null +++ b/aidbox-with-python-sdk/pyproject.toml @@ -0,0 +1,17 @@ +[tool.poetry] +name = "aidbox-with-python-sdk-example" +version = "0.1.0" +description = "" +authors = [] +readme = "README.md" + +[tool.poetry.dependencies] +python = "3.13" +fhirpy = "^2.0.15" + +[tool.poetry.group.dev.dependencies] +ruff = "^0.8.2" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/aidbox-with-python-sdk/tmp/aidbox.ndjson b/aidbox-with-python-sdk/tmp/aidbox.ndjson deleted file mode 100644 index 78b9948e..00000000 --- a/aidbox-with-python-sdk/tmp/aidbox.ndjson +++ /dev/null @@ -1,1753 +0,0 @@ -{"sql":"SELECT 1","d":1,"timeUnix":1733486190582,"ts":"2024-12-06T11:56:30.582Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select pg_advisory_lock(7777)","d":8,"timeUnix":1733486190590,"ts":"2024-12-06T11:56:30.590Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"SELECT 1","d":1,"timeUnix":1733486190590,"ts":"2024-12-06T11:56:30.590Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} -{"sql":"SELECT TRUE FROM \"pg_catalog\".\"pg_roles\" WHERE \"rolname\" = ?","d":2,"db_prm":["postgres"],"timeUnix":1733486190593,"ts":"2024-12-06T11:56:30.593Z","w":"main","ev":"db/q","tn":"devbox"} -{"db":"aidbox","timeUnix":1733486190593,"ts":"2024-12-06T11:56:30.593Z","w":"main","ev":"db/create-db","tn":"devbox"} -{"sql":"SELECT TRUE FROM \"pg_database\" WHERE \"datname\" = ?","d":2,"db_prm":["aidbox"],"timeUnix":1733486190595,"ts":"2024-12-06T11:56:30.595Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select pg_advisory_unlock(7777)","d":1,"timeUnix":1733486190596,"ts":"2024-12-06T11:56:30.596Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"SELECT 1","d":1,"timeUnix":1733486190604,"ts":"2024-12-06T11:56:30.604Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} -{"sql":"select pg_advisory_lock(7777)","d":2,"timeUnix":1733486190606,"ts":"2024-12-06T11:56:30.606Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select sum(pg_relation_size(oid)\n + case when reltoastrelid = 0\n\t then 0\n\t else pg_relation_size(reltoastrelid)\n\t end) as size\n from pg_class\n where relkind = 'r'\n and not relisshared\n and not relname in ('_import_all', 'codesystem', 'concept', 'valueset')","d":3,"timeUnix":1733486190607,"ts":"2024-12-06T11:56:30.607Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} -{"sql":"SELECT * FROM pg_available_extensions","d":23,"timeUnix":1733486190629,"ts":"2024-12-06T11:56:30.629Z","w":"main","ev":"db/q","tn":"devbox"} -{"msg":"These extensions are optional and not available: #{\"jsquery\" \"jsonknife\" \"pg_similarity\"}.","lvl":"warn","timeUnix":1733486190632,"ts":"2024-12-06T11:56:30.632Z","w":"main","ev":"migration/optional-exts-are-not-available","tn":"devbox"} -{"msg":"Extension was installed: pgcrypto","lvl":"info","timeUnix":1733486190644,"ts":"2024-12-06T11:56:30.644Z","w":"main","ev":"migration/install-pg-extension-success","tn":"devbox"} -{"msg":"Extension was installed: pg_stat_statements","lvl":"info","timeUnix":1733486190654,"ts":"2024-12-06T11:56:30.654Z","w":"main","ev":"migration/install-pg-extension-success","tn":"devbox"} -{"msg":"Extension was installed: postgis","lvl":"info","timeUnix":1733486191274,"ts":"2024-12-06T11:56:31.274Z","w":"main","ev":"migration/install-pg-extension-success","tn":"devbox"} -{"msg":"Extension was installed: fuzzystrmatch","lvl":"info","timeUnix":1733486191278,"ts":"2024-12-06T11:56:31.278Z","w":"main","ev":"migration/install-pg-extension-success","tn":"devbox"} -{"msg":"Extension was installed: pg_trgm","lvl":"info","timeUnix":1733486191285,"ts":"2024-12-06T11:56:31.284Z","w":"main","ev":"migration/install-pg-extension-success","tn":"devbox"} -{"msg":"Extension was installed: unaccent","lvl":"info","timeUnix":1733486191292,"ts":"2024-12-06T11:56:31.292Z","w":"main","ev":"migration/install-pg-extension-success","tn":"devbox"} -{"sql":"select true as result from pg_type where typname = 'jsonpath' and typnamespace in (select oid from pg_namespace where nspname in (select * from unnest(current_schemas(true))))","d":2,"timeUnix":1733486191295,"ts":"2024-12-06T11:56:31.295Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"SELECT current_schema","d":1,"timeUnix":1733486191297,"ts":"2024-12-06T11:56:31.297Z","w":"main","ev":"db/q","tn":"devbox"} -{"lvl":"info","msg":"Jsonknife extension is unavailable. INSTALL jsonpath jsonknife shim.","timeUnix":1733486191297,"ts":"2024-12-06T11:56:31.297Z","w":"main","ev":"migration/modules","tn":"devbox"} -{"lvl":"info","msg":"Create table _box","timeUnix":1733486191308,"ts":"2024-12-06T11:56:31.308Z","w":"main","ev":"proto.box/migrate-box","tn":"devbox"} -{"sql":"select pg_advisory_unlock(7777)","d":2,"timeUnix":1733486191346,"ts":"2024-12-06T11:56:31.346Z","w":"main","ev":"db/q","tn":"devbox"} -{"about":{"version":"edge:e5ca52437","channel":"edge","commit":"e5ca52437","zen-fhir-version":"0.6.42","timestamp":"2024-12-05T15:07:21Z"},"timeUnix":1733486191347,"ts":"2024-12-06T11:56:31.347Z","w":"main","ev":"aidbox/start","tn":"devbox"} -{"ev":"db/datasource","w":"main","tn":"devbox","minimum-idle":0,"timeUnix":1733486191443,"ts":"2024-12-06T11:56:31.443Z","connection-init-sql":"select 1","connection-timeout":30000,"database":"aidbox","maximum-pool-size":8,"idle-timeout":10000} -{"ev":"db/datasource","w":"main","tn":"devbox","minimum-idle":0,"timeUnix":1733486191473,"ts":"2024-12-06T11:56:31.473Z","connection-init-sql":"select 1","connection-timeout":30000,"database":"aidbox","maximum-pool-size":8,"idle-timeout":10000} -{"sql":"SELECT 1","d":1,"timeUnix":1733486199986,"ts":"2024-12-06T11:56:39.986Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select pg_advisory_lock(7777)","d":3,"timeUnix":1733486199989,"ts":"2024-12-06T11:56:39.989Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"SELECT TRUE FROM \"information_schema\".\"tables\" WHERE (\"table_schema\" = current_schema AND \"table_name\" = ?)","d":2,"db_prm":["_box"],"timeUnix":1733486199992,"ts":"2024-12-06T11:56:39.992Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select resource from _box where id = 'self'","d":0,"timeUnix":1733486199993,"ts":"2024-12-06T11:56:39.992Z","w":"main","ev":"db/q","tn":"devbox"} -{"box_id":"devbox","timeUnix":1733486199993,"ts":"2024-12-06T11:56:39.993Z","w":"main","ev":"proto.box/migrate-box","tn":"devbox"} -{"sql":"SELECT * FROM pg_available_extensions","d":2,"timeUnix":1733486199995,"ts":"2024-12-06T11:56:39.995Z","w":"main","ev":"db/q","tn":"devbox"} -{"msg":"These extensions are optional and not available: #{\"jsquery\" \"jsonknife\" \"pg_similarity\"}.","lvl":"warn","timeUnix":1733486199995,"ts":"2024-12-06T11:56:39.995Z","w":"main","ev":"migration/optional-exts-are-not-available","tn":"devbox"} -{"msg":"These extensions already installed: #{\"pgcrypto\" \"pg_stat_statements\" \"postgis\" \"fuzzystrmatch\" \"pg_trgm\" \"unaccent\"}","lvl":"info","timeUnix":1733486199996,"ts":"2024-12-06T11:56:39.996Z","w":"main","ev":"migration/exts-are-already-installed","tn":"devbox"} -{"sql":"select true as result from pg_type where typname = 'jsonpath' and typnamespace in (select oid from pg_namespace where nspname in (select * from unnest(current_schemas(true))))","d":1,"timeUnix":1733486199997,"ts":"2024-12-06T11:56:39.997Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"SELECT current_schema","d":1,"timeUnix":1733486199998,"ts":"2024-12-06T11:56:39.998Z","w":"main","ev":"db/q","tn":"devbox"} -{"lvl":"info","msg":"Jsonknife extension is unavailable. INSTALL jsonpath jsonknife shim.","timeUnix":1733486199998,"ts":"2024-12-06T11:56:39.998Z","w":"main","ev":"migration/modules","tn":"devbox"} -{"lvl":"info","msg":"Create table _box","timeUnix":1733486200003,"ts":"2024-12-06T11:56:40.003Z","w":"main","ev":"proto.box/migrate-box","tn":"devbox"} -{"lvl":"init","msg":"Do user init migration","timeUnix":1733486200100,"ts":"2024-12-06T11:56:40.100Z","w":"main","ev":"migration/user","tn":"devbox"} -{"sql":"SELECT current_schema","d":1,"timeUnix":1733486200101,"ts":"2024-12-06T11:56:40.101Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"SELECT TRUE FROM pg_extension WHERE extname = 'postgis'","d":2,"timeUnix":1733486200103,"ts":"2024-12-06T11:56:40.103Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select true as result from pg_type where typname = 'jsonpath'","d":0,"timeUnix":1733486200103,"ts":"2024-12-06T11:56:40.103Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"SELECT current_schemas(false)","d":17,"timeUnix":1733486200193,"ts":"2024-12-06T11:56:40.193Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"SELECT \"table_name\" FROM \"information_schema\".\"tables\" WHERE (\"table_schema\" in (?))","d":2,"db_prm":["public"],"timeUnix":1733486200196,"ts":"2024-12-06T11:56:40.196Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select current_schema","d":0,"timeUnix":1733486200197,"ts":"2024-12-06T11:56:40.197Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"SELECT current_schemas(false)","d":0,"timeUnix":1733486201456,"ts":"2024-12-06T11:56:41.456Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"SELECT \"table_name\" FROM \"information_schema\".\"tables\" WHERE (\"table_schema\" in (?))","d":2,"db_prm":["public"],"timeUnix":1733486201459,"ts":"2024-12-06T11:56:41.459Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select * from module","d":1,"timeUnix":1733486201461,"ts":"2024-12-06T11:56:41.461Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select id from searchparameter where resource->'_source' is null","d":1,"timeUnix":1733486201462,"ts":"2024-12-06T11:56:41.462Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select id from attribute where resource->'_source' is null","d":0,"timeUnix":1733486201462,"ts":"2024-12-06T11:56:41.462Z","w":"main","ev":"db/q","tn":"devbox"} -{"modules":["subs","intermsg","hl7v2-in","aws","mapper","auth","box","awf","azure","sdc","sql-on-fhir","proto","aidbox-apps","sdc2","gsapi","fhir-fhir-schema","bulk-fhir-export"],"timeUnix":1733486201462,"ts":"2024-12-06T11:56:41.462Z","w":"main","ev":"modules/update","tn":"devbox"} -{"sql":"select id, ts, cts, txid, resource_type, resource from \"entity\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":1,"timeUnix":1733486201486,"ts":"2024-12-06T11:56:41.486Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"SELECT * FROM \"user\" WHERE \"id\" = ?","d":0,"db_prm":["admin"],"timeUnix":1733486201526,"ts":"2024-12-06T11:56:41.526Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select id, ts, cts, txid, resource_type, resource from \"attribute\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":0,"timeUnix":1733486201529,"ts":"2024-12-06T11:56:41.529Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select id, ts, cts, txid, resource_type, resource from \"aidboxprofile\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":1,"timeUnix":1733486201820,"ts":"2024-12-06T11:56:41.820Z","w":"main","ev":"db/q","tn":"devbox"} -{"rid":"admin","rtp":"User","txid":"1","timeUnix":1733486201841,"ts":"2024-12-06T11:56:41.841Z","w":"main","ev":"resource/create","tn":"devbox"} -{"cache-event":{"type":"aidbox.cache/drop-session-on-resource-change","resourceType":"User","id":"admin","user-id":null},"timeUnix":1733486201841,"ts":"2024-12-06T11:56:41.841Z","w":"main","ev":"proto.cache.core/handle","tn":"devbox"} -{"sql":"select id, ts, cts, txid, resource_type, resource from \"subssubscription\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":1,"timeUnix":1733486201844,"ts":"2024-12-06T11:56:41.844Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select id, ts, cts, txid, resource_type, resource from \"aidboxsubscription\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":1,"timeUnix":1733486201846,"ts":"2024-12-06T11:56:41.845Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select id, resource->'module' as module from aidboxmigration where resource->>'status' = 'done'","d":1,"timeUnix":1733486201864,"ts":"2024-12-06T11:56:41.864Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select nextval('transaction_id_seq'::text) as id","d":0,"timeUnix":1733486201865,"ts":"2024-12-06T11:56:41.865Z","w":"main","ev":"db/q","tn":"devbox"} -{"mgr_id":"auth-migrate-jwt-authenticators","timeUnix":1733486201865,"ts":"2024-12-06T11:56:41.865Z","w":"main","ev":"db/migration","tn":"devbox"} -{"sql":"SELECT TRUE FROM \"information_schema\".\"tables\" WHERE (\"table_schema\" = current_schema AND \"table_name\" = ?)","d":1,"db_prm":["jwtauthenticator"],"timeUnix":1733486201867,"ts":"2024-12-06T11:56:41.867Z","w":"main","ev":"db/q","tn":"devbox"} -{"mgr_id":"remove-zen-module-from-boxes","timeUnix":1733486201871,"ts":"2024-12-06T11:56:41.871Z","w":"main","ev":"db/migration","tn":"devbox"} -{"sql":"SELECT TRUE FROM \"information_schema\".\"tables\" WHERE (\"table_schema\" = current_schema AND \"table_name\" = ?)","d":1,"db_prm":["_box"],"timeUnix":1733486201872,"ts":"2024-12-06T11:56:41.872Z","w":"main","ev":"db/q","tn":"devbox"} -{"mgr_id":"remove-zen-module","timeUnix":1733486201875,"ts":"2024-12-06T11:56:41.875Z","w":"main","ev":"db/migration","tn":"devbox"} -{"mgr_id":"create-task-queue","timeUnix":1733486201878,"ts":"2024-12-06T11:56:41.878Z","w":"main","ev":"db/migration","tn":"devbox"} -{"mgr_id":"create-action-queue","timeUnix":1733486201899,"ts":"2024-12-06T11:56:41.899Z","w":"main","ev":"db/migration","tn":"devbox"} -{"mgr_id":"eliminate-pool-migration","timeUnix":1733486201917,"ts":"2024-12-06T11:56:41.917Z","w":"main","ev":"db/migration","tn":"devbox"} -{"mgr_id":"concurrency-limit-migration","timeUnix":1733486201944,"ts":"2024-12-06T11:56:41.944Z","w":"main","ev":"db/migration","tn":"devbox"} -{"mgr_id":"auth-add-index-expiration-on-session","timeUnix":1733486201950,"ts":"2024-12-06T11:56:41.950Z","w":"main","ev":"db/migration","tn":"devbox"} -{"mgr_id":"create-sof-functions","timeUnix":1733486201966,"ts":"2024-12-06T11:56:41.966Z","w":"main","ev":"db/migration","tn":"devbox"} -{"mgr_id":"view-def-to-aidbox","timeUnix":1733486201973,"ts":"2024-12-06T11:56:41.973Z","w":"main","ev":"db/migration","tn":"devbox"} -{"sql":"SELECT EXISTS (SELECT table_name FROM information_schema.tables WHERE table_name = 'viewdefinition')","d":2,"timeUnix":1733486201976,"ts":"2024-12-06T11:56:41.976Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select * from viewdefinition","d":1,"timeUnix":1733486201977,"ts":"2024-12-06T11:56:41.977Z","w":"main","ev":"db/q","tn":"devbox"} -{"mgr_id":"topic-destination-event-store-bigserial-and-primary-key","timeUnix":1733486201983,"ts":"2024-12-06T11:56:41.983Z","w":"main","ev":"db/migration","tn":"devbox"} -{"mgr_id":"remove-sdc-token-introspector","timeUnix":1733486201990,"ts":"2024-12-06T11:56:41.990Z","w":"main","ev":"db/migration","tn":"devbox"} -{"mgr_id":"apply-hash-type-to-internal-resources","timeUnix":1733486201997,"ts":"2024-12-06T11:56:41.997Z","w":"main","ev":"db/migration","tn":"devbox"} -{"sql":"SELECT TRUE FROM \"information_schema\".\"tables\" WHERE (\"table_schema\" = current_schema AND \"table_name\" = ?)","d":1,"db_prm":["session"],"timeUnix":1733486202001,"ts":"2024-12-06T11:56:42.001Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"SELECT TRUE FROM \"information_schema\".\"tables\" WHERE (\"table_schema\" = current_schema AND \"table_name\" = ?)","d":1,"db_prm":["client"],"timeUnix":1733486202003,"ts":"2024-12-06T11:56:42.003Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select * from client","d":1,"timeUnix":1733486202004,"ts":"2024-12-06T11:56:42.004Z","w":"main","ev":"db/q","tn":"devbox"} -{"rid":"box-ui","rtp":"Client","txid":"3","timeUnix":1733486202010,"ts":"2024-12-06T11:56:42.010Z","w":"main","ev":"resource/update","tn":"devbox"} -{"cache-event":{"type":"aidbox.cache/drop-session-on-resource-change","resourceType":"Client","id":"box-ui","user-id":null},"timeUnix":1733486202010,"ts":"2024-12-06T11:56:42.010Z","w":"main","ev":"proto.cache.core/handle","tn":"devbox"} -{"cache-event":{"type":"aidbox.cache/drop-cache","path":["auth/clients","box-ui"]},"timeUnix":1733486202010,"ts":"2024-12-06T11:56:42.010Z","w":"main","ev":"proto.cache.core/handle","tn":"devbox"} -{"rid":"root","rtp":"Client","txid":"4","timeUnix":1733486202013,"ts":"2024-12-06T11:56:42.013Z","w":"main","ev":"resource/update","tn":"devbox"} -{"cache-event":{"type":"aidbox.cache/drop-session-on-resource-change","resourceType":"Client","id":"root","user-id":null},"timeUnix":1733486202013,"ts":"2024-12-06T11:56:42.013Z","w":"main","ev":"proto.cache.core/handle","tn":"devbox"} -{"cache-event":{"type":"aidbox.cache/drop-cache","path":["auth/clients","root"]},"timeUnix":1733486202013,"ts":"2024-12-06T11:56:42.013Z","w":"main","ev":"proto.cache.core/handle","tn":"devbox"} -{"mgr_id":"auth-add-btree-indexes-on-session","timeUnix":1733486202016,"ts":"2024-12-06T11:56:42.016Z","w":"main","ev":"db/migration","tn":"devbox"} -{"sql":"select pg_advisory_unlock(7777)","d":1,"timeUnix":1733486202052,"ts":"2024-12-06T11:56:42.051Z","w":"main","ev":"db/q","tn":"devbox"} -{"tn":"devbox","timeUnix":1733486202285,"ts":"2024-12-06T11:56:42.285Z","w":"main","ev":"box/init"} -{"sql":"SELECT TRUE FROM \"information_schema\".\"tables\" WHERE (\"table_schema\" = current_schema AND \"table_name\" = ?)","d":14,"db_prm":["aidboxtopicdestination"],"timeUnix":1733486202440,"ts":"2024-12-06T11:56:42.440Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"SELECT * FROM AidboxTopicDestination","d":1,"timeUnix":1733486202451,"ts":"2024-12-06T11:56:42.451Z","w":"main","ev":"db/q","tn":"devbox"} -{"runtime-id":"2ff18526-7246-4e16-83e1-b93d3a2acaba","timeUnix":1733486202453,"ts":"2024-12-06T11:56:42.453Z","w":"main","ev":"proto.cache.core/subscribed","tn":"devbox"} -{"sql":"SELECT * FROM \"tokenintrospector\" WHERE \"id\" = ?","d":3,"db_prm":["sdc-rsa-token-introspector"],"timeUnix":1733486202460,"ts":"2024-12-06T11:56:42.460Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select id, ts, cts, txid, resource_type, resource from \"aidboxconfig\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":1,"timeUnix":1733486202463,"ts":"2024-12-06T11:56:42.463Z","w":"main","ev":"db/q","tn":"devbox"} -{"ev":"rpc/call","rpc_m":"aidbox.zen/build-ftr-index","w":"clojure-agent-send-off-pool-1","rpc_u":{"email":null},"op":"rpc:build-ftr-index","timeUnix":1733486202484,"ts":"2024-12-06T11:56:42.484Z","d":27,"lvl":"info"} -{"rid":"sdc-rsa-token-introspector","rtp":"TokenIntrospector","txid":"5","timeUnix":1733486202487,"ts":"2024-12-06T11:56:42.487Z","w":"main","ev":"resource/create","tn":"devbox"} -{"cache-event":{"type":"aidbox.cache/resource-change","resourceType":"TokenIntrospector","id":"sdc-rsa-token-introspector"},"timeUnix":1733486202488,"ts":"2024-12-06T11:56:42.488Z","w":"main","ev":"proto.cache.core/handle","tn":"devbox"} -{"sql":"select id, ts, cts, txid, resource_type, resource from \"tokenintrospector\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":0,"timeUnix":1733486202488,"ts":"2024-12-06T11:56:42.488Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"select id, ts, cts, txid, resource_type, resource from \"tokenintrospector\" where id = ?\n and (resource->>'_source' <> 'code' or resource->>'_source' is null)\n limit 1","d":1,"db_prm":["sdc-rsa-token-introspector"],"timeUnix":1733486202490,"ts":"2024-12-06T11:56:42.490Z","w":"main","ev":"db/q","tn":"devbox"} -{"sql":"SELECT 1","d":1,"timeUnix":1733486202490,"ts":"2024-12-06T11:56:42.490Z","w":"clojure-agent-send-off-pool-0","ev":"db/q","tn":"devbox"} -{"w_port":8888,"timeUnix":1733486202493,"ts":"2024-12-06T11:56:42.493Z","w":"main","ev":"web.core/start","tn":"devbox"} -{"ev":"awf.executor/start-service","zen/tags":["aidbox/service"],"w":"main","shutdown-timeout":1000,"zen/file":"file:/aidbox.jar!/aidbox.edn","tn":"devbox","zen/name":"aidbox/aidbox-long-pool-executor-service","timeUnix":1733486202512,"ts":"2024-12-06T11:56:42.512Z","engine":"awf.executor/task-executor-service-engine","workers":3,"taskDefinitions":["aidbox.bulk/import-resource-task","aidbox.archive/create-archive","aidbox.archive/restore-archive","aidbox.archive/delete-archive","aidbox.archive/prune-archived-data","ingestion.core/map-to-fhir-bundle-task","aidbox.index/create-index-task","aidbox.index/drop-index-task","aidbox.validation/resource-type-batch-validation-task","awf.task/clean-up-activities","aidbox.task/run-sql","aidbox.task/run-rpc","fhir.topic-based-subscription/handshake","fhir.topic-based-subscription/topic-based-subscriptions-clean-up-task","box.npi/sync-npi"]} -{"ev":"awf.executor/start-service","zen/tags":["aidbox/service"],"w":"main","shutdown-timeout":1000,"zen/file":"file:/aidbox.jar!/aidbox.edn","tn":"devbox","zen/name":"aidbox/aidbox-decisions-pool-executor-service","timeUnix":1733486202516,"ts":"2024-12-06T11:56:42.516Z","engine":"awf.executor/task-executor-service-engine","workflowDefinitions":["aidbox.bulk/import-resources-workflow","aidbox.index/sync-indexes-workflow","aidbox.validation/resource-types-batch-validation-workflow","aidbox.task/call-task-on-sql-result-workflow"],"workers":2} -{"ev":"awf.core/start-service","zen/tags":["aidbox/service"],"w":"main","zen/file":"file:/aidbox.jar!/awf/task.edn","tn":"devbox","zen/name":"awf.task/task-service","timeUnix":1733486202516,"ts":"2024-12-06T11:56:42.516Z","engine":"awf.task/task-service-engine"} -{"ev":"db/datasource","w":"main","tn":"devbox","minimum-idle":0,"timeUnix":1733486202536,"ts":"2024-12-06T11:56:42.536Z","connection-init-sql":"select 1","connection-timeout":30000,"database":"aidbox","maximum-pool-size":8,"idle-timeout":10000} -{"sql":"select id, ts, cts, txid, resource_type, resource from \"operation\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":9,"timeUnix":1733486204455,"ts":"2024-12-06T11:56:44.454Z","w":"w1","ev":"db/q","tn":"devbox","ctx":"4202a0fc11cec72c"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":6,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486204476,"ts":"2024-12-06T11:56:44.476Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":52,"w_st":200,"ctx":"4202a0fc11cec72c"} -{"ev":"db/q","w":"w1","tn":"devbox","op":"health","timeUnix":1733486204479,"ts":"2024-12-06T11:56:44.479Z","sql":"select id, ts, cts, txid, resource_type, resource from \"lambda\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":1,"ctx":"4202a0fc11cec72c"} -{"ev":"w/req","w_url":"/","w":"w2","w_m":"get","tn":"devbox","op":"index","timeUnix":1733486208040,"ts":"2024-12-06T11:56:48.038Z","w_addr":"192.168.65.1","ctx":"8770b07ba751624a","wait_time":19} -{"ev":"db/q","w":"w2","tn":"devbox","op":"index","timeUnix":1733486208064,"ts":"2024-12-06T11:56:48.064Z","sql":"select id, ts, cts, txid, resource_type, resource from \"accesspolicy\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":15,"ctx":"8770b07ba751624a"} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"index","tn":"devbox","op":"index","timeUnix":1733486208076,"ts":"2024-12-06T11:56:48.076Z","access-policy-id":"index","ctx":"8770b07ba751624a"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/","w":"w2","execution_time":37,"w_m":"get","tn":"devbox","op":"index","timeUnix":1733486208079,"ts":"2024-12-06T11:56:48.079Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /","d":73,"w_st":302,"ctx":"8770b07ba751624a"} -{"ev":"w/req","w_url":"/ui/console","w":"w3","w_m":"get","tn":"devbox","op":"console","timeUnix":1733486208416,"ts":"2024-12-06T11:56:48.416Z","w_addr":"192.168.65.1","ctx":"fda5beb87ff8ca14","wait_time":1} -{"w_referer":null,"ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/ui/console","w":"w3","execution_time":158,"w_m":"get","tn":"devbox","op":"console","timeUnix":1733486208575,"ts":"2024-12-06T11:56:48.574Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /ui/console","d":166,"w_st":200,"ctx":"fda5beb87ff8ca14"} -{"ev":"w/req","w_url":"/auth/login","w":"w5","w_m":"get","tn":"devbox","op":"login-view","timeUnix":1733486209634,"ts":"2024-12-06T11:56:49.634Z","w_addr":"192.168.65.1","ctx":"909fe1c1416679fb","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-login-view","tn":"devbox","op":"login-view","timeUnix":1733486209635,"ts":"2024-12-06T11:56:49.635Z","access-policy-id":"auth-public-endpoints","ctx":"909fe1c1416679fb"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"login-view","timeUnix":1733486209642,"ts":"2024-12-06T11:56:49.642Z","sql":"SELECT * FROM \"authconfig\"","d":5,"ctx":"909fe1c1416679fb"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"login-view","timeUnix":1733486209649,"ts":"2024-12-06T11:56:49.649Z","sql":"select * from identityprovider","d":2,"ctx":"909fe1c1416679fb"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"login-view","timeUnix":1733486209652,"ts":"2024-12-06T11:56:49.651Z","sql":"SELECT * FROM \"authconfig\"","d":1,"ctx":"909fe1c1416679fb"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"login-view","timeUnix":1733486209657,"ts":"2024-12-06T11:56:49.657Z","sql":"SELECT * FROM \"authconfig\"","d":1,"ctx":"909fe1c1416679fb"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/login","w":"w5","execution_time":30,"w_m":"get","tn":"devbox","op":"login-view","timeUnix":1733486209664,"ts":"2024-12-06T11:56:49.664Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/login","d":33,"w_st":200,"ctx":"909fe1c1416679fb"} -{"ev":"w/req","w_url":"/favicon.ico","w":"w1","w_m":"get","tn":"devbox","op":"not-found-operation","timeUnix":1733486209975,"ts":"2024-12-06T11:56:49.975Z","w_addr":"192.168.65.1","ctx":"e28e6e8162fa2109","wait_time":0} -{"w_referer":"http://localhost:8888/auth/login","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/favicon.ico","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"not-found-operation","timeUnix":1733486209976,"ts":"2024-12-06T11:56:49.976Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /favicon.ico","d":2,"w_st":404,"ctx":"e28e6e8162fa2109"} -{"ev":"w/req","w_url":"/auth/login","w":"w3","w_m":"post","tn":"devbox","op":"login","timeUnix":1733486213982,"ts":"2024-12-06T11:56:53.982Z","w_addr":"192.168.65.1","ctx":"e4db0a0a40129413","wait_time":9,"w_qs":""} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-login","tn":"devbox","op":"login","timeUnix":1733486213985,"ts":"2024-12-06T11:56:53.985Z","access-policy-id":"auth-public-endpoints","ctx":"e4db0a0a40129413"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"login","timeUnix":1733486214003,"ts":"2024-12-06T11:56:54.003Z","sql":"select * from \"user\" where id = ? or lower(resource->>'email') = lower(?) or resource->>'userName' = ?","db_prm":["admin","admin","admin"],"d":15,"ctx":"e4db0a0a40129413"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"login","timeUnix":1733486214397,"ts":"2024-12-06T11:56:54.397Z","sql":"SELECT * FROM \"authconfig\"","d":1,"ctx":"e4db0a0a40129413"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"login","timeUnix":1733486214415,"ts":"2024-12-06T11:56:54.415Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"user\" WHERE (\"id\" in (?)))","db_prm":["admin"],"d":1,"ctx":"e4db0a0a40129413"} -{"ev":"resource/create","txid":"6","w":"w3","tn":"devbox","op":"login","timeUnix":1733486214422,"ts":"2024-12-06T11:56:54.422Z","rtp":"Session","ctx":"e4db0a0a40129413","rid":"558777b3-6e1d-4494-a4c5-ad6948f97458"} -{"ev":"auth/login","uid":"admin","w":"w3","tn":"devbox","op":"login","a_sid":"558777b3-6e1d-4494-a4c5-ad6948f97458","timeUnix":1733486214423,"ts":"2024-12-06T11:56:54.423Z","ctx":"e4db0a0a40129413"} -{"w_referer":"http://localhost:8888/auth/login","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/login","w":"w3","execution_time":441,"w_m":"post","tn":"devbox","op":"login","timeUnix":1733486214424,"ts":"2024-12-06T11:56:54.424Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /auth/login","d":465,"w_st":302,"ctx":"e4db0a0a40129413","w_qs":""} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733486214434,"ts":"2024-12-06T11:56:54.434Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"70f89b5339d8fd3a"} -{"ev":"w/req","w_url":"/ui/console","w":"w5","w_m":"get","tn":"devbox","op":"console","timeUnix":1733486214436,"ts":"2024-12-06T11:56:54.436Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"70f89b5339d8fd3a","wait_time":0} -{"w_referer":"http://localhost:8888/auth/login","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/ui/console","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"console","timeUnix":1733486214439,"ts":"2024-12-06T11:56:54.439Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /ui/console","w_uid":"admin","d":9,"w_st":200,"ctx":"70f89b5339d8fd3a"} -{"ev":"w/req","w_url":"/$config","w":"w2","w_m":"get","tn":"devbox","op":"config","timeUnix":1733486214961,"ts":"2024-12-06T11:56:54.960Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"827f8ce16a5933a8","wait_time":0} -{"ev":"w/req","w_url":"/AidboxWorkflow/onboarding-synthetic-dataset","w":"w1","w_m":"get","tn":"devbox","op":"read","timeUnix":1733486214962,"ts":"2024-12-06T11:56:54.962Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6f7c8e9955a12c16","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"Read","tn":"devbox","op":"read","timeUnix":1733486214964,"ts":"2024-12-06T11:56:54.964Z","access-policy-id":"devbox-policy","ctx":"6f7c8e9955a12c16"} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"proto/config","tn":"devbox","op":"config","timeUnix":1733486214966,"ts":"2024-12-06T11:56:54.965Z","access-policy-id":"devbox-policy","ctx":"827f8ce16a5933a8"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/$config","w":"w2","execution_time":6,"w_m":"get","tn":"devbox","op":"config","timeUnix":1733486214968,"ts":"2024-12-06T11:56:54.968Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /$config","w_uid":"admin","d":10,"w_st":200,"ctx":"827f8ce16a5933a8"} -{"ev":"db/q","w":"w1","tn":"devbox","op":"read","timeUnix":1733486214980,"ts":"2024-12-06T11:56:54.980Z","sql":"SELECT * FROM ((SELECT id, txid, ts, resource_type, status::text AS status, resource, cts FROM \"aidboxworkflow\" as t WHERE (t.id = ?)) UNION (SELECT id, txid, ts, resource_type, status::text AS status, resource, cts FROM \"aidboxworkflow_history\" as t WHERE (t.id = ? AND t.status = ?))) _ ORDER BY ts DESC, txid DESC LIMIT ?","db_prm":["onboarding-synthetic-dataset","onboarding-synthetic-dataset","deleted","1"],"d":9,"ctx":"6f7c8e9955a12c16"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/AidboxWorkflow/onboarding-synthetic-dataset","w":"w1","execution_time":20,"w_m":"get","tn":"devbox","op":"read","timeUnix":1733486214982,"ts":"2024-12-06T11:56:54.982Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"AidboxWorkflow","w_r":"GET /AidboxWorkflow/?","w_uid":"admin","d":25,"w_st":404,"ctx":"6f7c8e9955a12c16"} -{"ev":"w/req","w_url":"/rpc","w":"w2","w_m":"post","tn":"devbox","op":"rpc","timeUnix":1733486220562,"ts":"2024-12-06T11:57:00.562Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e440edaeeec46281","wait_time":11,"w_qs":"_format=transit&_m=aidbox.security/dashboard"} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"rpc","tn":"devbox","op":"rpc","timeUnix":1733486220565,"ts":"2024-12-06T11:57:00.565Z","access-policy-id":"devbox-policy","ctx":"e440edaeeec46281"} -{"ev":"db/q","w":"w2","tn":"devbox","op":"rpc:dashboard","timeUnix":1733486220608,"ts":"2024-12-06T11:57:00.607Z","sql":"select jsonb_build_array(jsonb_build_object('resource_type', 'User', 'count', (select count(*) from \"user\")), jsonb_build_object('resource_type', 'Client', 'count', (select count(*) from \"client\")), jsonb_build_object('resource_type', 'Session', 'count', (select count(*) from \"session\")), jsonb_build_object('resource_type', 'AccessPolicy', 'count', (select count(*) from \"accesspolicy\")), jsonb_build_object('resource_type', 'IdentityProvider', 'count', (select count(*) from \"identityprovider\")), ","d":19,"ctx":"e440edaeeec46281"} -{"ev":"rpc/call","rpc_m":"aidbox.security/dashboard","w":"w2","tn":"devbox","rpc_u":{"email":null},"op":"rpc:dashboard","timeUnix":1733486220611,"ts":"2024-12-06T11:57:00.611Z","d":34,"ctx":"e440edaeeec46281","lvl":"info"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/rpc","w":"w2","execution_time":49,"w_m":"post","tn":"devbox","op":"rpc:dashboard","timeUnix":1733486220612,"ts":"2024-12-06T11:57:00.612Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /rpc","w_uid":"admin","d":73,"w_st":200,"ctx":"e440edaeeec46281","w_qs":"_format=transit&_m=aidbox.security/dashboard"} -{"ev":"w/req","w_url":"/Client","w":"w7","w_m":"get","tn":"devbox","op":"search","timeUnix":1733486221576,"ts":"2024-12-06T11:57:01.576Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"855e41b2de7fc9bc","wait_time":0,"w_qs":"_count=300&_sort=_id&_ilike="} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"Search","tn":"devbox","op":"search","timeUnix":1733486221576,"ts":"2024-12-06T11:57:01.576Z","access-policy-id":"devbox-policy","ctx":"855e41b2de7fc9bc"} -{"ev":"db/q","w":"w7","tn":"devbox","op":"search","timeUnix":1733486221682,"ts":"2024-12-06T11:57:01.682Z","sql":"SELECT \"client\".* FROM \"client\" ORDER BY \"client\".id ASC LIMIT ? OFFSET ? ","db_prm":["300","0"],"d":43,"ctx":"855e41b2de7fc9bc"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/Client","w":"w7","execution_time":115,"w_m":"get","tn":"devbox","op":"search","timeUnix":1733486221691,"ts":"2024-12-06T11:57:01.691Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Client","w_r":"GET /Client","w_uid":"admin","d":116,"w_st":200,"ctx":"855e41b2de7fc9bc","w_qs":"_count=300&_sort=_id&_ilike="} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486224923,"ts":"2024-12-06T11:57:04.923Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1a7e19cd86f96f5d","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486224924,"ts":"2024-12-06T11:57:04.924Z","access-policy-id":"devbox-policy","ctx":"1a7e19cd86f96f5d"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486224924,"ts":"2024-12-06T11:57:04.924Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"1a7e19cd86f96f5d"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486234546,"ts":"2024-12-06T11:57:14.546Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"84b95e9f762a80b9"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486234929,"ts":"2024-12-06T11:57:14.929Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0d73ad9b5dc26315","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486234930,"ts":"2024-12-06T11:57:14.930Z","access-policy-id":"devbox-policy","ctx":"0d73ad9b5dc26315"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486234931,"ts":"2024-12-06T11:57:14.931Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"0d73ad9b5dc26315"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733486244936,"ts":"2024-12-06T11:57:24.936Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"fbc3cbd349041afd"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486244939,"ts":"2024-12-06T11:57:24.939Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"fbc3cbd349041afd","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486244940,"ts":"2024-12-06T11:57:24.940Z","access-policy-id":"devbox-policy","ctx":"fbc3cbd349041afd"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486244940,"ts":"2024-12-06T11:57:24.940Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":12,"w_st":200,"ctx":"fbc3cbd349041afd"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486254942,"ts":"2024-12-06T11:57:34.942Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a529a80db8cf003c","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486254943,"ts":"2024-12-06T11:57:34.943Z","access-policy-id":"devbox-policy","ctx":"a529a80db8cf003c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486254944,"ts":"2024-12-06T11:57:34.944Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"a529a80db8cf003c"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486264617,"ts":"2024-12-06T11:57:44.617Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":7,"w_st":200,"ctx":"a1776faafde1e520"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486264941,"ts":"2024-12-06T11:57:44.940Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"de65e73f64063b70","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486264942,"ts":"2024-12-06T11:57:44.941Z","access-policy-id":"devbox-policy","ctx":"de65e73f64063b70"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486264943,"ts":"2024-12-06T11:57:44.943Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"de65e73f64063b70"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w7","execution_time":4,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486274936,"ts":"2024-12-06T11:57:54.936Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":10,"w_st":200,"ctx":"96c7c28d2cd1cf9a"} -{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733486274939,"ts":"2024-12-06T11:57:54.939Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"7094b3f9a01825ce"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486274942,"ts":"2024-12-06T11:57:54.942Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7094b3f9a01825ce","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486274943,"ts":"2024-12-06T11:57:54.943Z","access-policy-id":"devbox-policy","ctx":"7094b3f9a01825ce"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486274943,"ts":"2024-12-06T11:57:54.943Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"7094b3f9a01825ce"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486284944,"ts":"2024-12-06T11:58:04.944Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7c1d6e85f160c201","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486284945,"ts":"2024-12-06T11:58:04.945Z","access-policy-id":"devbox-policy","ctx":"7c1d6e85f160c201"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486284947,"ts":"2024-12-06T11:58:04.947Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"7c1d6e85f160c201"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486294676,"ts":"2024-12-06T11:58:14.676Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":5,"w_st":200,"ctx":"ae9d54ac5fc82c56"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486294957,"ts":"2024-12-06T11:58:14.957Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"2c7a357f815cf08b","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486294958,"ts":"2024-12-06T11:58:14.958Z","access-policy-id":"devbox-policy","ctx":"2c7a357f815cf08b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486294959,"ts":"2024-12-06T11:58:14.959Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"2c7a357f815cf08b"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733486304959,"ts":"2024-12-06T11:58:24.959Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"cd9408b6d0c2a7e0"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486304963,"ts":"2024-12-06T11:58:24.963Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"cd9408b6d0c2a7e0","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486304964,"ts":"2024-12-06T11:58:24.964Z","access-policy-id":"devbox-policy","ctx":"cd9408b6d0c2a7e0"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486304965,"ts":"2024-12-06T11:58:24.965Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"cd9408b6d0c2a7e0"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486314962,"ts":"2024-12-06T11:58:34.962Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b9e0b1b0906c0b18","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486314963,"ts":"2024-12-06T11:58:34.963Z","access-policy-id":"devbox-policy","ctx":"b9e0b1b0906c0b18"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486314964,"ts":"2024-12-06T11:58:34.964Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"b9e0b1b0906c0b18"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486324775,"ts":"2024-12-06T11:58:44.775Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":9,"w_st":200,"ctx":"e476fde0f1bc7972"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486324965,"ts":"2024-12-06T11:58:44.965Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a7d8bb2275d94a5e","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486324967,"ts":"2024-12-06T11:58:44.967Z","access-policy-id":"devbox-policy","ctx":"a7d8bb2275d94a5e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486324968,"ts":"2024-12-06T11:58:44.968Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"a7d8bb2275d94a5e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486334953,"ts":"2024-12-06T11:58:54.953Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":7,"w_st":200,"ctx":"f22ed47cd3e7dc0a"} -{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733486334964,"ts":"2024-12-06T11:58:54.964Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"b872d024af334c6f"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486334965,"ts":"2024-12-06T11:58:54.965Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b872d024af334c6f","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486334966,"ts":"2024-12-06T11:58:54.966Z","access-policy-id":"devbox-policy","ctx":"b872d024af334c6f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486334966,"ts":"2024-12-06T11:58:54.966Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"b872d024af334c6f"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486344985,"ts":"2024-12-06T11:59:04.985Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e4eec09447584cea","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486344986,"ts":"2024-12-06T11:59:04.986Z","access-policy-id":"devbox-policy","ctx":"e4eec09447584cea"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486344986,"ts":"2024-12-06T11:59:04.986Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"e4eec09447584cea"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733486352289,"ts":"2024-12-06T11:59:12.289Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":2,"ctx":"2c5f1254784c8031"} -{"ev":"w/req","w_url":"/Patient","w":"w2","w_m":"post","tn":"devbox","op":"create","timeUnix":1733486352291,"ts":"2024-12-06T11:59:12.291Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"2c5f1254784c8031","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733486352294,"ts":"2024-12-06T11:59:12.294Z","access-policy-id":"devbox-policy","ctx":"2c5f1254784c8031"} -{"ev":"resource/create","txid":"7","w":"w2","tn":"devbox","op":"create","timeUnix":1733486352790,"ts":"2024-12-06T11:59:12.790Z","rtp":"Patient","ctx":"2c5f1254784c8031","rid":"1ec0f8de-1984-4700-a020-2734b8d425fa"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w2","execution_time":502,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733486352793,"ts":"2024-12-06T11:59:12.793Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"POST /Patient","d":514,"w_st":201,"ctx":"2c5f1254784c8031"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486354827,"ts":"2024-12-06T11:59:14.826Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"5d988cd1d2b45705"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486355043,"ts":"2024-12-06T11:59:15.043Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3ce219fc2cc5e2e5","wait_time":7} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486355043,"ts":"2024-12-06T11:59:15.043Z","access-policy-id":"devbox-policy","ctx":"3ce219fc2cc5e2e5"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486355044,"ts":"2024-12-06T11:59:15.044Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"3ce219fc2cc5e2e5"} -{"ev":"w/req","w_url":"/fhir/Patient","w":"w1","w_m":"get","tn":"devbox","op":"search","timeUnix":1733486357105,"ts":"2024-12-06T11:59:17.105Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b2f8a551b974167c","wait_time":2,"w_qs":"_count=30&_sort=_id&_ilike="} -{"ev":"w/req","w_url":"/rpc","w":"w2","w_m":"post","tn":"devbox","op":"rpc","timeUnix":1733486357105,"ts":"2024-12-06T11:59:17.105Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ee6da69f55ac3591","wait_time":10,"w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"FhirSearch","tn":"devbox","op":"search","timeUnix":1733486357106,"ts":"2024-12-06T11:59:17.106Z","access-policy-id":"devbox-policy","ctx":"b2f8a551b974167c"} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"rpc","tn":"devbox","op":"rpc","timeUnix":1733486357106,"ts":"2024-12-06T11:59:17.106Z","access-policy-id":"devbox-policy","ctx":"ee6da69f55ac3591"} -{"ev":"w/req","w_url":"/fhir/metadata","w":"w5","w_m":"get","tn":"devbox","op":"capability","timeUnix":1733486357106,"ts":"2024-12-06T11:59:17.106Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f0af8fa43c606cf7","wait_time":10,"w_qs":"include-custom-resources=true"} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"fhir-capability","tn":"devbox","op":"capability","timeUnix":1733486357107,"ts":"2024-12-06T11:59:17.107Z","access-policy-id":"devbox-policy","ctx":"f0af8fa43c606cf7"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"capability","timeUnix":1733486357113,"ts":"2024-12-06T11:59:17.113Z","sql":"SELECT * FROM \"aidboxconfig\" WHERE \"id\" = ?","db_prm":["box"],"d":2,"ctx":"f0af8fa43c606cf7"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"capability","timeUnix":1733486357116,"ts":"2024-12-06T11:59:17.116Z","sql":"select id, ts, cts, txid, resource_type, resource from \"searchparameter\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":3,"ctx":"f0af8fa43c606cf7"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/metadata","w":"w5","execution_time":16,"w_m":"get","tn":"devbox","op":"capability","timeUnix":1733486357122,"ts":"2024-12-06T11:59:17.122Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /fhir/metadata","w_uid":"admin","d":30,"w_st":200,"ctx":"f0af8fa43c606cf7","w_qs":"include-custom-resources=true"} -{"ev":"db/q","w":"w1","tn":"devbox","op":"search","timeUnix":1733486357222,"ts":"2024-12-06T11:59:17.222Z","sql":"SELECT \"patient\".* FROM \"patient\" ORDER BY \"patient\".id ASC LIMIT ? OFFSET ? ","db_prm":["30","0"],"d":1,"ctx":"b2f8a551b974167c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Patient","w":"w1","execution_time":121,"w_m":"get","tn":"devbox","op":"search","timeUnix":1733486357226,"ts":"2024-12-06T11:59:17.226Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Patient","w_r":"GET /fhir/Patient","w_uid":"admin","d":134,"w_st":200,"ctx":"b2f8a551b974167c","w_qs":"_count=30&_sort=_id&_ilike="} -{"rpc_p":{"resource-type":"Patient"},"ev":"rpc/call","rpc_m":"aidbox.introspector/get-schemas-by-resource-type","w":"w2","tn":"devbox","rpc_u":{"email":null},"op":"rpc:get-schemas-by-resource-type","timeUnix":1733486357485,"ts":"2024-12-06T11:59:17.485Z","d":369,"ctx":"ee6da69f55ac3591","lvl":"info"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/rpc","w":"w2","execution_time":379,"w_m":"post","tn":"devbox","op":"rpc:get-schemas-by-resource-type","timeUnix":1733486357485,"ts":"2024-12-06T11:59:17.485Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /rpc","w_uid":"admin","d":393,"w_st":200,"ctx":"ee6da69f55ac3591","w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} -{"ev":"w/req","w_url":"/fhir/Patient/$validate","w":"w6","w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733486359587,"ts":"2024-12-06T11:59:19.587Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"2136d3236ec4a74c","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"FhirValidateCreate","tn":"devbox","op":"$validate","timeUnix":1733486359588,"ts":"2024-12-06T11:59:19.588Z","access-policy-id":"devbox-policy","ctx":"2136d3236ec4a74c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Patient/$validate","w":"w6","execution_time":219,"w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733486359807,"ts":"2024-12-06T11:59:19.807Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Patient","w_r":"POST /fhir/Patient/$validate","w_uid":"admin","d":225,"w_st":200,"ctx":"2136d3236ec4a74c"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733486364980,"ts":"2024-12-06T11:59:24.980Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"c45ff945135bbd08"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486364985,"ts":"2024-12-06T11:59:24.984Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c45ff945135bbd08","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486364985,"ts":"2024-12-06T11:59:24.985Z","access-policy-id":"devbox-policy","ctx":"c45ff945135bbd08"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486364986,"ts":"2024-12-06T11:59:24.986Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"c45ff945135bbd08"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486374995,"ts":"2024-12-06T11:59:34.994Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0f1e59f38c05364d","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486374996,"ts":"2024-12-06T11:59:34.996Z","access-policy-id":"devbox-policy","ctx":"0f1e59f38c05364d"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486374997,"ts":"2024-12-06T11:59:34.997Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"0f1e59f38c05364d"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486384908,"ts":"2024-12-06T11:59:44.908Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":7,"w_st":200,"ctx":"981ff24e697f8f11"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486384991,"ts":"2024-12-06T11:59:44.991Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7c059659ee035f73","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486384992,"ts":"2024-12-06T11:59:44.992Z","access-policy-id":"devbox-policy","ctx":"7c059659ee035f73"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486384992,"ts":"2024-12-06T11:59:44.992Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"7c059659ee035f73"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486394942,"ts":"2024-12-06T11:59:54.942Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":4,"w_st":200,"ctx":"776468e0db01e918"} -{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733486394990,"ts":"2024-12-06T11:59:54.990Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"febde997ffa86cdf"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486394992,"ts":"2024-12-06T11:59:54.992Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"febde997ffa86cdf","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486394993,"ts":"2024-12-06T11:59:54.993Z","access-policy-id":"devbox-policy","ctx":"febde997ffa86cdf"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486394993,"ts":"2024-12-06T11:59:54.993Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"febde997ffa86cdf"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486404998,"ts":"2024-12-06T12:00:04.998Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1b0557f9a6b52a01","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486404999,"ts":"2024-12-06T12:00:04.999Z","access-policy-id":"devbox-policy","ctx":"1b0557f9a6b52a01"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486405000,"ts":"2024-12-06T12:00:04.999Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"1b0557f9a6b52a01"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486414970,"ts":"2024-12-06T12:00:14.970Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"c19ef57770910c84"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486414993,"ts":"2024-12-06T12:00:14.993Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"cc8eb4838931a12e","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486414994,"ts":"2024-12-06T12:00:14.994Z","access-policy-id":"devbox-policy","ctx":"cc8eb4838931a12e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486414994,"ts":"2024-12-06T12:00:14.994Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"cc8eb4838931a12e"} -{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733486425005,"ts":"2024-12-06T12:00:25.005Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":7,"ctx":"2aedb573ea88efe7"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486425008,"ts":"2024-12-06T12:00:25.008Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"2aedb573ea88efe7","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486425008,"ts":"2024-12-06T12:00:25.008Z","access-policy-id":"devbox-policy","ctx":"2aedb573ea88efe7"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486425009,"ts":"2024-12-06T12:00:25.009Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":13,"w_st":200,"ctx":"2aedb573ea88efe7"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486435014,"ts":"2024-12-06T12:00:35.014Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f49c5c8e4a0049ec","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486435016,"ts":"2024-12-06T12:00:35.016Z","access-policy-id":"devbox-policy","ctx":"f49c5c8e4a0049ec"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486435018,"ts":"2024-12-06T12:00:35.018Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"f49c5c8e4a0049ec"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486445005,"ts":"2024-12-06T12:00:45.005Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"fd32832bcc68fe1c","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486445006,"ts":"2024-12-06T12:00:45.006Z","access-policy-id":"devbox-policy","ctx":"fd32832bcc68fe1c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486445007,"ts":"2024-12-06T12:00:45.007Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"fd32832bcc68fe1c"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486445034,"ts":"2024-12-06T12:00:45.034Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"65886e4c76e1144a"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486454943,"ts":"2024-12-06T12:00:54.943Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":6,"w_st":200,"ctx":"4be3247552f00348"} -{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733486455010,"ts":"2024-12-06T12:00:55.010Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"7e0c5767d7c14419"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486455012,"ts":"2024-12-06T12:00:55.012Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7e0c5767d7c14419","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486455014,"ts":"2024-12-06T12:00:55.014Z","access-policy-id":"devbox-policy","ctx":"7e0c5767d7c14419"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486455015,"ts":"2024-12-06T12:00:55.015Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"7e0c5767d7c14419"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486465018,"ts":"2024-12-06T12:01:05.018Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e3a0dc11315dca72","wait_time":5} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486465019,"ts":"2024-12-06T12:01:05.019Z","access-policy-id":"devbox-policy","ctx":"e3a0dc11315dca72"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486465019,"ts":"2024-12-06T12:01:05.019Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"e3a0dc11315dca72"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486475016,"ts":"2024-12-06T12:01:15.015Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ddf1e31eb31e346c","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486475017,"ts":"2024-12-06T12:01:15.017Z","access-policy-id":"devbox-policy","ctx":"ddf1e31eb31e346c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486475018,"ts":"2024-12-06T12:01:15.018Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"ddf1e31eb31e346c"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486475084,"ts":"2024-12-06T12:01:15.084Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"fd0f4bf66fb9dcb4"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733486485024,"ts":"2024-12-06T12:01:25.024Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"b797eaf430e3bd94"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486485028,"ts":"2024-12-06T12:01:25.028Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b797eaf430e3bd94","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486485029,"ts":"2024-12-06T12:01:25.029Z","access-policy-id":"devbox-policy","ctx":"b797eaf430e3bd94"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486485030,"ts":"2024-12-06T12:01:25.030Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"b797eaf430e3bd94"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486495024,"ts":"2024-12-06T12:01:35.024Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"49d0c7088a717a45","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486495025,"ts":"2024-12-06T12:01:35.025Z","access-policy-id":"devbox-policy","ctx":"49d0c7088a717a45"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486495026,"ts":"2024-12-06T12:01:35.026Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"49d0c7088a717a45"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486505034,"ts":"2024-12-06T12:01:45.033Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7cdcda5c4269d4aa","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486505034,"ts":"2024-12-06T12:01:45.034Z","access-policy-id":"devbox-policy","ctx":"7cdcda5c4269d4aa"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486505035,"ts":"2024-12-06T12:01:45.035Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"7cdcda5c4269d4aa"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486505165,"ts":"2024-12-06T12:01:45.165Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"066a01a57631e1f7"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486514940,"ts":"2024-12-06T12:01:54.940Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":4,"w_st":200,"ctx":"fcd4ca8064d9e360"} -{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733486515034,"ts":"2024-12-06T12:01:55.034Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"dc53f0f4bd04023c"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486515037,"ts":"2024-12-06T12:01:55.037Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"dc53f0f4bd04023c","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486515037,"ts":"2024-12-06T12:01:55.037Z","access-policy-id":"devbox-policy","ctx":"dc53f0f4bd04023c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486515038,"ts":"2024-12-06T12:01:55.038Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"dc53f0f4bd04023c"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486525040,"ts":"2024-12-06T12:02:05.040Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"be48708e48c761d2","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486525041,"ts":"2024-12-06T12:02:05.041Z","access-policy-id":"devbox-policy","ctx":"be48708e48c761d2"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486525042,"ts":"2024-12-06T12:02:05.042Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"be48708e48c761d2"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486535046,"ts":"2024-12-06T12:02:15.045Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"27a693c133f5fd56","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486535048,"ts":"2024-12-06T12:02:15.048Z","access-policy-id":"devbox-policy","ctx":"27a693c133f5fd56"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486535049,"ts":"2024-12-06T12:02:15.049Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"27a693c133f5fd56"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486535235,"ts":"2024-12-06T12:02:15.235Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"860e2620e5fe14a6"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733486545070,"ts":"2024-12-06T12:02:25.070Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":28,"ctx":"13c737e5b1f2c9ce"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486545073,"ts":"2024-12-06T12:02:25.073Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"13c737e5b1f2c9ce","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486545074,"ts":"2024-12-06T12:02:25.074Z","access-policy-id":"devbox-policy","ctx":"13c737e5b1f2c9ce"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486545074,"ts":"2024-12-06T12:02:25.074Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":33,"w_st":200,"ctx":"13c737e5b1f2c9ce"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486555061,"ts":"2024-12-06T12:02:35.060Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d1c2ee881cf58dff","wait_time":8} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486555062,"ts":"2024-12-06T12:02:35.062Z","access-policy-id":"devbox-policy","ctx":"d1c2ee881cf58dff"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486555063,"ts":"2024-12-06T12:02:35.063Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":21,"w_st":200,"ctx":"d1c2ee881cf58dff"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486565044,"ts":"2024-12-06T12:02:45.043Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"49fdc3d944cda460","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486565044,"ts":"2024-12-06T12:02:45.044Z","access-policy-id":"devbox-policy","ctx":"49fdc3d944cda460"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486565045,"ts":"2024-12-06T12:02:45.045Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"49fdc3d944cda460"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486565293,"ts":"2024-12-06T12:02:45.293Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"d94c20027d61cdad"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w6","execution_time":6,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486574954,"ts":"2024-12-06T12:02:54.954Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":12,"w_st":200,"ctx":"910dfcdf3bec1808"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733486575047,"ts":"2024-12-06T12:02:55.047Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"aa240263dd105e02"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486575050,"ts":"2024-12-06T12:02:55.050Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"aa240263dd105e02","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486575052,"ts":"2024-12-06T12:02:55.052Z","access-policy-id":"devbox-policy","ctx":"aa240263dd105e02"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486575053,"ts":"2024-12-06T12:02:55.053Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"aa240263dd105e02"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486585061,"ts":"2024-12-06T12:03:05.061Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a1ded57a878a0b25","wait_time":4} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486585062,"ts":"2024-12-06T12:03:05.062Z","access-policy-id":"devbox-policy","ctx":"a1ded57a878a0b25"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486585063,"ts":"2024-12-06T12:03:05.063Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":14,"w_st":200,"ctx":"a1ded57a878a0b25"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486595075,"ts":"2024-12-06T12:03:15.075Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"50fdad70365d5a4f","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486595077,"ts":"2024-12-06T12:03:15.077Z","access-policy-id":"devbox-policy","ctx":"50fdad70365d5a4f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486595078,"ts":"2024-12-06T12:03:15.078Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"50fdad70365d5a4f"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486595375,"ts":"2024-12-06T12:03:15.375Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"48e5fa80d8a2c6b5"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733486605115,"ts":"2024-12-06T12:03:25.115Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"37f81fd37ba30e54"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486605117,"ts":"2024-12-06T12:03:25.117Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"37f81fd37ba30e54","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486605118,"ts":"2024-12-06T12:03:25.118Z","access-policy-id":"devbox-policy","ctx":"37f81fd37ba30e54"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486605119,"ts":"2024-12-06T12:03:25.119Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":12,"w_st":200,"ctx":"37f81fd37ba30e54"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486615157,"ts":"2024-12-06T12:03:35.157Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"8bd7a3225e8984cf","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486615159,"ts":"2024-12-06T12:03:35.159Z","access-policy-id":"devbox-policy","ctx":"8bd7a3225e8984cf"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486615160,"ts":"2024-12-06T12:03:35.160Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":15,"w_st":200,"ctx":"8bd7a3225e8984cf"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486625181,"ts":"2024-12-06T12:03:45.181Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a6a049e7d8224520","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486625182,"ts":"2024-12-06T12:03:45.182Z","access-policy-id":"devbox-policy","ctx":"a6a049e7d8224520"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486625183,"ts":"2024-12-06T12:03:45.183Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"a6a049e7d8224520"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486625445,"ts":"2024-12-06T12:03:45.445Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"69b3ab2d0891bf79"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733486635227,"ts":"2024-12-06T12:03:55.226Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"514dd032cb502a2b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486635233,"ts":"2024-12-06T12:03:55.232Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":11,"w_st":200,"ctx":"514dd032cb502a2b"} -{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733486635241,"ts":"2024-12-06T12:03:55.241Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":18,"ctx":"178731c55eda61df"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486635243,"ts":"2024-12-06T12:03:55.243Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"178731c55eda61df","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486635243,"ts":"2024-12-06T12:03:55.243Z","access-policy-id":"devbox-policy","ctx":"178731c55eda61df"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486635244,"ts":"2024-12-06T12:03:55.244Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":22,"w_st":200,"ctx":"178731c55eda61df"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486645272,"ts":"2024-12-06T12:04:05.271Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"932b840bfe9544c3","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486645274,"ts":"2024-12-06T12:04:05.274Z","access-policy-id":"devbox-policy","ctx":"932b840bfe9544c3"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486645276,"ts":"2024-12-06T12:04:05.276Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"932b840bfe9544c3"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486655301,"ts":"2024-12-06T12:04:15.301Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a77263db6ee5dc41","wait_time":4} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486655301,"ts":"2024-12-06T12:04:15.301Z","access-policy-id":"devbox-policy","ctx":"a77263db6ee5dc41"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486655302,"ts":"2024-12-06T12:04:15.302Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"a77263db6ee5dc41"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486655525,"ts":"2024-12-06T12:04:15.525Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"0f27fa20d2f1e2bf"} -{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733486665435,"ts":"2024-12-06T12:04:25.434Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":8,"ctx":"aec2004f6e2fc602"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486665445,"ts":"2024-12-06T12:04:25.445Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"aec2004f6e2fc602","wait_time":6} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486665448,"ts":"2024-12-06T12:04:25.448Z","access-policy-id":"devbox-policy","ctx":"aec2004f6e2fc602"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486665450,"ts":"2024-12-06T12:04:25.450Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":32,"w_st":200,"ctx":"aec2004f6e2fc602"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486675492,"ts":"2024-12-06T12:04:35.492Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"90a3230f06517e3e","wait_time":4} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486675493,"ts":"2024-12-06T12:04:35.493Z","access-policy-id":"devbox-policy","ctx":"90a3230f06517e3e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486675493,"ts":"2024-12-06T12:04:35.493Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"90a3230f06517e3e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486685539,"ts":"2024-12-06T12:04:45.536Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7d9e8de231f7c63c","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486685553,"ts":"2024-12-06T12:04:45.553Z","access-policy-id":"devbox-policy","ctx":"7d9e8de231f7c63c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":15,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486685556,"ts":"2024-12-06T12:04:45.556Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":34,"w_st":200,"ctx":"7d9e8de231f7c63c"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486685642,"ts":"2024-12-06T12:04:45.641Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"8954fd306424ec9f"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733486695586,"ts":"2024-12-06T12:04:55.585Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":10,"ctx":"4635f8f3edb0229c"} -{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733486695610,"ts":"2024-12-06T12:04:55.610Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":35,"ctx":"e184394fba83fbad"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486695615,"ts":"2024-12-06T12:04:55.615Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4635f8f3edb0229c","wait_time":6} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486695619,"ts":"2024-12-06T12:04:55.619Z","access-policy-id":"devbox-policy","ctx":"4635f8f3edb0229c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w7","execution_time":6,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486695620,"ts":"2024-12-06T12:04:55.620Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":53,"w_st":200,"ctx":"e184394fba83fbad"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":5,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486695620,"ts":"2024-12-06T12:04:55.620Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":52,"w_st":200,"ctx":"4635f8f3edb0229c"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486705624,"ts":"2024-12-06T12:05:05.624Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"cad4be4da8d29e75","wait_time":4} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486705626,"ts":"2024-12-06T12:05:05.626Z","access-policy-id":"devbox-policy","ctx":"cad4be4da8d29e75"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486705627,"ts":"2024-12-06T12:05:05.627Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":16,"w_st":200,"ctx":"cad4be4da8d29e75"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486715644,"ts":"2024-12-06T12:05:15.644Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"240a7e153cb83271","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486715645,"ts":"2024-12-06T12:05:15.645Z","access-policy-id":"devbox-policy","ctx":"240a7e153cb83271"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486715646,"ts":"2024-12-06T12:05:15.646Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"240a7e153cb83271"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486715727,"ts":"2024-12-06T12:05:15.727Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"c510be6963cc5c95"} -{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733486725695,"ts":"2024-12-06T12:05:25.695Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"4097123163ccd74d"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486725699,"ts":"2024-12-06T12:05:25.699Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4097123163ccd74d","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486725699,"ts":"2024-12-06T12:05:25.699Z","access-policy-id":"devbox-policy","ctx":"4097123163ccd74d"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486725700,"ts":"2024-12-06T12:05:25.700Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":14,"w_st":200,"ctx":"4097123163ccd74d"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486735765,"ts":"2024-12-06T12:05:35.765Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"99d44d0255b9992e","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486735766,"ts":"2024-12-06T12:05:35.766Z","access-policy-id":"devbox-policy","ctx":"99d44d0255b9992e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486735767,"ts":"2024-12-06T12:05:35.767Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"99d44d0255b9992e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486745806,"ts":"2024-12-06T12:05:45.806Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"5021ab7488d9f9a3","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486745807,"ts":"2024-12-06T12:05:45.807Z","access-policy-id":"devbox-policy","ctx":"5021ab7488d9f9a3"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486745808,"ts":"2024-12-06T12:05:45.808Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"5021ab7488d9f9a3"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486745853,"ts":"2024-12-06T12:05:45.853Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"1f720f9eea7246cb"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733486755838,"ts":"2024-12-06T12:05:55.838Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"ba2a448cc62c2a19"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486755841,"ts":"2024-12-06T12:05:55.841Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ba2a448cc62c2a19","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486755842,"ts":"2024-12-06T12:05:55.842Z","access-policy-id":"devbox-policy","ctx":"ba2a448cc62c2a19"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486755843,"ts":"2024-12-06T12:05:55.843Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"ba2a448cc62c2a19"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733486755851,"ts":"2024-12-06T12:05:55.851Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":15,"ctx":"26a4fca8c4c2d65d"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486755854,"ts":"2024-12-06T12:05:55.854Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":22,"w_st":200,"ctx":"26a4fca8c4c2d65d"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486765898,"ts":"2024-12-06T12:06:05.897Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a66816298c7f451f","wait_time":9} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486765901,"ts":"2024-12-06T12:06:05.901Z","access-policy-id":"devbox-policy","ctx":"a66816298c7f451f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486765902,"ts":"2024-12-06T12:06:05.902Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":34,"w_st":200,"ctx":"a66816298c7f451f"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":5,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486775958,"ts":"2024-12-06T12:06:15.958Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":6,"w_st":200,"ctx":"74fbed4a1c988bbe"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486776004,"ts":"2024-12-06T12:06:16.004Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"746b4cf17beef98f","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486776004,"ts":"2024-12-06T12:06:16.004Z","access-policy-id":"devbox-policy","ctx":"746b4cf17beef98f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486776004,"ts":"2024-12-06T12:06:16.004Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"746b4cf17beef98f"} -{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733486786127,"ts":"2024-12-06T12:06:26.127Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"7241c54fa7397607"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486786130,"ts":"2024-12-06T12:06:26.130Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7241c54fa7397607","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486786130,"ts":"2024-12-06T12:06:26.130Z","access-policy-id":"devbox-policy","ctx":"7241c54fa7397607"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486786131,"ts":"2024-12-06T12:06:26.131Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"7241c54fa7397607"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486796161,"ts":"2024-12-06T12:06:36.161Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3a98dbafb44a8ec9","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486796163,"ts":"2024-12-06T12:06:36.163Z","access-policy-id":"devbox-policy","ctx":"3a98dbafb44a8ec9"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486796164,"ts":"2024-12-06T12:06:36.164Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"3a98dbafb44a8ec9"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486806016,"ts":"2024-12-06T12:06:46.016Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":7,"w_st":200,"ctx":"c3779c2174464ba0"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486806221,"ts":"2024-12-06T12:06:46.220Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9b1c1b7a67533401","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486806222,"ts":"2024-12-06T12:06:46.222Z","access-policy-id":"devbox-policy","ctx":"9b1c1b7a67533401"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486806223,"ts":"2024-12-06T12:06:46.223Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"9b1c1b7a67533401"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733486816263,"ts":"2024-12-06T12:06:56.263Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"c8539aaee7a9596b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486816267,"ts":"2024-12-06T12:06:56.267Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":10,"w_st":200,"ctx":"c8539aaee7a9596b"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733486816273,"ts":"2024-12-06T12:06:56.273Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":13,"ctx":"163f834af16564b8"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486816275,"ts":"2024-12-06T12:06:56.275Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"163f834af16564b8","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486816275,"ts":"2024-12-06T12:06:56.275Z","access-policy-id":"devbox-policy","ctx":"163f834af16564b8"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486816275,"ts":"2024-12-06T12:06:56.275Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"163f834af16564b8"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486826282,"ts":"2024-12-06T12:07:06.282Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"92453bac45eaee93","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486826282,"ts":"2024-12-06T12:07:06.282Z","access-policy-id":"devbox-policy","ctx":"92453bac45eaee93"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486826283,"ts":"2024-12-06T12:07:06.283Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"92453bac45eaee93"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486836110,"ts":"2024-12-06T12:07:16.110Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"2a145e37966b0c27"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486836363,"ts":"2024-12-06T12:07:16.363Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"19037c169c620082","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486836364,"ts":"2024-12-06T12:07:16.364Z","access-policy-id":"devbox-policy","ctx":"19037c169c620082"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486836365,"ts":"2024-12-06T12:07:16.365Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"19037c169c620082"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733486846407,"ts":"2024-12-06T12:07:26.406Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":5,"ctx":"b68173266124ebb2"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486846415,"ts":"2024-12-06T12:07:26.415Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b68173266124ebb2","wait_time":4} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486846417,"ts":"2024-12-06T12:07:26.417Z","access-policy-id":"devbox-policy","ctx":"b68173266124ebb2"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486846418,"ts":"2024-12-06T12:07:26.418Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":21,"w_st":200,"ctx":"b68173266124ebb2"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486856447,"ts":"2024-12-06T12:07:36.447Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6853669416cc10d0","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486856448,"ts":"2024-12-06T12:07:36.448Z","access-policy-id":"devbox-policy","ctx":"6853669416cc10d0"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486856450,"ts":"2024-12-06T12:07:36.450Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"6853669416cc10d0"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486866188,"ts":"2024-12-06T12:07:46.188Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"b46e12120e0adbec"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486866483,"ts":"2024-12-06T12:07:46.483Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b0e4bcb78c94045b","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486866483,"ts":"2024-12-06T12:07:46.483Z","access-policy-id":"devbox-policy","ctx":"b0e4bcb78c94045b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486866484,"ts":"2024-12-06T12:07:46.484Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"b0e4bcb78c94045b"} -{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733486876537,"ts":"2024-12-06T12:07:56.537Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":7,"ctx":"3979f5a97ceb7d1e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486876545,"ts":"2024-12-06T12:07:56.545Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3979f5a97ceb7d1e","wait_time":4} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486876546,"ts":"2024-12-06T12:07:56.546Z","access-policy-id":"devbox-policy","ctx":"3979f5a97ceb7d1e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486876548,"ts":"2024-12-06T12:07:56.548Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":22,"w_st":200,"ctx":"3979f5a97ceb7d1e"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733486876553,"ts":"2024-12-06T12:07:56.553Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":23,"ctx":"89261a9d38ea3725"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486876556,"ts":"2024-12-06T12:07:56.556Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":32,"w_st":200,"ctx":"89261a9d38ea3725"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486886587,"ts":"2024-12-06T12:08:06.587Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"af4721a1d6db8c3d","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486886588,"ts":"2024-12-06T12:08:06.588Z","access-policy-id":"devbox-policy","ctx":"af4721a1d6db8c3d"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486886589,"ts":"2024-12-06T12:08:06.589Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"af4721a1d6db8c3d"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486896312,"ts":"2024-12-06T12:08:16.311Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":13,"w_st":200,"ctx":"9065775e0569d034"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486896772,"ts":"2024-12-06T12:08:16.772Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c2ff334bbce01931","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486896773,"ts":"2024-12-06T12:08:16.773Z","access-policy-id":"devbox-policy","ctx":"c2ff334bbce01931"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486896774,"ts":"2024-12-06T12:08:16.774Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"c2ff334bbce01931"} -{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733486906825,"ts":"2024-12-06T12:08:26.825Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"48504c62adace7ba"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486906829,"ts":"2024-12-06T12:08:26.829Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"48504c62adace7ba","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486906829,"ts":"2024-12-06T12:08:26.829Z","access-policy-id":"devbox-policy","ctx":"48504c62adace7ba"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486906830,"ts":"2024-12-06T12:08:26.830Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":13,"w_st":200,"ctx":"48504c62adace7ba"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486917035,"ts":"2024-12-06T12:08:37.035Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e26b2482bfa32988","wait_time":11} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486917038,"ts":"2024-12-06T12:08:37.038Z","access-policy-id":"devbox-policy","ctx":"e26b2482bfa32988"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486917039,"ts":"2024-12-06T12:08:37.039Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":45,"w_st":200,"ctx":"e26b2482bfa32988"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":6,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486926465,"ts":"2024-12-06T12:08:46.465Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":52,"w_st":200,"ctx":"64b5ee3ebe8e001d"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486927021,"ts":"2024-12-06T12:08:47.021Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e6972732dff21fe0","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486927023,"ts":"2024-12-06T12:08:47.023Z","access-policy-id":"devbox-policy","ctx":"e6972732dff21fe0"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486927023,"ts":"2024-12-06T12:08:47.023Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"e6972732dff21fe0"} -{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733486937110,"ts":"2024-12-06T12:08:57.109Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":22,"ctx":"3385aa9d40f6d989"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486937125,"ts":"2024-12-06T12:08:57.125Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":60,"w_st":200,"ctx":"3385aa9d40f6d989"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733486937126,"ts":"2024-12-06T12:08:57.126Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":39,"ctx":"3b1ee9e2d8a5e24e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486937128,"ts":"2024-12-06T12:08:57.128Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3b1ee9e2d8a5e24e","wait_time":13} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486937129,"ts":"2024-12-06T12:08:57.129Z","access-policy-id":"devbox-policy","ctx":"3b1ee9e2d8a5e24e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486937129,"ts":"2024-12-06T12:08:57.129Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":65,"w_st":200,"ctx":"3b1ee9e2d8a5e24e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486947147,"ts":"2024-12-06T12:09:07.146Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"166fcee3a79ebe40","wait_time":13} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486947150,"ts":"2024-12-06T12:09:07.150Z","access-policy-id":"devbox-policy","ctx":"166fcee3a79ebe40"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486947151,"ts":"2024-12-06T12:09:07.151Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":37,"w_st":200,"ctx":"166fcee3a79ebe40"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":4,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486956585,"ts":"2024-12-06T12:09:16.584Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":19,"w_st":200,"ctx":"d19fd8ec8809b4af"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486957263,"ts":"2024-12-06T12:09:17.263Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"206b96a52566f40d","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486957265,"ts":"2024-12-06T12:09:17.265Z","access-policy-id":"devbox-policy","ctx":"206b96a52566f40d"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486957266,"ts":"2024-12-06T12:09:17.266Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"206b96a52566f40d"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733486967305,"ts":"2024-12-06T12:09:27.304Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":7,"ctx":"65c46c1053ea2aa3"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486967312,"ts":"2024-12-06T12:09:27.312Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"65c46c1053ea2aa3","wait_time":6} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486967314,"ts":"2024-12-06T12:09:27.314Z","access-policy-id":"devbox-policy","ctx":"65c46c1053ea2aa3"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486967315,"ts":"2024-12-06T12:09:27.315Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":25,"w_st":200,"ctx":"65c46c1053ea2aa3"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486977343,"ts":"2024-12-06T12:09:37.343Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"987ad2014701d101","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486977344,"ts":"2024-12-06T12:09:37.344Z","access-policy-id":"devbox-policy","ctx":"987ad2014701d101"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486977345,"ts":"2024-12-06T12:09:37.345Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"987ad2014701d101"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486986700,"ts":"2024-12-06T12:09:46.700Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":10,"w_st":200,"ctx":"5b0a8302ff326a6c"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486987379,"ts":"2024-12-06T12:09:47.379Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"05750c576be9e0db","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486987380,"ts":"2024-12-06T12:09:47.380Z","access-policy-id":"devbox-policy","ctx":"05750c576be9e0db"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486987381,"ts":"2024-12-06T12:09:47.381Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"05750c576be9e0db"} -{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733486997464,"ts":"2024-12-06T12:09:57.463Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":14,"ctx":"4eaa790c0a0718fd"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486997475,"ts":"2024-12-06T12:09:57.475Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4eaa790c0a0718fd","wait_time":10} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733486997480,"ts":"2024-12-06T12:09:57.479Z","access-policy-id":"devbox-policy","ctx":"4eaa790c0a0718fd"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":10,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733486997485,"ts":"2024-12-06T12:09:57.485Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":49,"w_st":200,"ctx":"4eaa790c0a0718fd"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733486997486,"ts":"2024-12-06T12:09:57.486Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":38,"ctx":"e69342dbb5ff7b4e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":7,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733486997495,"ts":"2024-12-06T12:09:57.495Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":62,"w_st":200,"ctx":"e69342dbb5ff7b4e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487007512,"ts":"2024-12-06T12:10:07.511Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"2cc025059f9eea2b","wait_time":9} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487007515,"ts":"2024-12-06T12:10:07.515Z","access-policy-id":"devbox-policy","ctx":"2cc025059f9eea2b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487007516,"ts":"2024-12-06T12:10:07.516Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":33,"w_st":200,"ctx":"2cc025059f9eea2b"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":12,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487016822,"ts":"2024-12-06T12:10:16.822Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":15,"w_st":200,"ctx":"25a45c2f42588f1d"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487017549,"ts":"2024-12-06T12:10:17.549Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"222b36f47874484c","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487017550,"ts":"2024-12-06T12:10:17.550Z","access-policy-id":"devbox-policy","ctx":"222b36f47874484c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487017551,"ts":"2024-12-06T12:10:17.551Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"222b36f47874484c"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733487027627,"ts":"2024-12-06T12:10:27.620Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":7,"ctx":"4d6f939439e3a76e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487027630,"ts":"2024-12-06T12:10:27.630Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4d6f939439e3a76e","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487027631,"ts":"2024-12-06T12:10:27.631Z","access-policy-id":"devbox-policy","ctx":"4d6f939439e3a76e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487027631,"ts":"2024-12-06T12:10:27.631Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":20,"w_st":200,"ctx":"4d6f939439e3a76e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487037697,"ts":"2024-12-06T12:10:37.696Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"92b7a4b95d32f410","wait_time":9} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487037700,"ts":"2024-12-06T12:10:37.700Z","access-policy-id":"devbox-policy","ctx":"92b7a4b95d32f410"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487037701,"ts":"2024-12-06T12:10:37.701Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":33,"w_st":200,"ctx":"92b7a4b95d32f410"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487046917,"ts":"2024-12-06T12:10:46.917Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"d7151597894d5307"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487047723,"ts":"2024-12-06T12:10:47.723Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"54f11443b6a43636","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487047724,"ts":"2024-12-06T12:10:47.724Z","access-policy-id":"devbox-policy","ctx":"54f11443b6a43636"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487047725,"ts":"2024-12-06T12:10:47.725Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"54f11443b6a43636"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487057780,"ts":"2024-12-06T12:10:57.780Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"2fa42e558eecf111"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487057785,"ts":"2024-12-06T12:10:57.785Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"2fa42e558eecf111","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487057785,"ts":"2024-12-06T12:10:57.785Z","access-policy-id":"devbox-policy","ctx":"2fa42e558eecf111"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487057786,"ts":"2024-12-06T12:10:57.786Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"2fa42e558eecf111"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487057793,"ts":"2024-12-06T12:10:57.793Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":16,"ctx":"99ea26341da10b0f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487057796,"ts":"2024-12-06T12:10:57.796Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":21,"w_st":200,"ctx":"99ea26341da10b0f"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487067872,"ts":"2024-12-06T12:11:07.871Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a83f4b83e2fdd8ab","wait_time":5} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487067874,"ts":"2024-12-06T12:11:07.874Z","access-policy-id":"devbox-policy","ctx":"a83f4b83e2fdd8ab"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487067875,"ts":"2024-12-06T12:11:07.875Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":19,"w_st":200,"ctx":"a83f4b83e2fdd8ab"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487077005,"ts":"2024-12-06T12:11:17.005Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":5,"w_st":200,"ctx":"a470537b235fcd4e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487077912,"ts":"2024-12-06T12:11:17.912Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b1daf529da69f130","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487077914,"ts":"2024-12-06T12:11:17.914Z","access-policy-id":"devbox-policy","ctx":"b1daf529da69f130"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487077916,"ts":"2024-12-06T12:11:17.916Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":16,"w_st":200,"ctx":"b1daf529da69f130"} -{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733487087970,"ts":"2024-12-06T12:11:27.969Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":13,"ctx":"52b78123b9a6188a"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487087986,"ts":"2024-12-06T12:11:27.986Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"52b78123b9a6188a","wait_time":9} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487088000,"ts":"2024-12-06T12:11:28.000Z","access-policy-id":"devbox-policy","ctx":"52b78123b9a6188a"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":17,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487088003,"ts":"2024-12-06T12:11:28.003Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":58,"w_st":200,"ctx":"52b78123b9a6188a"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487097999,"ts":"2024-12-06T12:11:37.999Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c7eb7d4c53fefb3f","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487098000,"ts":"2024-12-06T12:11:38.000Z","access-policy-id":"devbox-policy","ctx":"c7eb7d4c53fefb3f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487098001,"ts":"2024-12-06T12:11:38.000Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"c7eb7d4c53fefb3f"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":4,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487107130,"ts":"2024-12-06T12:11:47.130Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":12,"w_st":200,"ctx":"667b469e21446f92"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487108051,"ts":"2024-12-06T12:11:48.051Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c043f784df68fb41","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487108053,"ts":"2024-12-06T12:11:48.053Z","access-policy-id":"devbox-policy","ctx":"c043f784df68fb41"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487108054,"ts":"2024-12-06T12:11:48.054Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"c043f784df68fb41"} -{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733487118112,"ts":"2024-12-06T12:11:58.111Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":16,"ctx":"0e361f716bb26d4f"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487118145,"ts":"2024-12-06T12:11:58.145Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0e361f716bb26d4f","wait_time":11} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487118146,"ts":"2024-12-06T12:11:58.146Z","access-policy-id":"devbox-policy","ctx":"0e361f716bb26d4f"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487118147,"ts":"2024-12-06T12:11:58.147Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":52,"ctx":"5578bb5e545aa793"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487118148,"ts":"2024-12-06T12:11:58.148Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":66,"w_st":200,"ctx":"0e361f716bb26d4f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487118150,"ts":"2024-12-06T12:11:58.150Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":71,"w_st":200,"ctx":"5578bb5e545aa793"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487128207,"ts":"2024-12-06T12:12:08.199Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1d0d10e152006b0e","wait_time":10} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487128226,"ts":"2024-12-06T12:12:08.226Z","access-policy-id":"devbox-policy","ctx":"1d0d10e152006b0e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":17,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487128227,"ts":"2024-12-06T12:12:08.227Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":58,"w_st":200,"ctx":"1d0d10e152006b0e"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487137239,"ts":"2024-12-06T12:12:17.239Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"413dd98f22795a9b"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487138173,"ts":"2024-12-06T12:12:18.173Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"81190c04a9464b79","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487138175,"ts":"2024-12-06T12:12:18.174Z","access-policy-id":"devbox-policy","ctx":"81190c04a9464b79"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487138176,"ts":"2024-12-06T12:12:18.176Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"81190c04a9464b79"} -{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733487148256,"ts":"2024-12-06T12:12:28.256Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":15,"ctx":"6713294a312dabd0"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487148265,"ts":"2024-12-06T12:12:28.265Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6713294a312dabd0","wait_time":24} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487148267,"ts":"2024-12-06T12:12:28.267Z","access-policy-id":"devbox-policy","ctx":"6713294a312dabd0"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487148268,"ts":"2024-12-06T12:12:28.267Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":60,"w_st":200,"ctx":"6713294a312dabd0"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487158280,"ts":"2024-12-06T12:12:38.278Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"47971b3d42c88748","wait_time":10} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487158287,"ts":"2024-12-06T12:12:38.287Z","access-policy-id":"devbox-policy","ctx":"47971b3d42c88748"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":21,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487158303,"ts":"2024-12-06T12:12:38.303Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":48,"w_st":200,"ctx":"47971b3d42c88748"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":5,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487167372,"ts":"2024-12-06T12:12:47.372Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":20,"w_st":200,"ctx":"0c4c97fe4e350cf3"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487168344,"ts":"2024-12-06T12:12:48.343Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e65b4fc063d43c74","wait_time":13} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487168346,"ts":"2024-12-06T12:12:48.346Z","access-policy-id":"devbox-policy","ctx":"e65b4fc063d43c74"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487168346,"ts":"2024-12-06T12:12:48.346Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":23,"w_st":200,"ctx":"e65b4fc063d43c74"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733487178386,"ts":"2024-12-06T12:12:58.386Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"54334a53f955f1de"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487178398,"ts":"2024-12-06T12:12:58.398Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"54334a53f955f1de","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487178400,"ts":"2024-12-06T12:12:58.400Z","access-policy-id":"devbox-policy","ctx":"54334a53f955f1de"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487178401,"ts":"2024-12-06T12:12:58.401Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":27,"w_st":200,"ctx":"54334a53f955f1de"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487178407,"ts":"2024-12-06T12:12:58.407Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":28,"ctx":"b6e0587b8a2de8b1"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487178410,"ts":"2024-12-06T12:12:58.410Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":37,"w_st":200,"ctx":"b6e0587b8a2de8b1"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487188475,"ts":"2024-12-06T12:13:08.475Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"93026334c23940a2","wait_time":4} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487188476,"ts":"2024-12-06T12:13:08.476Z","access-policy-id":"devbox-policy","ctx":"93026334c23940a2"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487188478,"ts":"2024-12-06T12:13:08.478Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":17,"w_st":200,"ctx":"93026334c23940a2"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487197486,"ts":"2024-12-06T12:13:17.486Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":5,"w_st":200,"ctx":"a2fed7a6be55f428"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487198491,"ts":"2024-12-06T12:13:18.490Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9ad26ef6ef1ad297","wait_time":4} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487198492,"ts":"2024-12-06T12:13:18.492Z","access-policy-id":"devbox-policy","ctx":"9ad26ef6ef1ad297"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487198494,"ts":"2024-12-06T12:13:18.494Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":17,"w_st":200,"ctx":"9ad26ef6ef1ad297"} -{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733487208542,"ts":"2024-12-06T12:13:28.542Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":7,"ctx":"1f351deb3bbbfd29"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487208548,"ts":"2024-12-06T12:13:28.548Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1f351deb3bbbfd29","wait_time":6} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487208549,"ts":"2024-12-06T12:13:28.549Z","access-policy-id":"devbox-policy","ctx":"1f351deb3bbbfd29"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487208551,"ts":"2024-12-06T12:13:28.551Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":22,"w_st":200,"ctx":"1f351deb3bbbfd29"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487218566,"ts":"2024-12-06T12:13:38.566Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"fdfd596a5cd79e21","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487218567,"ts":"2024-12-06T12:13:38.567Z","access-policy-id":"devbox-policy","ctx":"fdfd596a5cd79e21"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487218567,"ts":"2024-12-06T12:13:38.567Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"fdfd596a5cd79e21"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":4,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487227618,"ts":"2024-12-06T12:13:47.618Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":12,"w_st":200,"ctx":"7b0f01a3a6c325e6"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487228621,"ts":"2024-12-06T12:13:48.621Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"55d351e60ebaf4cd","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487228624,"ts":"2024-12-06T12:13:48.623Z","access-policy-id":"devbox-policy","ctx":"55d351e60ebaf4cd"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487228624,"ts":"2024-12-06T12:13:48.624Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"55d351e60ebaf4cd"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733487238689,"ts":"2024-12-06T12:13:58.689Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":9,"ctx":"f387298d0b83971b"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487238694,"ts":"2024-12-06T12:13:58.694Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f387298d0b83971b","wait_time":5} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487238695,"ts":"2024-12-06T12:13:58.695Z","access-policy-id":"devbox-policy","ctx":"f387298d0b83971b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487238695,"ts":"2024-12-06T12:13:58.695Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":21,"w_st":200,"ctx":"f387298d0b83971b"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487238705,"ts":"2024-12-06T12:13:58.705Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":25,"ctx":"b4f80dcea863da97"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487238707,"ts":"2024-12-06T12:13:58.707Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":34,"w_st":200,"ctx":"b4f80dcea863da97"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487248726,"ts":"2024-12-06T12:14:08.726Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"32f083e3256d9e15","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487248728,"ts":"2024-12-06T12:14:08.728Z","access-policy-id":"devbox-policy","ctx":"32f083e3256d9e15"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487248729,"ts":"2024-12-06T12:14:08.729Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"32f083e3256d9e15"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487257713,"ts":"2024-12-06T12:14:17.712Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":9,"w_st":200,"ctx":"738f1e15fe1bf858"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487258764,"ts":"2024-12-06T12:14:18.764Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"922d86e08ee50a07","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487258766,"ts":"2024-12-06T12:14:18.766Z","access-policy-id":"devbox-policy","ctx":"922d86e08ee50a07"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487258766,"ts":"2024-12-06T12:14:18.766Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"922d86e08ee50a07"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487268834,"ts":"2024-12-06T12:14:28.832Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":8,"ctx":"a5627194d1508f95"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487268879,"ts":"2024-12-06T12:14:28.879Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a5627194d1508f95","wait_time":4} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487268882,"ts":"2024-12-06T12:14:28.882Z","access-policy-id":"devbox-policy","ctx":"a5627194d1508f95"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487268883,"ts":"2024-12-06T12:14:28.883Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":73,"w_st":200,"ctx":"a5627194d1508f95"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487278894,"ts":"2024-12-06T12:14:38.893Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0b003e50c3998df8","wait_time":7} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487278896,"ts":"2024-12-06T12:14:38.896Z","access-policy-id":"devbox-policy","ctx":"0b003e50c3998df8"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487278897,"ts":"2024-12-06T12:14:38.897Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":28,"w_st":200,"ctx":"0b003e50c3998df8"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487287814,"ts":"2024-12-06T12:14:47.814Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"a8bdd9212c4bf610"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487288899,"ts":"2024-12-06T12:14:48.899Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"02b8adb6ed3c5a7d","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487288900,"ts":"2024-12-06T12:14:48.900Z","access-policy-id":"devbox-policy","ctx":"02b8adb6ed3c5a7d"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487288901,"ts":"2024-12-06T12:14:48.901Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"02b8adb6ed3c5a7d"} -{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733487298992,"ts":"2024-12-06T12:14:58.989Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":22,"ctx":"53287c8eb6d4dfb1"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487299009,"ts":"2024-12-06T12:14:59.009Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"53287c8eb6d4dfb1","wait_time":7} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487299011,"ts":"2024-12-06T12:14:59.011Z","access-policy-id":"devbox-policy","ctx":"53287c8eb6d4dfb1"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487299013,"ts":"2024-12-06T12:14:59.013Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":55,"w_st":200,"ctx":"53287c8eb6d4dfb1"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487299016,"ts":"2024-12-06T12:14:59.016Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":49,"ctx":"1b891098ebfbc866"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":4,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487299022,"ts":"2024-12-06T12:14:59.022Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":65,"w_st":200,"ctx":"1b891098ebfbc866"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487309026,"ts":"2024-12-06T12:15:09.026Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9a9ea46271b6b0dc","wait_time":9} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487309030,"ts":"2024-12-06T12:15:09.030Z","access-policy-id":"devbox-policy","ctx":"9a9ea46271b6b0dc"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487309031,"ts":"2024-12-06T12:15:09.031Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":32,"w_st":200,"ctx":"9a9ea46271b6b0dc"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487317905,"ts":"2024-12-06T12:15:17.905Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"c197430f95fc2f53"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487319034,"ts":"2024-12-06T12:15:19.034Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"573764ee6b22a72c","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487319036,"ts":"2024-12-06T12:15:19.035Z","access-policy-id":"devbox-policy","ctx":"573764ee6b22a72c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487319037,"ts":"2024-12-06T12:15:19.037Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"573764ee6b22a72c"} -{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733487329062,"ts":"2024-12-06T12:15:29.062Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"b92ace6505d57642"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487329066,"ts":"2024-12-06T12:15:29.066Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b92ace6505d57642","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487329067,"ts":"2024-12-06T12:15:29.067Z","access-policy-id":"devbox-policy","ctx":"b92ace6505d57642"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487329068,"ts":"2024-12-06T12:15:29.068Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"b92ace6505d57642"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487339143,"ts":"2024-12-06T12:15:39.142Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"58f19e4d462d5927","wait_time":9} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487339147,"ts":"2024-12-06T12:15:39.147Z","access-policy-id":"devbox-policy","ctx":"58f19e4d462d5927"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487339148,"ts":"2024-12-06T12:15:39.148Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":35,"w_st":200,"ctx":"58f19e4d462d5927"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487347997,"ts":"2024-12-06T12:15:47.996Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"6c68bda903d67710"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487349164,"ts":"2024-12-06T12:15:49.164Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c18271c16fbff7d8","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487349165,"ts":"2024-12-06T12:15:49.165Z","access-policy-id":"devbox-policy","ctx":"c18271c16fbff7d8"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487349166,"ts":"2024-12-06T12:15:49.166Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"c18271c16fbff7d8"} -{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733487359233,"ts":"2024-12-06T12:15:59.230Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":13,"ctx":"6eb1250052824eaa"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487359261,"ts":"2024-12-06T12:15:59.261Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6eb1250052824eaa","wait_time":8} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487359263,"ts":"2024-12-06T12:15:59.263Z","access-policy-id":"devbox-policy","ctx":"6eb1250052824eaa"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487359264,"ts":"2024-12-06T12:15:59.264Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":57,"w_st":200,"ctx":"6eb1250052824eaa"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487359264,"ts":"2024-12-06T12:15:59.264Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":47,"ctx":"cf5f1b811411dcf1"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487359266,"ts":"2024-12-06T12:15:59.266Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":61,"w_st":200,"ctx":"cf5f1b811411dcf1"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487369265,"ts":"2024-12-06T12:16:09.264Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d99e3406875c1e7c","wait_time":5} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487369267,"ts":"2024-12-06T12:16:09.267Z","access-policy-id":"devbox-policy","ctx":"d99e3406875c1e7c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487369269,"ts":"2024-12-06T12:16:09.268Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":21,"w_st":200,"ctx":"d99e3406875c1e7c"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":5,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487378106,"ts":"2024-12-06T12:16:18.106Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":22,"w_st":200,"ctx":"d5db1bacd9333c0f"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487379287,"ts":"2024-12-06T12:16:19.287Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3020aea3c2b7c59a","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487379290,"ts":"2024-12-06T12:16:19.290Z","access-policy-id":"devbox-policy","ctx":"3020aea3c2b7c59a"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487379291,"ts":"2024-12-06T12:16:19.291Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"3020aea3c2b7c59a"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733487389309,"ts":"2024-12-06T12:16:29.309Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"3d3d0730d692452d"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487389314,"ts":"2024-12-06T12:16:29.314Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3d3d0730d692452d","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487389315,"ts":"2024-12-06T12:16:29.315Z","access-policy-id":"devbox-policy","ctx":"3d3d0730d692452d"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487389316,"ts":"2024-12-06T12:16:29.316Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"3d3d0730d692452d"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487399353,"ts":"2024-12-06T12:16:39.353Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4a659326da68f0d0","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487399355,"ts":"2024-12-06T12:16:39.355Z","access-policy-id":"devbox-policy","ctx":"4a659326da68f0d0"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487399356,"ts":"2024-12-06T12:16:39.356Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":13,"w_st":200,"ctx":"4a659326da68f0d0"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487408194,"ts":"2024-12-06T12:16:48.194Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"2c68661356c4efc1"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487409373,"ts":"2024-12-06T12:16:49.373Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"03161b291df72c39","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487409373,"ts":"2024-12-06T12:16:49.373Z","access-policy-id":"devbox-policy","ctx":"03161b291df72c39"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487409373,"ts":"2024-12-06T12:16:49.373Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"03161b291df72c39"} -{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733487419457,"ts":"2024-12-06T12:16:59.456Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":14,"ctx":"e27335828ec63957"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487419470,"ts":"2024-12-06T12:16:59.470Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e27335828ec63957","wait_time":9} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487419474,"ts":"2024-12-06T12:16:59.473Z","access-policy-id":"devbox-policy","ctx":"e27335828ec63957"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487419475,"ts":"2024-12-06T12:16:59.475Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":33,"ctx":"6080e8fbbb0174a0"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":6,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487419476,"ts":"2024-12-06T12:16:59.476Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":46,"w_st":200,"ctx":"e27335828ec63957"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487419479,"ts":"2024-12-06T12:16:59.479Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":50,"w_st":200,"ctx":"6080e8fbbb0174a0"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487429456,"ts":"2024-12-06T12:17:09.455Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"cd8cfb69730cd888","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487429456,"ts":"2024-12-06T12:17:09.456Z","access-policy-id":"devbox-policy","ctx":"cd8cfb69730cd888"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487429457,"ts":"2024-12-06T12:17:09.457Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"cd8cfb69730cd888"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":0,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487438268,"ts":"2024-12-06T12:17:18.268Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"9430566463d0d73c"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487439500,"ts":"2024-12-06T12:17:19.500Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7f1f73788318ca54","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487439500,"ts":"2024-12-06T12:17:19.500Z","access-policy-id":"devbox-policy","ctx":"7f1f73788318ca54"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487439501,"ts":"2024-12-06T12:17:19.501Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"7f1f73788318ca54"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733487449529,"ts":"2024-12-06T12:17:29.529Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"dd174d46dcf3845b"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487449532,"ts":"2024-12-06T12:17:29.532Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"dd174d46dcf3845b","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487449533,"ts":"2024-12-06T12:17:29.533Z","access-policy-id":"devbox-policy","ctx":"dd174d46dcf3845b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487449533,"ts":"2024-12-06T12:17:29.533Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"dd174d46dcf3845b"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487459596,"ts":"2024-12-06T12:17:39.596Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"efdc8d005f06fa0b","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487459598,"ts":"2024-12-06T12:17:39.598Z","access-policy-id":"devbox-policy","ctx":"efdc8d005f06fa0b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487459599,"ts":"2024-12-06T12:17:39.599Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":16,"w_st":200,"ctx":"efdc8d005f06fa0b"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487468330,"ts":"2024-12-06T12:17:48.330Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"bd9de557a1e5ffaa"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487469612,"ts":"2024-12-06T12:17:49.612Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6cb60c25d9454a48","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487469613,"ts":"2024-12-06T12:17:49.613Z","access-policy-id":"devbox-policy","ctx":"6cb60c25d9454a48"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487469613,"ts":"2024-12-06T12:17:49.613Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"6cb60c25d9454a48"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487479666,"ts":"2024-12-06T12:17:59.666Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"4ad6fc8bc02f859c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487479672,"ts":"2024-12-06T12:17:59.672Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":11,"w_st":200,"ctx":"4ad6fc8bc02f859c"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487479679,"ts":"2024-12-06T12:17:59.679Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":16,"ctx":"6d77159d8a0201ee"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487479681,"ts":"2024-12-06T12:17:59.681Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6d77159d8a0201ee","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487479682,"ts":"2024-12-06T12:17:59.682Z","access-policy-id":"devbox-policy","ctx":"6d77159d8a0201ee"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487479683,"ts":"2024-12-06T12:17:59.683Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":21,"w_st":200,"ctx":"6d77159d8a0201ee"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487489713,"ts":"2024-12-06T12:18:09.713Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a6edb7a5e4e581fa","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487489714,"ts":"2024-12-06T12:18:09.714Z","access-policy-id":"devbox-policy","ctx":"a6edb7a5e4e581fa"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487489715,"ts":"2024-12-06T12:18:09.715Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"a6edb7a5e4e581fa"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487498408,"ts":"2024-12-06T12:18:18.408Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"d5c03dec268c3a59"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487499748,"ts":"2024-12-06T12:18:19.748Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e22f957738bd4880","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487499756,"ts":"2024-12-06T12:18:19.756Z","access-policy-id":"devbox-policy","ctx":"e22f957738bd4880"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":9,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487499758,"ts":"2024-12-06T12:18:19.757Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":12,"w_st":200,"ctx":"e22f957738bd4880"} -{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733487509807,"ts":"2024-12-06T12:18:29.807Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"54679a181df9184c"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487509813,"ts":"2024-12-06T12:18:29.813Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"54679a181df9184c","wait_time":4} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487509814,"ts":"2024-12-06T12:18:29.814Z","access-policy-id":"devbox-policy","ctx":"54679a181df9184c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487509815,"ts":"2024-12-06T12:18:29.815Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":17,"w_st":200,"ctx":"54679a181df9184c"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487519978,"ts":"2024-12-06T12:18:39.978Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"409bf0dcaf545424","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487519979,"ts":"2024-12-06T12:18:39.979Z","access-policy-id":"devbox-policy","ctx":"409bf0dcaf545424"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487519979,"ts":"2024-12-06T12:18:39.979Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"409bf0dcaf545424"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487528483,"ts":"2024-12-06T12:18:48.483Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"e9218f5773aa48b2"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487530016,"ts":"2024-12-06T12:18:50.016Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e3057ee456ed8ae1","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487530018,"ts":"2024-12-06T12:18:50.018Z","access-policy-id":"devbox-policy","ctx":"e3057ee456ed8ae1"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487530019,"ts":"2024-12-06T12:18:50.019Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"e3057ee456ed8ae1"} -{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733487540101,"ts":"2024-12-06T12:19:00.100Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":12,"ctx":"47c49c6d0f17a839"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487540112,"ts":"2024-12-06T12:19:00.112Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"47c49c6d0f17a839","wait_time":13} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487540115,"ts":"2024-12-06T12:19:00.115Z","access-policy-id":"devbox-policy","ctx":"47c49c6d0f17a839"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487540116,"ts":"2024-12-06T12:19:00.116Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":55,"w_st":200,"ctx":"47c49c6d0f17a839"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487540116,"ts":"2024-12-06T12:19:00.116Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":28,"ctx":"b3d24949b7bb4e46"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487540119,"ts":"2024-12-06T12:19:00.119Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":59,"w_st":200,"ctx":"b3d24949b7bb4e46"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487550109,"ts":"2024-12-06T12:19:10.109Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"257f81a4b34ad860","wait_time":4} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487550111,"ts":"2024-12-06T12:19:10.111Z","access-policy-id":"devbox-policy","ctx":"257f81a4b34ad860"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487550113,"ts":"2024-12-06T12:19:10.113Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":20,"w_st":200,"ctx":"257f81a4b34ad860"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487558680,"ts":"2024-12-06T12:19:18.679Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":24,"w_st":200,"ctx":"3a91c47d2f0d020d"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487560123,"ts":"2024-12-06T12:19:20.123Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6b3855d7c255624c","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487560123,"ts":"2024-12-06T12:19:20.123Z","access-policy-id":"devbox-policy","ctx":"6b3855d7c255624c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487560124,"ts":"2024-12-06T12:19:20.124Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"6b3855d7c255624c"} -{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733487570165,"ts":"2024-12-06T12:19:30.165Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"5adbca906c8f940e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487570168,"ts":"2024-12-06T12:19:30.168Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"5adbca906c8f940e","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487570168,"ts":"2024-12-06T12:19:30.168Z","access-policy-id":"devbox-policy","ctx":"5adbca906c8f940e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487570169,"ts":"2024-12-06T12:19:30.169Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"5adbca906c8f940e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487580226,"ts":"2024-12-06T12:19:40.225Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7f8c373536d27e7f","wait_time":6} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487580228,"ts":"2024-12-06T12:19:40.228Z","access-policy-id":"devbox-policy","ctx":"7f8c373536d27e7f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487580229,"ts":"2024-12-06T12:19:40.229Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":22,"w_st":200,"ctx":"7f8c373536d27e7f"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487588796,"ts":"2024-12-06T12:19:48.796Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":6,"w_st":200,"ctx":"0fd701ade9d4eb11"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487590260,"ts":"2024-12-06T12:19:50.260Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6f54d2f39cbb7172","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487590261,"ts":"2024-12-06T12:19:50.261Z","access-policy-id":"devbox-policy","ctx":"6f54d2f39cbb7172"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487590262,"ts":"2024-12-06T12:19:50.262Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"6f54d2f39cbb7172"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733487600333,"ts":"2024-12-06T12:20:00.332Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":12,"ctx":"c9c10e0d31885e38"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487600355,"ts":"2024-12-06T12:20:00.355Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c9c10e0d31885e38","wait_time":10} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487600357,"ts":"2024-12-06T12:20:00.357Z","access-policy-id":"devbox-policy","ctx":"c9c10e0d31885e38"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487600359,"ts":"2024-12-06T12:20:00.359Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":51,"w_st":200,"ctx":"c9c10e0d31885e38"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487600361,"ts":"2024-12-06T12:20:00.361Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":41,"ctx":"d36104063e03c14c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487600364,"ts":"2024-12-06T12:20:00.364Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":59,"w_st":200,"ctx":"d36104063e03c14c"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487610332,"ts":"2024-12-06T12:20:10.332Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4d40257fa7c89ae7","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487610332,"ts":"2024-12-06T12:20:10.332Z","access-policy-id":"devbox-policy","ctx":"4d40257fa7c89ae7"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487610333,"ts":"2024-12-06T12:20:10.333Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"4d40257fa7c89ae7"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487618898,"ts":"2024-12-06T12:20:18.898Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"b668504263ff6ce1"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487620381,"ts":"2024-12-06T12:20:20.381Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e95eb0c353338a68","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487620382,"ts":"2024-12-06T12:20:20.382Z","access-policy-id":"devbox-policy","ctx":"e95eb0c353338a68"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487620382,"ts":"2024-12-06T12:20:20.382Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"e95eb0c353338a68"} -{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733487630415,"ts":"2024-12-06T12:20:30.415Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"fc14031077e18e51"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487630420,"ts":"2024-12-06T12:20:30.420Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"fc14031077e18e51","wait_time":4} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487630422,"ts":"2024-12-06T12:20:30.422Z","access-policy-id":"devbox-policy","ctx":"fc14031077e18e51"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487630423,"ts":"2024-12-06T12:20:30.423Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":17,"w_st":200,"ctx":"fc14031077e18e51"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487640468,"ts":"2024-12-06T12:20:40.468Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a9acd5ca870afbd4","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487640470,"ts":"2024-12-06T12:20:40.470Z","access-policy-id":"devbox-policy","ctx":"a9acd5ca870afbd4"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487640471,"ts":"2024-12-06T12:20:40.470Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"a9acd5ca870afbd4"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487648960,"ts":"2024-12-06T12:20:48.960Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"cdd4cd8a82aa6926"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487650502,"ts":"2024-12-06T12:20:50.502Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3a4d9a3cc4bd84f6","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487650502,"ts":"2024-12-06T12:20:50.502Z","access-policy-id":"devbox-policy","ctx":"3a4d9a3cc4bd84f6"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487650503,"ts":"2024-12-06T12:20:50.503Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"3a4d9a3cc4bd84f6"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733487660554,"ts":"2024-12-06T12:21:00.554Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"d0daee1bc8bfc037"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487660559,"ts":"2024-12-06T12:21:00.559Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":9,"w_st":200,"ctx":"d0daee1bc8bfc037"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487660567,"ts":"2024-12-06T12:21:00.567Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":17,"ctx":"f18c74c329237925"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487660569,"ts":"2024-12-06T12:21:00.569Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f18c74c329237925","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487660569,"ts":"2024-12-06T12:21:00.569Z","access-policy-id":"devbox-policy","ctx":"f18c74c329237925"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487660570,"ts":"2024-12-06T12:21:00.570Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":20,"w_st":200,"ctx":"f18c74c329237925"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487670620,"ts":"2024-12-06T12:21:10.619Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"681533540cd224aa","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487670622,"ts":"2024-12-06T12:21:10.622Z","access-policy-id":"devbox-policy","ctx":"681533540cd224aa"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487670623,"ts":"2024-12-06T12:21:10.623Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"681533540cd224aa"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487679067,"ts":"2024-12-06T12:21:19.067Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"0cda73893ceea698"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487680635,"ts":"2024-12-06T12:21:20.635Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1e9a0a7bdb96945a","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487680635,"ts":"2024-12-06T12:21:20.635Z","access-policy-id":"devbox-policy","ctx":"1e9a0a7bdb96945a"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487680637,"ts":"2024-12-06T12:21:20.637Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"1e9a0a7bdb96945a"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487690672,"ts":"2024-12-06T12:21:30.671Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":5,"ctx":"1b0464dc5dd996f7"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487690674,"ts":"2024-12-06T12:21:30.674Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1b0464dc5dd996f7","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487690675,"ts":"2024-12-06T12:21:30.675Z","access-policy-id":"devbox-policy","ctx":"1b0464dc5dd996f7"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487690675,"ts":"2024-12-06T12:21:30.675Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"1b0464dc5dd996f7"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487700752,"ts":"2024-12-06T12:21:40.752Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b500c1749f891f49","wait_time":4} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487700754,"ts":"2024-12-06T12:21:40.754Z","access-policy-id":"devbox-policy","ctx":"b500c1749f891f49"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487700756,"ts":"2024-12-06T12:21:40.756Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"b500c1749f891f49"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487709166,"ts":"2024-12-06T12:21:49.166Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"0e8c2d65ccd7190c"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487710770,"ts":"2024-12-06T12:21:50.770Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3c41bcd569b23b1f","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487710771,"ts":"2024-12-06T12:21:50.771Z","access-policy-id":"devbox-policy","ctx":"3c41bcd569b23b1f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487710771,"ts":"2024-12-06T12:21:50.771Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"3c41bcd569b23b1f"} -{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733487720823,"ts":"2024-12-06T12:22:00.823Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"69903e963dda4ca1"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487720827,"ts":"2024-12-06T12:22:00.827Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"69903e963dda4ca1","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487720827,"ts":"2024-12-06T12:22:00.827Z","access-policy-id":"devbox-policy","ctx":"69903e963dda4ca1"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487720828,"ts":"2024-12-06T12:22:00.828Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"69903e963dda4ca1"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487720834,"ts":"2024-12-06T12:22:00.834Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":14,"ctx":"1d7391306c39c79a"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487720837,"ts":"2024-12-06T12:22:00.837Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":18,"w_st":200,"ctx":"1d7391306c39c79a"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487730882,"ts":"2024-12-06T12:22:10.882Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"938ca033bc622dd5","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487730884,"ts":"2024-12-06T12:22:10.884Z","access-policy-id":"devbox-policy","ctx":"938ca033bc622dd5"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487730885,"ts":"2024-12-06T12:22:10.885Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"938ca033bc622dd5"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487739219,"ts":"2024-12-06T12:22:19.219Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"c40ab38c0d1c7c36"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487740912,"ts":"2024-12-06T12:22:20.912Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9f2758a0a4225bf6","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487740912,"ts":"2024-12-06T12:22:20.912Z","access-policy-id":"devbox-policy","ctx":"9f2758a0a4225bf6"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487740913,"ts":"2024-12-06T12:22:20.913Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"9f2758a0a4225bf6"} -{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733487750985,"ts":"2024-12-06T12:22:30.984Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"27a50c899fb79ccd"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487750991,"ts":"2024-12-06T12:22:30.991Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"27a50c899fb79ccd","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487750992,"ts":"2024-12-06T12:22:30.992Z","access-policy-id":"devbox-policy","ctx":"27a50c899fb79ccd"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487750993,"ts":"2024-12-06T12:22:30.993Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":19,"w_st":200,"ctx":"27a50c899fb79ccd"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487761018,"ts":"2024-12-06T12:22:41.018Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"5a516734969f2ba4","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487761019,"ts":"2024-12-06T12:22:41.019Z","access-policy-id":"devbox-policy","ctx":"5a516734969f2ba4"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487761020,"ts":"2024-12-06T12:22:41.020Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"5a516734969f2ba4"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487769285,"ts":"2024-12-06T12:22:49.285Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"7481c7d955e1c215"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487771043,"ts":"2024-12-06T12:22:51.043Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9fb7e00cd2fa9c41","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487771044,"ts":"2024-12-06T12:22:51.044Z","access-policy-id":"devbox-policy","ctx":"9fb7e00cd2fa9c41"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487771045,"ts":"2024-12-06T12:22:51.045Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"9fb7e00cd2fa9c41"} -{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733487781082,"ts":"2024-12-06T12:23:01.082Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"949d43a734ad7283"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487781085,"ts":"2024-12-06T12:23:01.085Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"949d43a734ad7283","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487781086,"ts":"2024-12-06T12:23:01.086Z","access-policy-id":"devbox-policy","ctx":"949d43a734ad7283"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487781086,"ts":"2024-12-06T12:23:01.086Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"949d43a734ad7283"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487781089,"ts":"2024-12-06T12:23:01.089Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":9,"ctx":"fef5e9621d4ebf97"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487781093,"ts":"2024-12-06T12:23:01.093Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":14,"w_st":200,"ctx":"fef5e9621d4ebf97"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487791116,"ts":"2024-12-06T12:23:11.115Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"acf519799921c170","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487791117,"ts":"2024-12-06T12:23:11.117Z","access-policy-id":"devbox-policy","ctx":"acf519799921c170"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487791118,"ts":"2024-12-06T12:23:11.118Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"acf519799921c170"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487799349,"ts":"2024-12-06T12:23:19.349Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"d501b4e25d1f17c8"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487801152,"ts":"2024-12-06T12:23:21.152Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6442cd0667797d2c","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487801153,"ts":"2024-12-06T12:23:21.153Z","access-policy-id":"devbox-policy","ctx":"6442cd0667797d2c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487801154,"ts":"2024-12-06T12:23:21.154Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"6442cd0667797d2c"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733487811218,"ts":"2024-12-06T12:23:31.217Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":13,"ctx":"7f45f154b631a44d"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487811245,"ts":"2024-12-06T12:23:31.245Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7f45f154b631a44d","wait_time":9} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487811247,"ts":"2024-12-06T12:23:31.247Z","access-policy-id":"devbox-policy","ctx":"7f45f154b631a44d"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487811248,"ts":"2024-12-06T12:23:31.248Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":55,"w_st":200,"ctx":"7f45f154b631a44d"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487821240,"ts":"2024-12-06T12:23:41.240Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"181cafe510f99ba3","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487821240,"ts":"2024-12-06T12:23:41.240Z","access-policy-id":"devbox-policy","ctx":"181cafe510f99ba3"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487821241,"ts":"2024-12-06T12:23:41.241Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"181cafe510f99ba3"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":11,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487829478,"ts":"2024-12-06T12:23:49.477Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":36,"w_st":200,"ctx":"bae2de94f9c4f35a"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487831341,"ts":"2024-12-06T12:23:51.341Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d1f5526a594ff704","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487831343,"ts":"2024-12-06T12:23:51.343Z","access-policy-id":"devbox-policy","ctx":"d1f5526a594ff704"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487831344,"ts":"2024-12-06T12:23:51.344Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"d1f5526a594ff704"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733487841299,"ts":"2024-12-06T12:24:01.299Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":8,"ctx":"1706296f903bae47"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w3","execution_time":4,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487841310,"ts":"2024-12-06T12:24:01.310Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":25,"w_st":200,"ctx":"1706296f903bae47"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487842285,"ts":"2024-12-06T12:24:02.285Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1bf97d33de12d060","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487842286,"ts":"2024-12-06T12:24:02.286Z","access-policy-id":"devbox-policy","ctx":"1bf97d33de12d060"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487842287,"ts":"2024-12-06T12:24:02.287Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"1bf97d33de12d060"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487852320,"ts":"2024-12-06T12:24:12.320Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a65500e625aa15e5","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487852322,"ts":"2024-12-06T12:24:12.322Z","access-policy-id":"devbox-policy","ctx":"a65500e625aa15e5"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487852323,"ts":"2024-12-06T12:24:12.323Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"a65500e625aa15e5"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487859572,"ts":"2024-12-06T12:24:19.572Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"964be42174baac7e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487862360,"ts":"2024-12-06T12:24:22.360Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d84f7f4d629d146d","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487862361,"ts":"2024-12-06T12:24:22.361Z","access-policy-id":"devbox-policy","ctx":"d84f7f4d629d146d"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487862362,"ts":"2024-12-06T12:24:22.362Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"d84f7f4d629d146d"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733487872418,"ts":"2024-12-06T12:24:32.418Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":26,"ctx":"f7303ed1d66e2e16"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487872419,"ts":"2024-12-06T12:24:32.419Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f7303ed1d66e2e16","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487872419,"ts":"2024-12-06T12:24:32.419Z","access-policy-id":"devbox-policy","ctx":"f7303ed1d66e2e16"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487872419,"ts":"2024-12-06T12:24:32.419Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":29,"w_st":200,"ctx":"f7303ed1d66e2e16"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487882453,"ts":"2024-12-06T12:24:42.452Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4e05e045b601e2db","wait_time":5} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487882454,"ts":"2024-12-06T12:24:42.454Z","access-policy-id":"devbox-policy","ctx":"4e05e045b601e2db"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487882455,"ts":"2024-12-06T12:24:42.455Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":14,"w_st":200,"ctx":"4e05e045b601e2db"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487889632,"ts":"2024-12-06T12:24:49.632Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"45af80b334176f35"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487892503,"ts":"2024-12-06T12:24:52.503Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ff0b6b66139f3447","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487892504,"ts":"2024-12-06T12:24:52.504Z","access-policy-id":"devbox-policy","ctx":"ff0b6b66139f3447"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487892505,"ts":"2024-12-06T12:24:52.505Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"ff0b6b66139f3447"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w6","execution_time":4,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487901547,"ts":"2024-12-06T12:25:01.547Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":8,"w_st":200,"ctx":"1de9d449b86abfa0"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733487902542,"ts":"2024-12-06T12:25:02.542Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":5,"ctx":"53d4bfa63869ef73"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487902545,"ts":"2024-12-06T12:25:02.545Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"53d4bfa63869ef73","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487902546,"ts":"2024-12-06T12:25:02.546Z","access-policy-id":"devbox-policy","ctx":"53d4bfa63869ef73"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487902546,"ts":"2024-12-06T12:25:02.546Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"53d4bfa63869ef73"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487912576,"ts":"2024-12-06T12:25:12.576Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9100c71e762ed23e","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487912577,"ts":"2024-12-06T12:25:12.577Z","access-policy-id":"devbox-policy","ctx":"9100c71e762ed23e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487912578,"ts":"2024-12-06T12:25:12.578Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"9100c71e762ed23e"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487919701,"ts":"2024-12-06T12:25:19.701Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"8ca34a5188c2d318"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487922613,"ts":"2024-12-06T12:25:22.613Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"aab0974d085cce62","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487922613,"ts":"2024-12-06T12:25:22.613Z","access-policy-id":"devbox-policy","ctx":"aab0974d085cce62"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487922614,"ts":"2024-12-06T12:25:22.614Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"aab0974d085cce62"} -{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733487932670,"ts":"2024-12-06T12:25:32.670Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":28,"ctx":"31a9b42963d311d8"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487932671,"ts":"2024-12-06T12:25:32.671Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"31a9b42963d311d8","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487932672,"ts":"2024-12-06T12:25:32.672Z","access-policy-id":"devbox-policy","ctx":"31a9b42963d311d8"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487932672,"ts":"2024-12-06T12:25:32.672Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":30,"w_st":200,"ctx":"31a9b42963d311d8"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487942702,"ts":"2024-12-06T12:25:42.702Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"74cca8bf90d9aa2b","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487942703,"ts":"2024-12-06T12:25:42.703Z","access-policy-id":"devbox-policy","ctx":"74cca8bf90d9aa2b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487942703,"ts":"2024-12-06T12:25:42.703Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"74cca8bf90d9aa2b"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":6,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487949797,"ts":"2024-12-06T12:25:49.797Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":41,"w_st":200,"ctx":"f8bf378cd6f564e4"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487952735,"ts":"2024-12-06T12:25:52.735Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3de6f7c079c20679","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487952736,"ts":"2024-12-06T12:25:52.736Z","access-policy-id":"devbox-policy","ctx":"3de6f7c079c20679"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487952737,"ts":"2024-12-06T12:25:52.737Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"3de6f7c079c20679"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":5,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487961790,"ts":"2024-12-06T12:26:01.790Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":10,"w_st":200,"ctx":"aec4a2212c04d00a"} -{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733487962791,"ts":"2024-12-06T12:26:02.791Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":7,"ctx":"742fefb4d685e100"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487962795,"ts":"2024-12-06T12:26:02.795Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"742fefb4d685e100","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487962796,"ts":"2024-12-06T12:26:02.796Z","access-policy-id":"devbox-policy","ctx":"742fefb4d685e100"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487962797,"ts":"2024-12-06T12:26:02.797Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":14,"w_st":200,"ctx":"742fefb4d685e100"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487972850,"ts":"2024-12-06T12:26:12.850Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4ee3afad88e27e02","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487972852,"ts":"2024-12-06T12:26:12.852Z","access-policy-id":"devbox-policy","ctx":"4ee3afad88e27e02"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487972853,"ts":"2024-12-06T12:26:12.853Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":16,"w_st":200,"ctx":"4ee3afad88e27e02"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733487979876,"ts":"2024-12-06T12:26:19.876Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"2add13e081c6be67"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487982884,"ts":"2024-12-06T12:26:22.884Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"dbce9dc5892b4bf8","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487982886,"ts":"2024-12-06T12:26:22.886Z","access-policy-id":"devbox-policy","ctx":"dbce9dc5892b4bf8"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487982886,"ts":"2024-12-06T12:26:22.886Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"dbce9dc5892b4bf8"} -{"sql":"SELECT 1","d":2,"timeUnix":1733487991294,"ts":"2024-12-06T12:26:31.294Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} -{"sql":"SELECT 1","d":1,"timeUnix":1733487992312,"ts":"2024-12-06T12:26:32.312Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} -{"sql":"SELECT TRUE FROM \"pg_database\" WHERE \"datname\" = ?","d":3,"db_prm":["aidbox"],"timeUnix":1733487992317,"ts":"2024-12-06T12:26:32.317Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} -{"sql":"SELECT 1","d":0,"timeUnix":1733487992327,"ts":"2024-12-06T12:26:32.327Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} -{"sql":"SELECT 1","d":1,"timeUnix":1733487992337,"ts":"2024-12-06T12:26:32.337Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} -{"sql":"insert into _aidbox_license (id, token)\n values (?, ?)\n on conflict (id) do update\n set token = excluded.token\n returning id","d":1,"db_prm":["9cc80210-140e-41f3-8fdb-933c90d67aaf","eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJjb25zdHJhaW50cyI6eyJkYXRhYmFzZSI6eyJkZWxheSI6MzYwMDAwMCwibGltaXQiOjUzNjg3MDkxMjB9fSwiaGVhcnRiZWF0RXZlcnkiOjE4MDAwMDAsImtleSI6Im9ubGluZS0yMDIyMDUyNC0xNDM2NDciLCJsaWNlbnNlIjp7ImlkIjoiOWNjODAyMTAtMTQwZS00MWYzLThmZGItOTMzYzkwZDY3YWFmIiwicmVzb3VyY2VUeXBlIjoiTGljZW5zZSJ9LCJleHBpcmF0aW9uIjoiMjAyNC0xMi0wN1QxMjoyNjozMi4yODhaIiwiY3JlYXRlZCI6IjIwMjQtMTItMDZUMTE6NTY6MzAuNDQ2WiIsInJlZnJlc2hFdmVyeSI6MzYwMDAwMCwid2FybmluZyI6bnVsbCwic3RhdHVzIjoiYWN0aXZlIiwiaWQiOiIxMTdlMGVkYi1jMTIwLTQ0NDYtYjhlOC1mOTAxMThlMDQ3OGYiLCJsaWNlbnNlLWV4cGlyYXRpb24iOiIyMTIzLTA5LTI4VDAzOjI2OjAwLjIzM1oifQ.qoX8rMZrr9p82k-AhHxTX399gTIJybMuTzFFvNIuw34KJcpfexsvgtibS9vU8TM51glIHwtL-UNc5TOojbPlfqtqHfaGfMoKkAdMweWxWAZotL8IkFE63x_pP7rW0toR1t_aPMKsL2k85xLOp7T3cbpXNgGMR_qK3AsyvihRc8k"],"timeUnix":1733487992348,"ts":"2024-12-06T12:26:32.348Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} -{"sql":"SELECT 1","d":1,"timeUnix":1733487992357,"ts":"2024-12-06T12:26:32.357Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} -{"sql":"select sum(pg_relation_size(oid)\n + case when reltoastrelid = 0\n\t then 0\n\t else pg_relation_size(reltoastrelid)\n\t end) as size\n from pg_class\n where relkind = 'r'\n and not relisshared\n and not relname in ('_import_all', 'codesystem', 'concept', 'valueset')","d":45,"timeUnix":1733487992403,"ts":"2024-12-06T12:26:32.402Z","w":"clojure-agent-send-off-pool-2","ev":"db/q"} -{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733487992945,"ts":"2024-12-06T12:26:32.945Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":24,"ctx":"0905d955f55b530b"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487992951,"ts":"2024-12-06T12:26:32.951Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0905d955f55b530b","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733487992952,"ts":"2024-12-06T12:26:32.952Z","access-policy-id":"devbox-policy","ctx":"0905d955f55b530b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733487992953,"ts":"2024-12-06T12:26:32.953Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":35,"w_st":200,"ctx":"0905d955f55b530b"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488002982,"ts":"2024-12-06T12:26:42.982Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"80a5c2bba870e1b5","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488002983,"ts":"2024-12-06T12:26:42.983Z","access-policy-id":"devbox-policy","ctx":"80a5c2bba870e1b5"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488002984,"ts":"2024-12-06T12:26:42.984Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"80a5c2bba870e1b5"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488009960,"ts":"2024-12-06T12:26:49.959Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":7,"w_st":200,"ctx":"3a29b16d3a20e415"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488013015,"ts":"2024-12-06T12:26:53.015Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f11e455c61b988bb","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488013017,"ts":"2024-12-06T12:26:53.017Z","access-policy-id":"devbox-policy","ctx":"f11e455c61b988bb"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488013018,"ts":"2024-12-06T12:26:53.018Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"f11e455c61b988bb"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w7","execution_time":22,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488022149,"ts":"2024-12-06T12:27:02.149Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":28,"w_st":200,"ctx":"0a7550c7ad6db579"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733488023140,"ts":"2024-12-06T12:27:03.140Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":12,"ctx":"3ef1b8e1f465c1ab"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488023142,"ts":"2024-12-06T12:27:03.142Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3ef1b8e1f465c1ab","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488023143,"ts":"2024-12-06T12:27:03.143Z","access-policy-id":"devbox-policy","ctx":"3ef1b8e1f465c1ab"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488023143,"ts":"2024-12-06T12:27:03.143Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":16,"w_st":200,"ctx":"3ef1b8e1f465c1ab"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488033189,"ts":"2024-12-06T12:27:13.189Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3fedd9342743cd8d","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488033191,"ts":"2024-12-06T12:27:13.191Z","access-policy-id":"devbox-policy","ctx":"3fedd9342743cd8d"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488033191,"ts":"2024-12-06T12:27:13.191Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"3fedd9342743cd8d"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488040021,"ts":"2024-12-06T12:27:20.021Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"02fc76a1cf473bcb"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488043253,"ts":"2024-12-06T12:27:23.253Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"20eed80c493067fa","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488043254,"ts":"2024-12-06T12:27:23.254Z","access-policy-id":"devbox-policy","ctx":"20eed80c493067fa"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488043256,"ts":"2024-12-06T12:27:23.256Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"20eed80c493067fa"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733488053340,"ts":"2024-12-06T12:27:33.340Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":35,"ctx":"ec18ad29ed0119db"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488053341,"ts":"2024-12-06T12:27:33.341Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ec18ad29ed0119db","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488053341,"ts":"2024-12-06T12:27:33.341Z","access-policy-id":"devbox-policy","ctx":"ec18ad29ed0119db"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488053341,"ts":"2024-12-06T12:27:33.341Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":37,"w_st":200,"ctx":"ec18ad29ed0119db"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488063373,"ts":"2024-12-06T12:27:43.373Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ddff5418f053e275","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488063373,"ts":"2024-12-06T12:27:43.373Z","access-policy-id":"devbox-policy","ctx":"ddff5418f053e275"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488063374,"ts":"2024-12-06T12:27:43.374Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"ddff5418f053e275"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488070106,"ts":"2024-12-06T12:27:50.106Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":6,"w_st":200,"ctx":"bf8bb4289a2c2401"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488073501,"ts":"2024-12-06T12:27:53.501Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a7c834bb2ae81672","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488073503,"ts":"2024-12-06T12:27:53.503Z","access-policy-id":"devbox-policy","ctx":"a7c834bb2ae81672"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488073504,"ts":"2024-12-06T12:27:53.504Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"a7c834bb2ae81672"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w1","execution_time":14,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488082546,"ts":"2024-12-06T12:28:02.546Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":19,"w_st":200,"ctx":"00b2cf42c08a8a1f"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733488083544,"ts":"2024-12-06T12:28:03.544Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":15,"ctx":"41e5ca9d69057525"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488083546,"ts":"2024-12-06T12:28:03.546Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"41e5ca9d69057525","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488083547,"ts":"2024-12-06T12:28:03.547Z","access-policy-id":"devbox-policy","ctx":"41e5ca9d69057525"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488083547,"ts":"2024-12-06T12:28:03.547Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":19,"w_st":200,"ctx":"41e5ca9d69057525"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488093694,"ts":"2024-12-06T12:28:13.694Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"859c64b310c7fcee","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488093695,"ts":"2024-12-06T12:28:13.695Z","access-policy-id":"devbox-policy","ctx":"859c64b310c7fcee"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488093695,"ts":"2024-12-06T12:28:13.695Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"859c64b310c7fcee"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488100174,"ts":"2024-12-06T12:28:20.174Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"5d7e8478521f5ea4"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488103825,"ts":"2024-12-06T12:28:23.825Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9220f62c56589a04","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488103827,"ts":"2024-12-06T12:28:23.827Z","access-policy-id":"devbox-policy","ctx":"9220f62c56589a04"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488103828,"ts":"2024-12-06T12:28:23.828Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":12,"w_st":200,"ctx":"9220f62c56589a04"} -{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733488113977,"ts":"2024-12-06T12:28:33.977Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":37,"ctx":"4f7e0abdf31c64f9"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488113981,"ts":"2024-12-06T12:28:33.981Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4f7e0abdf31c64f9","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488113982,"ts":"2024-12-06T12:28:33.982Z","access-policy-id":"devbox-policy","ctx":"4f7e0abdf31c64f9"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488113982,"ts":"2024-12-06T12:28:33.982Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":45,"w_st":200,"ctx":"4f7e0abdf31c64f9"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488123977,"ts":"2024-12-06T12:28:43.977Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b79f7e5a5ca91be4","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488123978,"ts":"2024-12-06T12:28:43.978Z","access-policy-id":"devbox-policy","ctx":"b79f7e5a5ca91be4"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488123979,"ts":"2024-12-06T12:28:43.979Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"b79f7e5a5ca91be4"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488130233,"ts":"2024-12-06T12:28:50.233Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"8cc9dd722c9ba5bf"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488134032,"ts":"2024-12-06T12:28:54.032Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e692c6232a398a51","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488134033,"ts":"2024-12-06T12:28:54.033Z","access-policy-id":"devbox-policy","ctx":"e692c6232a398a51"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488134034,"ts":"2024-12-06T12:28:54.034Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"e692c6232a398a51"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w5","execution_time":25,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488143080,"ts":"2024-12-06T12:29:03.080Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":29,"w_st":200,"ctx":"65d3cdf7be1205ff"} -{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733488144067,"ts":"2024-12-06T12:29:04.067Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":16,"ctx":"b25768d0981e68d7"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488144069,"ts":"2024-12-06T12:29:04.069Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b25768d0981e68d7","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488144070,"ts":"2024-12-06T12:29:04.070Z","access-policy-id":"devbox-policy","ctx":"b25768d0981e68d7"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488144070,"ts":"2024-12-06T12:29:04.070Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":20,"w_st":200,"ctx":"b25768d0981e68d7"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488154089,"ts":"2024-12-06T12:29:14.089Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c4a438541def6507","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488154090,"ts":"2024-12-06T12:29:14.090Z","access-policy-id":"devbox-policy","ctx":"c4a438541def6507"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488154091,"ts":"2024-12-06T12:29:14.091Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"c4a438541def6507"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488160291,"ts":"2024-12-06T12:29:20.291Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"304797338d50731c"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488164128,"ts":"2024-12-06T12:29:24.128Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7c145f9071cf64db","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488164129,"ts":"2024-12-06T12:29:24.129Z","access-policy-id":"devbox-policy","ctx":"7c145f9071cf64db"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488164130,"ts":"2024-12-06T12:29:24.130Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"7c145f9071cf64db"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733488174200,"ts":"2024-12-06T12:29:34.200Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":25,"ctx":"1de5842dfa2825d4"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488174203,"ts":"2024-12-06T12:29:34.203Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1de5842dfa2825d4","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488174204,"ts":"2024-12-06T12:29:34.204Z","access-policy-id":"devbox-policy","ctx":"1de5842dfa2825d4"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488174204,"ts":"2024-12-06T12:29:34.204Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":31,"w_st":200,"ctx":"1de5842dfa2825d4"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488184239,"ts":"2024-12-06T12:29:44.239Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"eb5d8a2aedc4575b","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488184240,"ts":"2024-12-06T12:29:44.240Z","access-policy-id":"devbox-policy","ctx":"eb5d8a2aedc4575b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488184241,"ts":"2024-12-06T12:29:44.240Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"eb5d8a2aedc4575b"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488190346,"ts":"2024-12-06T12:29:50.346Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"c2934f24d49b2185"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488194280,"ts":"2024-12-06T12:29:54.280Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"09829159dd1a082f","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488194281,"ts":"2024-12-06T12:29:54.281Z","access-policy-id":"devbox-policy","ctx":"09829159dd1a082f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488194281,"ts":"2024-12-06T12:29:54.281Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"09829159dd1a082f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w8","execution_time":18,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488203337,"ts":"2024-12-06T12:30:03.337Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":21,"w_st":200,"ctx":"f552b99a17bc3f8f"} -{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733488204329,"ts":"2024-12-06T12:30:04.329Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":12,"ctx":"7501e9f8c887b44d"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488204331,"ts":"2024-12-06T12:30:04.331Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7501e9f8c887b44d","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488204331,"ts":"2024-12-06T12:30:04.331Z","access-policy-id":"devbox-policy","ctx":"7501e9f8c887b44d"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488204332,"ts":"2024-12-06T12:30:04.332Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":15,"w_st":200,"ctx":"7501e9f8c887b44d"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488214360,"ts":"2024-12-06T12:30:14.360Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"abca20d4c0977bad","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488214361,"ts":"2024-12-06T12:30:14.361Z","access-policy-id":"devbox-policy","ctx":"abca20d4c0977bad"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488214362,"ts":"2024-12-06T12:30:14.362Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"abca20d4c0977bad"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488220410,"ts":"2024-12-06T12:30:20.409Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"4bf417087a918637"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488224401,"ts":"2024-12-06T12:30:24.401Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"07e541119b82c545","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488224402,"ts":"2024-12-06T12:30:24.402Z","access-policy-id":"devbox-policy","ctx":"07e541119b82c545"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488224403,"ts":"2024-12-06T12:30:24.403Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"07e541119b82c545"} -{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733488234468,"ts":"2024-12-06T12:30:34.468Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":15,"ctx":"38c4460e508b0e44"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488234469,"ts":"2024-12-06T12:30:34.469Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"38c4460e508b0e44","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488234470,"ts":"2024-12-06T12:30:34.470Z","access-policy-id":"devbox-policy","ctx":"38c4460e508b0e44"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488234470,"ts":"2024-12-06T12:30:34.470Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":17,"w_st":200,"ctx":"38c4460e508b0e44"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488244504,"ts":"2024-12-06T12:30:44.504Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f5f109a4d40d551b","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488244505,"ts":"2024-12-06T12:30:44.505Z","access-policy-id":"devbox-policy","ctx":"f5f109a4d40d551b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488244506,"ts":"2024-12-06T12:30:44.506Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"f5f109a4d40d551b"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488250461,"ts":"2024-12-06T12:30:50.461Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"6657ed93ec1ffac3"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488254543,"ts":"2024-12-06T12:30:54.543Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"8f18dcc1a177cd52","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488254544,"ts":"2024-12-06T12:30:54.544Z","access-policy-id":"devbox-policy","ctx":"8f18dcc1a177cd52"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488254544,"ts":"2024-12-06T12:30:54.544Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"8f18dcc1a177cd52"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w4","execution_time":10,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488263605,"ts":"2024-12-06T12:31:03.605Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":13,"w_st":200,"ctx":"4786fbb292d869a5"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733488264595,"ts":"2024-12-06T12:31:04.595Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":11,"ctx":"9f24ee98429802f0"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488264597,"ts":"2024-12-06T12:31:04.597Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9f24ee98429802f0","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488264597,"ts":"2024-12-06T12:31:04.597Z","access-policy-id":"devbox-policy","ctx":"9f24ee98429802f0"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488264597,"ts":"2024-12-06T12:31:04.597Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":14,"w_st":200,"ctx":"9f24ee98429802f0"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488274658,"ts":"2024-12-06T12:31:14.657Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f4ae43e28f73695a","wait_time":7} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488274659,"ts":"2024-12-06T12:31:14.659Z","access-policy-id":"devbox-policy","ctx":"f4ae43e28f73695a"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488274660,"ts":"2024-12-06T12:31:14.660Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":21,"w_st":200,"ctx":"f4ae43e28f73695a"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488280534,"ts":"2024-12-06T12:31:20.534Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"6f4390c4e7502b5a"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488284680,"ts":"2024-12-06T12:31:24.680Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6e63db86ca7f9619","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488284681,"ts":"2024-12-06T12:31:24.681Z","access-policy-id":"devbox-policy","ctx":"6e63db86ca7f9619"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488284682,"ts":"2024-12-06T12:31:24.682Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"6e63db86ca7f9619"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733488294768,"ts":"2024-12-06T12:31:34.767Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":38,"ctx":"b87ea1620d273cab"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488294770,"ts":"2024-12-06T12:31:34.770Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b87ea1620d273cab","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488294770,"ts":"2024-12-06T12:31:34.770Z","access-policy-id":"devbox-policy","ctx":"b87ea1620d273cab"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488294770,"ts":"2024-12-06T12:31:34.770Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":42,"w_st":200,"ctx":"b87ea1620d273cab"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488304773,"ts":"2024-12-06T12:31:44.773Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"8528e7afada5d152","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488304773,"ts":"2024-12-06T12:31:44.773Z","access-policy-id":"devbox-policy","ctx":"8528e7afada5d152"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488304774,"ts":"2024-12-06T12:31:44.774Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"8528e7afada5d152"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488310638,"ts":"2024-12-06T12:31:50.638Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":7,"w_st":200,"ctx":"e1a0cdb9a3b7bd2c"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488314811,"ts":"2024-12-06T12:31:54.811Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"79557a93057d9c36","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488314812,"ts":"2024-12-06T12:31:54.812Z","access-policy-id":"devbox-policy","ctx":"79557a93057d9c36"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488314812,"ts":"2024-12-06T12:31:54.812Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"79557a93057d9c36"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w3","execution_time":16,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488323867,"ts":"2024-12-06T12:32:03.867Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":30,"w_st":200,"ctx":"1a20a86d69822b1b"} -{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733488324848,"ts":"2024-12-06T12:32:04.848Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":9,"ctx":"d9cd508fb8ac66ba"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488324849,"ts":"2024-12-06T12:32:04.849Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d9cd508fb8ac66ba","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488324850,"ts":"2024-12-06T12:32:04.850Z","access-policy-id":"devbox-policy","ctx":"d9cd508fb8ac66ba"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488324850,"ts":"2024-12-06T12:32:04.850Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"d9cd508fb8ac66ba"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488334879,"ts":"2024-12-06T12:32:14.879Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b84d66f174c79ce9","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488334879,"ts":"2024-12-06T12:32:14.879Z","access-policy-id":"devbox-policy","ctx":"b84d66f174c79ce9"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488334880,"ts":"2024-12-06T12:32:14.880Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"b84d66f174c79ce9"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488340710,"ts":"2024-12-06T12:32:20.710Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"ba76a11d16e971dd"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488344912,"ts":"2024-12-06T12:32:24.912Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"56f571f2c81b110e","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488344913,"ts":"2024-12-06T12:32:24.913Z","access-policy-id":"devbox-policy","ctx":"56f571f2c81b110e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488344913,"ts":"2024-12-06T12:32:24.913Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"56f571f2c81b110e"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733488354964,"ts":"2024-12-06T12:32:34.964Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":30,"ctx":"2fd900fc4193642e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488354966,"ts":"2024-12-06T12:32:34.966Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"2fd900fc4193642e","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488354966,"ts":"2024-12-06T12:32:34.966Z","access-policy-id":"devbox-policy","ctx":"2fd900fc4193642e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488354967,"ts":"2024-12-06T12:32:34.967Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":33,"w_st":200,"ctx":"2fd900fc4193642e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488365026,"ts":"2024-12-06T12:32:45.025Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6c4ab44df0dd023f","wait_time":6} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488365027,"ts":"2024-12-06T12:32:45.027Z","access-policy-id":"devbox-policy","ctx":"6c4ab44df0dd023f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":6,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488365032,"ts":"2024-12-06T12:32:45.032Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":25,"w_st":200,"ctx":"6c4ab44df0dd023f"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":8,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488370822,"ts":"2024-12-06T12:32:50.822Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":10,"w_st":200,"ctx":"63fddfc2baf1e931"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488375054,"ts":"2024-12-06T12:32:55.054Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"bfcb834cfac81740","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488375054,"ts":"2024-12-06T12:32:55.054Z","access-policy-id":"devbox-policy","ctx":"bfcb834cfac81740"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488375055,"ts":"2024-12-06T12:32:55.055Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"bfcb834cfac81740"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w6","execution_time":25,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488384144,"ts":"2024-12-06T12:33:04.144Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":45,"w_st":200,"ctx":"5fe37f7c4c6a31a7"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733488385124,"ts":"2024-12-06T12:33:05.124Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":21,"ctx":"b19f413a25b10d56"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488385127,"ts":"2024-12-06T12:33:05.127Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b19f413a25b10d56","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488385128,"ts":"2024-12-06T12:33:05.128Z","access-policy-id":"devbox-policy","ctx":"b19f413a25b10d56"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488385129,"ts":"2024-12-06T12:33:05.129Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":28,"w_st":200,"ctx":"b19f413a25b10d56"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488395144,"ts":"2024-12-06T12:33:15.144Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"acc42fda4dacd150","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488395145,"ts":"2024-12-06T12:33:15.145Z","access-policy-id":"devbox-policy","ctx":"acc42fda4dacd150"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488395146,"ts":"2024-12-06T12:33:15.146Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"acc42fda4dacd150"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488400927,"ts":"2024-12-06T12:33:20.927Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":5,"w_st":200,"ctx":"4b64aba302f5be62"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488405209,"ts":"2024-12-06T12:33:25.208Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"da15f66c8ab9ac6b","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488405209,"ts":"2024-12-06T12:33:25.209Z","access-policy-id":"devbox-policy","ctx":"da15f66c8ab9ac6b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488405210,"ts":"2024-12-06T12:33:25.210Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"da15f66c8ab9ac6b"} -{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733488415290,"ts":"2024-12-06T12:33:35.290Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":32,"ctx":"d5f1962901721a77"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488415297,"ts":"2024-12-06T12:33:35.297Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d5f1962901721a77","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488415298,"ts":"2024-12-06T12:33:35.298Z","access-policy-id":"devbox-policy","ctx":"d5f1962901721a77"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488415298,"ts":"2024-12-06T12:33:35.298Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":44,"w_st":200,"ctx":"d5f1962901721a77"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488425344,"ts":"2024-12-06T12:33:45.344Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"90ea6d91e84d52cb","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488425346,"ts":"2024-12-06T12:33:45.346Z","access-policy-id":"devbox-policy","ctx":"90ea6d91e84d52cb"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488425347,"ts":"2024-12-06T12:33:45.347Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"90ea6d91e84d52cb"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488430981,"ts":"2024-12-06T12:33:50.981Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"43cd494943ae05db"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488435375,"ts":"2024-12-06T12:33:55.375Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b413f4eecbdf479e","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488435375,"ts":"2024-12-06T12:33:55.375Z","access-policy-id":"devbox-policy","ctx":"b413f4eecbdf479e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488435376,"ts":"2024-12-06T12:33:55.376Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"b413f4eecbdf479e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":25,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488444428,"ts":"2024-12-06T12:34:04.428Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":29,"w_st":200,"ctx":"79bc6b6f183e8b79"} -{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733488445413,"ts":"2024-12-06T12:34:05.413Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":14,"ctx":"caa4c38e0b148442"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488445416,"ts":"2024-12-06T12:34:05.416Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"caa4c38e0b148442","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488445416,"ts":"2024-12-06T12:34:05.416Z","access-policy-id":"devbox-policy","ctx":"caa4c38e0b148442"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488445417,"ts":"2024-12-06T12:34:05.417Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":19,"w_st":200,"ctx":"caa4c38e0b148442"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488455452,"ts":"2024-12-06T12:34:15.452Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7913f64d385edb06","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488455452,"ts":"2024-12-06T12:34:15.452Z","access-policy-id":"devbox-policy","ctx":"7913f64d385edb06"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488455453,"ts":"2024-12-06T12:34:15.453Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"7913f64d385edb06"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":4,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488461076,"ts":"2024-12-06T12:34:21.076Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":9,"w_st":200,"ctx":"6bd293c4b08223a2"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488465490,"ts":"2024-12-06T12:34:25.489Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a691a8fd1640093f","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488465492,"ts":"2024-12-06T12:34:25.492Z","access-policy-id":"devbox-policy","ctx":"a691a8fd1640093f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488465493,"ts":"2024-12-06T12:34:25.493Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"a691a8fd1640093f"} -{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733488475564,"ts":"2024-12-06T12:34:35.564Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":44,"ctx":"4b93bc5c8bc8d4e4"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488475566,"ts":"2024-12-06T12:34:35.566Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4b93bc5c8bc8d4e4","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488475566,"ts":"2024-12-06T12:34:35.566Z","access-policy-id":"devbox-policy","ctx":"4b93bc5c8bc8d4e4"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488475566,"ts":"2024-12-06T12:34:35.566Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":47,"w_st":200,"ctx":"4b93bc5c8bc8d4e4"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488485567,"ts":"2024-12-06T12:34:45.567Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d649489ad680c9fe","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488485568,"ts":"2024-12-06T12:34:45.568Z","access-policy-id":"devbox-policy","ctx":"d649489ad680c9fe"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488485569,"ts":"2024-12-06T12:34:45.569Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"d649489ad680c9fe"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488491144,"ts":"2024-12-06T12:34:51.144Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"ba780708f9581551"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488495600,"ts":"2024-12-06T12:34:55.600Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"bf6d6c481ed797ff","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488495601,"ts":"2024-12-06T12:34:55.601Z","access-policy-id":"devbox-policy","ctx":"bf6d6c481ed797ff"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488495601,"ts":"2024-12-06T12:34:55.601Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"bf6d6c481ed797ff"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w7","execution_time":41,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488504719,"ts":"2024-12-06T12:35:04.719Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":64,"w_st":200,"ctx":"d8535d39ae0d3ece"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733488505669,"ts":"2024-12-06T12:35:05.669Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":14,"ctx":"0d00b214ca4ac2e5"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488505671,"ts":"2024-12-06T12:35:05.671Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0d00b214ca4ac2e5","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488505672,"ts":"2024-12-06T12:35:05.672Z","access-policy-id":"devbox-policy","ctx":"0d00b214ca4ac2e5"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488505673,"ts":"2024-12-06T12:35:05.673Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":19,"w_st":200,"ctx":"0d00b214ca4ac2e5"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488515717,"ts":"2024-12-06T12:35:15.717Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f882c00958f948c1","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488515718,"ts":"2024-12-06T12:35:15.718Z","access-policy-id":"devbox-policy","ctx":"f882c00958f948c1"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488515719,"ts":"2024-12-06T12:35:15.719Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"f882c00958f948c1"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488521255,"ts":"2024-12-06T12:35:21.254Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":9,"w_st":200,"ctx":"94e73cb2cc394c51"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488525761,"ts":"2024-12-06T12:35:25.761Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"8d2c947673382305","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488525763,"ts":"2024-12-06T12:35:25.763Z","access-policy-id":"devbox-policy","ctx":"8d2c947673382305"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488525764,"ts":"2024-12-06T12:35:25.764Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"8d2c947673382305"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733488535831,"ts":"2024-12-06T12:35:35.831Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":25,"ctx":"4539b26a76f0d467"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488535833,"ts":"2024-12-06T12:35:35.833Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4539b26a76f0d467","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488535833,"ts":"2024-12-06T12:35:35.833Z","access-policy-id":"devbox-policy","ctx":"4539b26a76f0d467"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488535833,"ts":"2024-12-06T12:35:35.833Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":28,"w_st":200,"ctx":"4539b26a76f0d467"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488545852,"ts":"2024-12-06T12:35:45.852Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d3c99fbabc5f2e69","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488545853,"ts":"2024-12-06T12:35:45.853Z","access-policy-id":"devbox-policy","ctx":"d3c99fbabc5f2e69"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488545854,"ts":"2024-12-06T12:35:45.854Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"d3c99fbabc5f2e69"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488551333,"ts":"2024-12-06T12:35:51.333Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":10,"w_st":200,"ctx":"88ae0ca0ce2b4f6d"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488555892,"ts":"2024-12-06T12:35:55.892Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e86a0a8d362d154b","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488555894,"ts":"2024-12-06T12:35:55.894Z","access-policy-id":"devbox-policy","ctx":"e86a0a8d362d154b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488555895,"ts":"2024-12-06T12:35:55.895Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"e86a0a8d362d154b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w1","execution_time":27,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488564971,"ts":"2024-12-06T12:36:04.971Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":30,"w_st":200,"ctx":"304e8f7e9b28e38d"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733488565955,"ts":"2024-12-06T12:36:05.955Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":14,"ctx":"4c5692daed25d1cd"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488565958,"ts":"2024-12-06T12:36:05.958Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4c5692daed25d1cd","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488565958,"ts":"2024-12-06T12:36:05.958Z","access-policy-id":"devbox-policy","ctx":"4c5692daed25d1cd"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488565959,"ts":"2024-12-06T12:36:05.959Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":19,"w_st":200,"ctx":"4c5692daed25d1cd"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488576006,"ts":"2024-12-06T12:36:16.006Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4c23d7bdb5b8c0e8","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488576007,"ts":"2024-12-06T12:36:16.007Z","access-policy-id":"devbox-policy","ctx":"4c23d7bdb5b8c0e8"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488576008,"ts":"2024-12-06T12:36:16.008Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"4c23d7bdb5b8c0e8"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488581405,"ts":"2024-12-06T12:36:21.405Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":10,"w_st":200,"ctx":"9fec59a1f1f5bc40"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488586037,"ts":"2024-12-06T12:36:26.037Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f8c5be2c110dbf7a","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488586038,"ts":"2024-12-06T12:36:26.038Z","access-policy-id":"devbox-policy","ctx":"f8c5be2c110dbf7a"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488586039,"ts":"2024-12-06T12:36:26.039Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"f8c5be2c110dbf7a"} -{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733488587018,"ts":"2024-12-06T12:36:27.018Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":1,"ctx":"654cd4de3a825e3a"} -{"ev":"w/req","w_url":"/Patient","w":"w6","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488587019,"ts":"2024-12-06T12:36:27.019Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"654cd4de3a825e3a","wait_time":7,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488587020,"ts":"2024-12-06T12:36:27.020Z","access-policy-id":"devbox-policy","ctx":"654cd4de3a825e3a"} -{"ev":"db/q","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733488587025,"ts":"2024-12-06T12:36:27.025Z","sql":"select id, ts, cts, txid, resource_type, resource from \"search\" where resource->>'_source' <> 'code' or resource->>'_source' is null ","d":1,"ctx":"654cd4de3a825e3a"} -{"ev":"db/q","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733488587253,"ts":"2024-12-06T12:36:27.253Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":4,"ctx":"654cd4de3a825e3a"} -{"ev":"resource/create","txid":"8","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733488587257,"ts":"2024-12-06T12:36:27.257Z","rtp":"Patient","ctx":"654cd4de3a825e3a","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w6","execution_time":240,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488587259,"ts":"2024-12-06T12:36:27.259Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":250,"w_st":201,"ctx":"654cd4de3a825e3a","w_qs":"given=John&family=Doe"} -{"ev":"w/req","w_url":"/Patient","w":"w2","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488587264,"ts":"2024-12-06T12:36:27.264Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"819b635ead7f3fdf","wait_time":0,"w_qs":"given=Alice&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488587264,"ts":"2024-12-06T12:36:27.264Z","access-policy-id":"devbox-policy","ctx":"819b635ead7f3fdf"} -{"ev":"db/q","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488587267,"ts":"2024-12-06T12:36:27.267Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":0,"ctx":"819b635ead7f3fdf"} -{"ev":"resource/create","txid":"9","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488587269,"ts":"2024-12-06T12:36:27.269Z","rtp":"Patient","ctx":"819b635ead7f3fdf","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w2","execution_time":6,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488587270,"ts":"2024-12-06T12:36:27.270Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":7,"w_st":201,"ctx":"819b635ead7f3fdf","w_qs":"given=Alice&family=Doe"} -{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733488596085,"ts":"2024-12-06T12:36:36.085Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"887e9044b09c45bb"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488596089,"ts":"2024-12-06T12:36:36.089Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"887e9044b09c45bb","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488596091,"ts":"2024-12-06T12:36:36.091Z","access-policy-id":"devbox-policy","ctx":"887e9044b09c45bb"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488596092,"ts":"2024-12-06T12:36:36.092Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":17,"w_st":200,"ctx":"887e9044b09c45bb"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488606125,"ts":"2024-12-06T12:36:46.125Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c07dcadca14d403f","wait_time":4} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488606127,"ts":"2024-12-06T12:36:46.127Z","access-policy-id":"devbox-policy","ctx":"c07dcadca14d403f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488606128,"ts":"2024-12-06T12:36:46.128Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":16,"w_st":200,"ctx":"c07dcadca14d403f"} -{"ev":"w/req","w_url":"/Patient","w":"w5","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488606580,"ts":"2024-12-06T12:36:46.580Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"a1243225f8e35b35","wait_time":1,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488606580,"ts":"2024-12-06T12:36:46.580Z","access-policy-id":"devbox-policy","ctx":"a1243225f8e35b35"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488606590,"ts":"2024-12-06T12:36:46.589Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"a1243225f8e35b35"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488606597,"ts":"2024-12-06T12:36:46.597Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"a1243225f8e35b35"} -{"ev":"resource/update","txid":"10","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488606601,"ts":"2024-12-06T12:36:46.601Z","rtp":"Patient","ctx":"a1243225f8e35b35","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w5","execution_time":23,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488606603,"ts":"2024-12-06T12:36:46.603Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":26,"w_st":200,"ctx":"a1243225f8e35b35","w_qs":"given=John&family=Doe"} -{"ev":"w/req","w_url":"/Patient","w":"w8","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488606607,"ts":"2024-12-06T12:36:46.607Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"c1cc5130dac4b7e7","wait_time":0,"w_qs":"given=Alice&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488606607,"ts":"2024-12-06T12:36:46.607Z","access-policy-id":"devbox-policy","ctx":"c1cc5130dac4b7e7"} -{"ev":"db/q","w":"w8","tn":"devbox","op":"conditional-update","timeUnix":1733488606612,"ts":"2024-12-06T12:36:46.612Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"c1cc5130dac4b7e7"} -{"ev":"db/q","w":"w8","tn":"devbox","op":"conditional-update","timeUnix":1733488606613,"ts":"2024-12-06T12:36:46.612Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"c1cc5130dac4b7e7"} -{"ev":"resource/update","txid":"11","w":"w8","tn":"devbox","op":"conditional-update","timeUnix":1733488606616,"ts":"2024-12-06T12:36:46.616Z","rtp":"Patient","ctx":"c1cc5130dac4b7e7","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w8","execution_time":11,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488606618,"ts":"2024-12-06T12:36:46.618Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":12,"w_st":200,"ctx":"c1cc5130dac4b7e7","w_qs":"given=Alice&family=Doe"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488611470,"ts":"2024-12-06T12:36:51.470Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"a99f75e677b87a72"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488616165,"ts":"2024-12-06T12:36:56.165Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"23f98c3357ce7c68","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488616165,"ts":"2024-12-06T12:36:56.165Z","access-policy-id":"devbox-policy","ctx":"23f98c3357ce7c68"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488616166,"ts":"2024-12-06T12:36:56.166Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"23f98c3357ce7c68"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w6","execution_time":18,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488625214,"ts":"2024-12-06T12:37:05.214Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":23,"w_st":200,"ctx":"21bee963ec0554eb"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733488626212,"ts":"2024-12-06T12:37:06.212Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":14,"ctx":"10a0cb027fd2d75b"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488626215,"ts":"2024-12-06T12:37:06.214Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"10a0cb027fd2d75b","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488626215,"ts":"2024-12-06T12:37:06.215Z","access-policy-id":"devbox-policy","ctx":"10a0cb027fd2d75b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488626216,"ts":"2024-12-06T12:37:06.216Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":19,"w_st":200,"ctx":"10a0cb027fd2d75b"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488636232,"ts":"2024-12-06T12:37:16.232Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"a10b56c3cb4a07ea","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488636233,"ts":"2024-12-06T12:37:16.233Z","access-policy-id":"devbox-policy","ctx":"a10b56c3cb4a07ea"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488636234,"ts":"2024-12-06T12:37:16.234Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"a10b56c3cb4a07ea"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733488636889,"ts":"2024-12-06T12:37:16.889Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":3,"ctx":"7448cd29a88d3d4e"} -{"ev":"w/req","w_url":"/Patient","w":"w1","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488636892,"ts":"2024-12-06T12:37:16.892Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"7448cd29a88d3d4e","wait_time":0,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488636892,"ts":"2024-12-06T12:37:16.892Z","access-policy-id":"devbox-policy","ctx":"7448cd29a88d3d4e"} -{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733488636914,"ts":"2024-12-06T12:37:16.914Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":14,"ctx":"7448cd29a88d3d4e"} -{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733488636916,"ts":"2024-12-06T12:37:16.916Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"7448cd29a88d3d4e"} -{"ev":"resource/update-dup","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733488636922,"ts":"2024-12-06T12:37:16.922Z","rtp":"Patient","ctx":"7448cd29a88d3d4e","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w1","execution_time":32,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488636924,"ts":"2024-12-06T12:37:16.924Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":39,"w_st":200,"ctx":"7448cd29a88d3d4e","w_qs":"given=John&family=Doe"} -{"ev":"w/req","w_url":"/Patient","w":"w5","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488636932,"ts":"2024-12-06T12:37:16.932Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"831d3c26b855ce8f","wait_time":0,"w_qs":"given=Alice&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488636933,"ts":"2024-12-06T12:37:16.933Z","access-policy-id":"devbox-policy","ctx":"831d3c26b855ce8f"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488636942,"ts":"2024-12-06T12:37:16.942Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"831d3c26b855ce8f"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488636943,"ts":"2024-12-06T12:37:16.943Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":1,"ctx":"831d3c26b855ce8f"} -{"ev":"resource/update-dup","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488636945,"ts":"2024-12-06T12:37:16.945Z","rtp":"Patient","ctx":"831d3c26b855ce8f","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w5","execution_time":15,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488636947,"ts":"2024-12-06T12:37:16.947Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":18,"w_st":200,"ctx":"831d3c26b855ce8f","w_qs":"given=Alice&family=Doe"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":6,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488641592,"ts":"2024-12-06T12:37:21.592Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":14,"w_st":200,"ctx":"8ec5c0d0955f4abe"} -{"ev":"w/req","w_url":"/ui/console","w":"w4","w_m":"get","tn":"devbox","op":"console","timeUnix":1733488645193,"ts":"2024-12-06T12:37:25.193Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"524ee188ce6d269d","wait_time":0} -{"w_referer":"http://localhost:8888/auth/login","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/ui/console","w":"w4","execution_time":8,"w_m":"get","tn":"devbox","op":"console","timeUnix":1733488645201,"ts":"2024-12-06T12:37:25.201Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /ui/console","w_uid":"admin","d":12,"w_st":200,"ctx":"524ee188ce6d269d"} -{"ev":"w/req","w_url":"/fhir/Patient","w":"w5","w_m":"get","tn":"devbox","op":"search","timeUnix":1733488646104,"ts":"2024-12-06T12:37:26.104Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"8934677131c5692b","wait_time":1,"w_qs":"_count=30&_sort=_id&_ilike="} -{"ev":"w/req","w_url":"/rpc","w":"w8","w_m":"post","tn":"devbox","op":"rpc","timeUnix":1733488646109,"ts":"2024-12-06T12:37:26.109Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"581fe5f9d6ed10eb","wait_time":3,"w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"FhirSearch","tn":"devbox","op":"search","timeUnix":1733488646111,"ts":"2024-12-06T12:37:26.111Z","access-policy-id":"devbox-policy","ctx":"8934677131c5692b"} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"rpc","tn":"devbox","op":"rpc","timeUnix":1733488646111,"ts":"2024-12-06T12:37:26.111Z","access-policy-id":"devbox-policy","ctx":"581fe5f9d6ed10eb"} -{"ev":"w/req","w_url":"/fhir/metadata","w":"w1","w_m":"get","tn":"devbox","op":"capability","timeUnix":1733488646113,"ts":"2024-12-06T12:37:26.113Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b03058756d9f2288","wait_time":14,"w_qs":"include-custom-resources=true"} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"fhir-capability","tn":"devbox","op":"capability","timeUnix":1733488646113,"ts":"2024-12-06T12:37:26.113Z","access-policy-id":"devbox-policy","ctx":"b03058756d9f2288"} -{"ev":"db/q","w":"w1","tn":"devbox","op":"capability","timeUnix":1733488646116,"ts":"2024-12-06T12:37:26.116Z","sql":"SELECT * FROM \"aidboxconfig\" WHERE \"id\" = ?","db_prm":["box"],"d":2,"ctx":"b03058756d9f2288"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"search","timeUnix":1733488646119,"ts":"2024-12-06T12:37:26.119Z","sql":"SELECT \"patient\".* FROM \"patient\" ORDER BY \"patient\".id ASC LIMIT ? OFFSET ? ","db_prm":["30","0"],"d":5,"ctx":"8934677131c5692b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Patient","w":"w5","execution_time":16,"w_m":"get","tn":"devbox","op":"search","timeUnix":1733488646120,"ts":"2024-12-06T12:37:26.120Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Patient","w_r":"GET /fhir/Patient","w_uid":"admin","d":23,"w_st":200,"ctx":"8934677131c5692b","w_qs":"_count=30&_sort=_id&_ilike="} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/metadata","w":"w1","execution_time":8,"w_m":"get","tn":"devbox","op":"capability","timeUnix":1733488646121,"ts":"2024-12-06T12:37:26.121Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /fhir/metadata","w_uid":"admin","d":23,"w_st":200,"ctx":"b03058756d9f2288","w_qs":"include-custom-resources=true"} -{"rpc_p":{"resource-type":"Patient"},"ev":"rpc/call","rpc_m":"aidbox.introspector/get-schemas-by-resource-type","w":"w8","tn":"devbox","rpc_u":{"email":null},"op":"rpc:get-schemas-by-resource-type","timeUnix":1733488646242,"ts":"2024-12-06T12:37:26.242Z","d":130,"ctx":"581fe5f9d6ed10eb","lvl":"info"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/rpc","w":"w8","execution_time":134,"w_m":"post","tn":"devbox","op":"rpc:get-schemas-by-resource-type","timeUnix":1733488646243,"ts":"2024-12-06T12:37:26.243Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /rpc","w_uid":"admin","d":145,"w_st":200,"ctx":"581fe5f9d6ed10eb","w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} -{"ev":"w/req","w_url":"/fhir/Patient/$validate","w":"w4","w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733488647611,"ts":"2024-12-06T12:37:27.611Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d1a7680446069aba","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"FhirValidateCreate","tn":"devbox","op":"$validate","timeUnix":1733488647612,"ts":"2024-12-06T12:37:27.612Z","access-policy-id":"devbox-policy","ctx":"d1a7680446069aba"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Patient/$validate","w":"w4","execution_time":7,"w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733488647618,"ts":"2024-12-06T12:37:27.618Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Patient","w_r":"POST /fhir/Patient/$validate","w_uid":"admin","d":10,"w_st":200,"ctx":"d1a7680446069aba"} -{"ev":"w/req","w_url":"/fhir/Patient/$validate","w":"w3","w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733488648484,"ts":"2024-12-06T12:37:28.484Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"5c734d13fdf4c3a8","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"FhirValidateCreate","tn":"devbox","op":"$validate","timeUnix":1733488648485,"ts":"2024-12-06T12:37:28.485Z","access-policy-id":"devbox-policy","ctx":"5c734d13fdf4c3a8"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Patient/$validate","w":"w3","execution_time":6,"w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733488648490,"ts":"2024-12-06T12:37:28.490Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Patient","w_r":"POST /fhir/Patient/$validate","w_uid":"admin","d":8,"w_st":200,"ctx":"5c734d13fdf4c3a8"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488656086,"ts":"2024-12-06T12:37:36.086Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"80ec70a1715dccd4","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488656086,"ts":"2024-12-06T12:37:36.086Z","access-policy-id":"devbox-policy","ctx":"80ec70a1715dccd4"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488656088,"ts":"2024-12-06T12:37:36.088Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"80ec70a1715dccd4"} -{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733488666092,"ts":"2024-12-06T12:37:46.091Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"f7102a280e6c607b"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488666099,"ts":"2024-12-06T12:37:46.099Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f7102a280e6c607b","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488666100,"ts":"2024-12-06T12:37:46.100Z","access-policy-id":"devbox-policy","ctx":"f7102a280e6c607b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488666102,"ts":"2024-12-06T12:37:46.102Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"f7102a280e6c607b"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488671692,"ts":"2024-12-06T12:37:51.692Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"ac26dadcd2ee741b"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488676101,"ts":"2024-12-06T12:37:56.101Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f5f666db3f173157","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488676101,"ts":"2024-12-06T12:37:56.101Z","access-policy-id":"devbox-policy","ctx":"f5f666db3f173157"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488676102,"ts":"2024-12-06T12:37:56.102Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"f5f666db3f173157"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488686100,"ts":"2024-12-06T12:38:06.100Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c3533e3c48466504","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488686102,"ts":"2024-12-06T12:38:06.102Z","access-policy-id":"devbox-policy","ctx":"c3533e3c48466504"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488686102,"ts":"2024-12-06T12:38:06.102Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"c3533e3c48466504"} -{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733488694076,"ts":"2024-12-06T12:38:14.076Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":35,"ctx":"a7babe17b25daf25"} -{"ev":"w/req","w_url":"/Patient","w":"w8","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488694090,"ts":"2024-12-06T12:38:14.090Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"a7babe17b25daf25","wait_time":4,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488694091,"ts":"2024-12-06T12:38:14.091Z","access-policy-id":"devbox-policy","ctx":"a7babe17b25daf25"} -{"ev":"db/q","w":"w8","tn":"devbox","op":"conditional-update","timeUnix":1733488694108,"ts":"2024-12-06T12:38:14.108Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":9,"ctx":"a7babe17b25daf25"} -{"ev":"db/q","w":"w8","tn":"devbox","op":"conditional-update","timeUnix":1733488694110,"ts":"2024-12-06T12:38:14.110Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"a7babe17b25daf25"} -{"ev":"resource/update-dup","w":"w8","tn":"devbox","op":"conditional-update","timeUnix":1733488694116,"ts":"2024-12-06T12:38:14.116Z","rtp":"Patient","ctx":"a7babe17b25daf25","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w8","execution_time":29,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488694119,"ts":"2024-12-06T12:38:14.119Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":82,"w_st":200,"ctx":"a7babe17b25daf25","w_qs":"given=John&family=Doe"} -{"ev":"w/req","w_url":"/Patient","w":"w4","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488694125,"ts":"2024-12-06T12:38:14.125Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"d77b983983cf5c1a","wait_time":0,"w_qs":"given=Alice&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488694125,"ts":"2024-12-06T12:38:14.125Z","access-policy-id":"devbox-policy","ctx":"d77b983983cf5c1a"} -{"ev":"db/q","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488694130,"ts":"2024-12-06T12:38:14.130Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"d77b983983cf5c1a"} -{"ev":"db/q","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488694130,"ts":"2024-12-06T12:38:14.130Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"d77b983983cf5c1a"} -{"ev":"resource/update-dup","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488694132,"ts":"2024-12-06T12:38:14.132Z","rtp":"Patient","ctx":"d77b983983cf5c1a","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w4","execution_time":8,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488694133,"ts":"2024-12-06T12:38:14.133Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":9,"w_st":200,"ctx":"d77b983983cf5c1a","w_qs":"given=Alice&family=Doe"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733488696118,"ts":"2024-12-06T12:38:16.118Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"cc68e7a69835f0b9"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488696119,"ts":"2024-12-06T12:38:16.119Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"cc68e7a69835f0b9","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488696120,"ts":"2024-12-06T12:38:16.120Z","access-policy-id":"devbox-policy","ctx":"cc68e7a69835f0b9"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488696120,"ts":"2024-12-06T12:38:16.120Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"cc68e7a69835f0b9"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488701788,"ts":"2024-12-06T12:38:21.788Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"8e3a9fb0ba485ca9"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488706085,"ts":"2024-12-06T12:38:26.085Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":5,"w_st":200,"ctx":"70377d1af064fb64"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488706099,"ts":"2024-12-06T12:38:26.099Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"8bb8d0c302642dc1","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488706100,"ts":"2024-12-06T12:38:26.100Z","access-policy-id":"devbox-policy","ctx":"8bb8d0c302642dc1"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488706101,"ts":"2024-12-06T12:38:26.101Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"8bb8d0c302642dc1"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488716151,"ts":"2024-12-06T12:38:36.149Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7333f2f1dfcf7f77","wait_time":7} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488716190,"ts":"2024-12-06T12:38:36.190Z","access-policy-id":"devbox-policy","ctx":"7333f2f1dfcf7f77"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":38,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488716196,"ts":"2024-12-06T12:38:36.196Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":79,"w_st":200,"ctx":"7333f2f1dfcf7f77"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488726104,"ts":"2024-12-06T12:38:46.104Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"54d5bfa629fde770","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488726104,"ts":"2024-12-06T12:38:46.104Z","access-policy-id":"devbox-policy","ctx":"54d5bfa629fde770"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488726105,"ts":"2024-12-06T12:38:46.105Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"54d5bfa629fde770"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488731874,"ts":"2024-12-06T12:38:51.874Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"8cc90995a8caf840"} -{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733488736135,"ts":"2024-12-06T12:38:56.134Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"862990ed84a7c979"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488736142,"ts":"2024-12-06T12:38:56.142Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"862990ed84a7c979","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488736144,"ts":"2024-12-06T12:38:56.144Z","access-policy-id":"devbox-policy","ctx":"862990ed84a7c979"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488736145,"ts":"2024-12-06T12:38:56.145Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":20,"w_st":200,"ctx":"862990ed84a7c979"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488746109,"ts":"2024-12-06T12:39:06.109Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"743ee100feb75920","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488746110,"ts":"2024-12-06T12:39:06.110Z","access-policy-id":"devbox-policy","ctx":"743ee100feb75920"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488746111,"ts":"2024-12-06T12:39:06.111Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"743ee100feb75920"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488756115,"ts":"2024-12-06T12:39:16.115Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"22bcabc3ecb1f487","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488756116,"ts":"2024-12-06T12:39:16.116Z","access-policy-id":"devbox-policy","ctx":"22bcabc3ecb1f487"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488756117,"ts":"2024-12-06T12:39:16.117Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"22bcabc3ecb1f487"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":16,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488761951,"ts":"2024-12-06T12:39:21.951Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":16,"w_st":200,"ctx":"e5ff6841c361ddcb"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733488765438,"ts":"2024-12-06T12:39:25.438Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":2,"ctx":"2352b60afbe4beda"} -{"ev":"w/req","w_url":"/Patient","w":"w2","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488765441,"ts":"2024-12-06T12:39:25.441Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"2352b60afbe4beda","wait_time":1,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488765441,"ts":"2024-12-06T12:39:25.441Z","access-policy-id":"devbox-policy","ctx":"2352b60afbe4beda"} -{"ev":"db/q","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488765455,"ts":"2024-12-06T12:39:25.455Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":5,"ctx":"2352b60afbe4beda"} -{"ev":"db/q","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488765457,"ts":"2024-12-06T12:39:25.457Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":0,"ctx":"2352b60afbe4beda"} -{"ev":"resource/update-dup","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488765463,"ts":"2024-12-06T12:39:25.463Z","rtp":"Patient","ctx":"2352b60afbe4beda","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w2","execution_time":25,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488765466,"ts":"2024-12-06T12:39:25.466Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":31,"w_st":200,"ctx":"2352b60afbe4beda","w_qs":"given=John&family=Doe"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488766085,"ts":"2024-12-06T12:39:26.085Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":6,"w_st":200,"ctx":"3c27d292b27d5d20"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488766119,"ts":"2024-12-06T12:39:26.119Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"192da87cfdba6610","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488766120,"ts":"2024-12-06T12:39:26.120Z","access-policy-id":"devbox-policy","ctx":"192da87cfdba6610"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488766121,"ts":"2024-12-06T12:39:26.121Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"192da87cfdba6610"} -{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733488776148,"ts":"2024-12-06T12:39:36.148Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":10,"ctx":"3a41a32813a4fbae"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488776247,"ts":"2024-12-06T12:39:36.247Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3a41a32813a4fbae","wait_time":8} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488776249,"ts":"2024-12-06T12:39:36.249Z","access-policy-id":"devbox-policy","ctx":"3a41a32813a4fbae"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488776250,"ts":"2024-12-06T12:39:36.250Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":121,"w_st":200,"ctx":"3a41a32813a4fbae"} -{"ev":"w/req","w_url":"/Patient","w":"w4","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488777204,"ts":"2024-12-06T12:39:37.203Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"2b524dbd53340b0e","wait_time":1,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488777204,"ts":"2024-12-06T12:39:37.204Z","access-policy-id":"devbox-policy","ctx":"2b524dbd53340b0e"} -{"ev":"db/q","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488777211,"ts":"2024-12-06T12:39:37.211Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"2b524dbd53340b0e"} -{"ev":"db/q","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488777212,"ts":"2024-12-06T12:39:37.212Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":0,"ctx":"2b524dbd53340b0e"} -{"ev":"resource/update-dup","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488777216,"ts":"2024-12-06T12:39:37.216Z","rtp":"Patient","ctx":"2b524dbd53340b0e","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w4","execution_time":14,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488777218,"ts":"2024-12-06T12:39:37.218Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":18,"w_st":200,"ctx":"2b524dbd53340b0e","w_qs":"given=John&family=Doe"} -{"ev":"w/req","w_url":"/Patient","w":"w3","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488777223,"ts":"2024-12-06T12:39:37.223Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"ca555ad0b6c76cbb","wait_time":0,"w_qs":"given=Alice&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488777224,"ts":"2024-12-06T12:39:37.223Z","access-policy-id":"devbox-policy","ctx":"ca555ad0b6c76cbb"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733488777228,"ts":"2024-12-06T12:39:37.228Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"ca555ad0b6c76cbb"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733488777229,"ts":"2024-12-06T12:39:37.229Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"ca555ad0b6c76cbb"} -{"ev":"resource/update-dup","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733488777240,"ts":"2024-12-06T12:39:37.240Z","rtp":"Patient","ctx":"ca555ad0b6c76cbb","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w3","execution_time":18,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488777241,"ts":"2024-12-06T12:39:37.241Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":19,"w_st":200,"ctx":"ca555ad0b6c76cbb","w_qs":"given=Alice&family=Doe"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488786121,"ts":"2024-12-06T12:39:46.121Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6ad3f983dbbd3068","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488786122,"ts":"2024-12-06T12:39:46.122Z","access-policy-id":"devbox-policy","ctx":"6ad3f983dbbd3068"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488786122,"ts":"2024-12-06T12:39:46.122Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"6ad3f983dbbd3068"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488792022,"ts":"2024-12-06T12:39:52.022Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"5b9ccc4437115b3e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488796127,"ts":"2024-12-06T12:39:56.127Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1fb07ca4d578179b","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488796128,"ts":"2024-12-06T12:39:56.128Z","access-policy-id":"devbox-policy","ctx":"1fb07ca4d578179b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488796129,"ts":"2024-12-06T12:39:56.129Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"1fb07ca4d578179b"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488806143,"ts":"2024-12-06T12:40:06.143Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"31ee03971ffc3d1d","wait_time":4} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488806144,"ts":"2024-12-06T12:40:06.144Z","access-policy-id":"devbox-policy","ctx":"31ee03971ffc3d1d"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488806145,"ts":"2024-12-06T12:40:06.145Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":15,"w_st":200,"ctx":"31ee03971ffc3d1d"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733488816141,"ts":"2024-12-06T12:40:16.141Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"c0333fcb4d835490"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488816145,"ts":"2024-12-06T12:40:16.145Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c0333fcb4d835490","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488816147,"ts":"2024-12-06T12:40:16.147Z","access-policy-id":"devbox-policy","ctx":"c0333fcb4d835490"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488816148,"ts":"2024-12-06T12:40:16.148Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":14,"w_st":200,"ctx":"c0333fcb4d835490"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488822085,"ts":"2024-12-06T12:40:22.085Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"621d88fcc5e38840"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488826084,"ts":"2024-12-06T12:40:26.084Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":6,"w_st":200,"ctx":"408f970d40c024ac"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488826137,"ts":"2024-12-06T12:40:26.137Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b0047b25ea6e32cc","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488826137,"ts":"2024-12-06T12:40:26.137Z","access-policy-id":"devbox-policy","ctx":"b0047b25ea6e32cc"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488826137,"ts":"2024-12-06T12:40:26.137Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":2,"w_st":200,"ctx":"b0047b25ea6e32cc"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488836142,"ts":"2024-12-06T12:40:36.142Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"fdc80bd70d4c1d81","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488836143,"ts":"2024-12-06T12:40:36.143Z","access-policy-id":"devbox-policy","ctx":"fdc80bd70d4c1d81"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488836144,"ts":"2024-12-06T12:40:36.144Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"fdc80bd70d4c1d81"} -{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733488846152,"ts":"2024-12-06T12:40:46.152Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"82d4542e1d009b7c"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488846155,"ts":"2024-12-06T12:40:46.155Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"82d4542e1d009b7c","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488846156,"ts":"2024-12-06T12:40:46.156Z","access-policy-id":"devbox-policy","ctx":"82d4542e1d009b7c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488846156,"ts":"2024-12-06T12:40:46.156Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":11,"w_st":200,"ctx":"82d4542e1d009b7c"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733488847217,"ts":"2024-12-06T12:40:47.217Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":1,"ctx":"5a32d2ffaac5f2f4"} -{"ev":"w/req","w_url":"/Patient","w":"w2","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488847220,"ts":"2024-12-06T12:40:47.220Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"5a32d2ffaac5f2f4","wait_time":1,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488847221,"ts":"2024-12-06T12:40:47.221Z","access-policy-id":"devbox-policy","ctx":"5a32d2ffaac5f2f4"} -{"ev":"db/q","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488847233,"ts":"2024-12-06T12:40:47.233Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":5,"ctx":"5a32d2ffaac5f2f4"} -{"ev":"db/q","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488847235,"ts":"2024-12-06T12:40:47.235Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"5a32d2ffaac5f2f4"} -{"ev":"resource/update-dup","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488847241,"ts":"2024-12-06T12:40:47.241Z","rtp":"Patient","ctx":"5a32d2ffaac5f2f4","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w2","execution_time":24,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488847244,"ts":"2024-12-06T12:40:47.244Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":30,"w_st":200,"ctx":"5a32d2ffaac5f2f4","w_qs":"given=John&family=Doe"} -{"ev":"w/req","w_url":"/Patient","w":"w5","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488847249,"ts":"2024-12-06T12:40:47.249Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"8b63c741f97fe61a","wait_time":0,"w_qs":"given=Alice&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488847250,"ts":"2024-12-06T12:40:47.250Z","access-policy-id":"devbox-policy","ctx":"8b63c741f97fe61a"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488847253,"ts":"2024-12-06T12:40:47.253Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":1,"ctx":"8b63c741f97fe61a"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488847254,"ts":"2024-12-06T12:40:47.254Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"8b63c741f97fe61a"} -{"ev":"resource/update-dup","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488847256,"ts":"2024-12-06T12:40:47.256Z","rtp":"Patient","ctx":"8b63c741f97fe61a","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w5","execution_time":8,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488847257,"ts":"2024-12-06T12:40:47.257Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":8,"w_st":200,"ctx":"8b63c741f97fe61a","w_qs":"given=Alice&family=Doe"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488852187,"ts":"2024-12-06T12:40:52.187Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"8ab2e62a3d015141"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488856159,"ts":"2024-12-06T12:40:56.159Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"2af9755e04528a14","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488856160,"ts":"2024-12-06T12:40:56.160Z","access-policy-id":"devbox-policy","ctx":"2af9755e04528a14"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488856161,"ts":"2024-12-06T12:40:56.161Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"2af9755e04528a14"} -{"ev":"w/req","w_url":"/Patient","w":"w4","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488861755,"ts":"2024-12-06T12:41:01.754Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"72b86dec0299ff43","wait_time":4,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488861757,"ts":"2024-12-06T12:41:01.757Z","access-policy-id":"devbox-policy","ctx":"72b86dec0299ff43"} -{"ev":"db/q","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488861774,"ts":"2024-12-06T12:41:01.774Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":6,"ctx":"72b86dec0299ff43"} -{"ev":"db/q","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488861775,"ts":"2024-12-06T12:41:01.775Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"72b86dec0299ff43"} -{"ev":"resource/update-dup","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733488861778,"ts":"2024-12-06T12:41:01.778Z","rtp":"Patient","ctx":"72b86dec0299ff43","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w4","execution_time":25,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488861780,"ts":"2024-12-06T12:41:01.780Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":36,"w_st":200,"ctx":"72b86dec0299ff43","w_qs":"given=John&family=Doe"} -{"ev":"w/req","w_url":"/Patient","w":"w3","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488861786,"ts":"2024-12-06T12:41:01.786Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"6152bb50e7ab12c3","wait_time":0,"w_qs":"given=Alice&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488861786,"ts":"2024-12-06T12:41:01.786Z","access-policy-id":"devbox-policy","ctx":"6152bb50e7ab12c3"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733488861790,"ts":"2024-12-06T12:41:01.790Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":1,"ctx":"6152bb50e7ab12c3"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733488861791,"ts":"2024-12-06T12:41:01.791Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"6152bb50e7ab12c3"} -{"ev":"resource/update-dup","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733488861793,"ts":"2024-12-06T12:41:01.793Z","rtp":"Patient","ctx":"6152bb50e7ab12c3","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w3","execution_time":8,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488861794,"ts":"2024-12-06T12:41:01.794Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":9,"w_st":200,"ctx":"6152bb50e7ab12c3","w_qs":"given=Alice&family=Doe"} -{"ev":"w/req","w_url":"/Patient","w":"w6","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488861799,"ts":"2024-12-06T12:41:01.799Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"6434fb46208cd615","wait_time":0,"w_qs":"given=Charly&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488861799,"ts":"2024-12-06T12:41:01.799Z","access-policy-id":"devbox-policy","ctx":"6434fb46208cd615"} -{"ev":"db/q","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733488861803,"ts":"2024-12-06T12:41:01.803Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Charly%","[[\"name\",\"family\"]]","% Doe%","100"],"d":1,"ctx":"6434fb46208cd615"} -{"ev":"resource/create","txid":"23","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733488861806,"ts":"2024-12-06T12:41:01.806Z","rtp":"Patient","ctx":"6434fb46208cd615","rid":"192adcc8-2833-4e27-81ad-fcd7575c1785"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w6","execution_time":9,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488861808,"ts":"2024-12-06T12:41:01.808Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":10,"w_st":201,"ctx":"6434fb46208cd615","w_qs":"given=Charly&family=Doe"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488866179,"ts":"2024-12-06T12:41:06.179Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7d51abd1c17e3c9c","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488866180,"ts":"2024-12-06T12:41:06.180Z","access-policy-id":"devbox-policy","ctx":"7d51abd1c17e3c9c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488866180,"ts":"2024-12-06T12:41:06.180Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"7d51abd1c17e3c9c"} -{"ev":"w/req","w_url":"/Patient","w":"w2","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488874281,"ts":"2024-12-06T12:41:14.281Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"630c34f03326f39e","wait_time":1,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488874282,"ts":"2024-12-06T12:41:14.282Z","access-policy-id":"devbox-policy","ctx":"630c34f03326f39e"} -{"ev":"db/q","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488874287,"ts":"2024-12-06T12:41:14.287Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"630c34f03326f39e"} -{"ev":"db/q","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488874288,"ts":"2024-12-06T12:41:14.288Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":0,"ctx":"630c34f03326f39e"} -{"ev":"resource/update-dup","w":"w2","tn":"devbox","op":"conditional-update","timeUnix":1733488874292,"ts":"2024-12-06T12:41:14.292Z","rtp":"Patient","ctx":"630c34f03326f39e","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w2","execution_time":12,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488874293,"ts":"2024-12-06T12:41:14.293Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":16,"w_st":200,"ctx":"630c34f03326f39e","w_qs":"given=John&family=Doe"} -{"ev":"w/req","w_url":"/Patient","w":"w5","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488874298,"ts":"2024-12-06T12:41:14.298Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"adc0319321d40ee4","wait_time":0,"w_qs":"given=Alice&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488874298,"ts":"2024-12-06T12:41:14.298Z","access-policy-id":"devbox-policy","ctx":"adc0319321d40ee4"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488874301,"ts":"2024-12-06T12:41:14.301Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":1,"ctx":"adc0319321d40ee4"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488874302,"ts":"2024-12-06T12:41:14.302Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"adc0319321d40ee4"} -{"ev":"resource/update-dup","w":"w5","tn":"devbox","op":"conditional-update","timeUnix":1733488874305,"ts":"2024-12-06T12:41:14.305Z","rtp":"Patient","ctx":"adc0319321d40ee4","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w5","execution_time":8,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488874306,"ts":"2024-12-06T12:41:14.306Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":9,"w_st":200,"ctx":"adc0319321d40ee4","w_qs":"given=Alice&family=Doe"} -{"ev":"w/req","w_url":"/Patient","w":"w1","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488874310,"ts":"2024-12-06T12:41:14.310Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"9017249f51762c87","wait_time":0,"w_qs":"given=Charly&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733488874310,"ts":"2024-12-06T12:41:14.310Z","access-policy-id":"devbox-policy","ctx":"9017249f51762c87"} -{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733488874314,"ts":"2024-12-06T12:41:14.314Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Charly%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"9017249f51762c87"} -{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733488874314,"ts":"2024-12-06T12:41:14.314Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["192adcc8-2833-4e27-81ad-fcd7575c1785"],"d":0,"ctx":"9017249f51762c87"} -{"ev":"resource/update","txid":"26","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733488874317,"ts":"2024-12-06T12:41:14.317Z","rtp":"Patient","ctx":"9017249f51762c87","rid":"192adcc8-2833-4e27-81ad-fcd7575c1785"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w1","execution_time":8,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733488874318,"ts":"2024-12-06T12:41:14.318Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":8,"w_st":200,"ctx":"9017249f51762c87","w_qs":"given=Charly&family=Doe"} -{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733488876171,"ts":"2024-12-06T12:41:16.171Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"0fd8cfdb0d1b3c24"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488876174,"ts":"2024-12-06T12:41:16.174Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0fd8cfdb0d1b3c24","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488876174,"ts":"2024-12-06T12:41:16.174Z","access-policy-id":"devbox-policy","ctx":"0fd8cfdb0d1b3c24"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488876175,"ts":"2024-12-06T12:41:16.175Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"0fd8cfdb0d1b3c24"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488882263,"ts":"2024-12-06T12:41:22.263Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"9e6b771eea973f77"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488886130,"ts":"2024-12-06T12:41:26.130Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":4,"w_st":200,"ctx":"9efb02fc24a190fd"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488886164,"ts":"2024-12-06T12:41:26.164Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"76c46ccb0aeef4f0","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488886165,"ts":"2024-12-06T12:41:26.165Z","access-policy-id":"devbox-policy","ctx":"76c46ccb0aeef4f0"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488886165,"ts":"2024-12-06T12:41:26.165Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":3,"w_st":200,"ctx":"76c46ccb0aeef4f0"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488897091,"ts":"2024-12-06T12:41:37.091Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c75e94b3f4a162ee","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488897093,"ts":"2024-12-06T12:41:37.093Z","access-policy-id":"devbox-policy","ctx":"c75e94b3f4a162ee"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488897094,"ts":"2024-12-06T12:41:37.094Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":13,"w_st":200,"ctx":"c75e94b3f4a162ee"} -{"ev":"db/q","w":"w2","tn":"devbox","timeUnix":1733488907126,"ts":"2024-12-06T12:41:47.126Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":5,"ctx":"8537328216638bb5"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488907130,"ts":"2024-12-06T12:41:47.130Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"8537328216638bb5","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488907131,"ts":"2024-12-06T12:41:47.131Z","access-policy-id":"devbox-policy","ctx":"8537328216638bb5"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488907132,"ts":"2024-12-06T12:41:47.132Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":14,"w_st":200,"ctx":"8537328216638bb5"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488912372,"ts":"2024-12-06T12:41:52.372Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"b101fec3ee819918"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488917171,"ts":"2024-12-06T12:41:57.171Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0cdfcb8a17e19228","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488917172,"ts":"2024-12-06T12:41:57.172Z","access-policy-id":"devbox-policy","ctx":"0cdfcb8a17e19228"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488917173,"ts":"2024-12-06T12:41:57.173Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"0cdfcb8a17e19228"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488927230,"ts":"2024-12-06T12:42:07.230Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"75c75e47baabad20","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488927231,"ts":"2024-12-06T12:42:07.231Z","access-policy-id":"devbox-policy","ctx":"75c75e47baabad20"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488927232,"ts":"2024-12-06T12:42:07.232Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"75c75e47baabad20"} -{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733488937297,"ts":"2024-12-06T12:42:17.297Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":7,"ctx":"bd796a23dba41188"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488937304,"ts":"2024-12-06T12:42:17.304Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"bd796a23dba41188","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488937304,"ts":"2024-12-06T12:42:17.304Z","access-policy-id":"devbox-policy","ctx":"bd796a23dba41188"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488937304,"ts":"2024-12-06T12:42:17.304Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"bd796a23dba41188"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488942455,"ts":"2024-12-06T12:42:22.455Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"97b3fb9e53a802c9"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488946349,"ts":"2024-12-06T12:42:26.349Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":6,"w_st":200,"ctx":"765c1f893d889f28"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488947353,"ts":"2024-12-06T12:42:27.353Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"de122a72112f73d9","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488947356,"ts":"2024-12-06T12:42:27.356Z","access-policy-id":"devbox-policy","ctx":"de122a72112f73d9"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488947357,"ts":"2024-12-06T12:42:27.357Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"de122a72112f73d9"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488957427,"ts":"2024-12-06T12:42:37.427Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c7e4769fc94c71fa","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488957428,"ts":"2024-12-06T12:42:37.428Z","access-policy-id":"devbox-policy","ctx":"c7e4769fc94c71fa"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488957429,"ts":"2024-12-06T12:42:37.429Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"c7e4769fc94c71fa"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733488967468,"ts":"2024-12-06T12:42:47.468Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"32a4cbb0d22e436c"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488967472,"ts":"2024-12-06T12:42:47.472Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"32a4cbb0d22e436c","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488967472,"ts":"2024-12-06T12:42:47.472Z","access-policy-id":"devbox-policy","ctx":"32a4cbb0d22e436c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488967473,"ts":"2024-12-06T12:42:47.473Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"32a4cbb0d22e436c"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733488972527,"ts":"2024-12-06T12:42:52.527Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"2bef1b9fb1ceb75f"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488977608,"ts":"2024-12-06T12:42:57.608Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"fbbdb4b98b81508e","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488977609,"ts":"2024-12-06T12:42:57.609Z","access-policy-id":"devbox-policy","ctx":"fbbdb4b98b81508e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488977610,"ts":"2024-12-06T12:42:57.610Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"fbbdb4b98b81508e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488987762,"ts":"2024-12-06T12:43:07.762Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ac1461e615103eea","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488987763,"ts":"2024-12-06T12:43:07.763Z","access-policy-id":"devbox-policy","ctx":"ac1461e615103eea"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488987764,"ts":"2024-12-06T12:43:07.764Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"ac1461e615103eea"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733488997800,"ts":"2024-12-06T12:43:17.800Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"61b2f4859989fddf"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488997802,"ts":"2024-12-06T12:43:17.802Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"61b2f4859989fddf","wait_time":4} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733488997803,"ts":"2024-12-06T12:43:17.803Z","access-policy-id":"devbox-policy","ctx":"61b2f4859989fddf"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733488997803,"ts":"2024-12-06T12:43:17.803Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":13,"w_st":200,"ctx":"61b2f4859989fddf"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489002593,"ts":"2024-12-06T12:43:22.593Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":5,"w_st":200,"ctx":"a849ebc49404d673"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489006866,"ts":"2024-12-06T12:43:26.866Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":4,"w_st":200,"ctx":"b192af389c3200b3"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489007863,"ts":"2024-12-06T12:43:27.863Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"07c0d62644639e53","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489007864,"ts":"2024-12-06T12:43:27.864Z","access-policy-id":"devbox-policy","ctx":"07c0d62644639e53"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489007865,"ts":"2024-12-06T12:43:27.865Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"07c0d62644639e53"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489017936,"ts":"2024-12-06T12:43:37.935Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b4040a6c6865629c","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489017938,"ts":"2024-12-06T12:43:37.938Z","access-policy-id":"devbox-policy","ctx":"b4040a6c6865629c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":5,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489017941,"ts":"2024-12-06T12:43:37.941Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"b4040a6c6865629c"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733489027996,"ts":"2024-12-06T12:43:47.996Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"fbb28022fd321965"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489028022,"ts":"2024-12-06T12:43:48.022Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"fbb28022fd321965","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489028022,"ts":"2024-12-06T12:43:48.022Z","access-policy-id":"devbox-policy","ctx":"fbb28022fd321965"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":0,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489028022,"ts":"2024-12-06T12:43:48.022Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":29,"w_st":200,"ctx":"fbb28022fd321965"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489032674,"ts":"2024-12-06T12:43:52.674Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"563fff489f3776e1"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489038037,"ts":"2024-12-06T12:43:58.037Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d586cc53bfa483f2","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489038038,"ts":"2024-12-06T12:43:58.038Z","access-policy-id":"devbox-policy","ctx":"d586cc53bfa483f2"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489038039,"ts":"2024-12-06T12:43:58.039Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":13,"w_st":200,"ctx":"d586cc53bfa483f2"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733489045321,"ts":"2024-12-06T12:44:05.321Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":2,"ctx":"40520b221c625b3d"} -{"ev":"w/req","w_url":"/Patient","w":"w3","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489045324,"ts":"2024-12-06T12:44:05.324Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"40520b221c625b3d","wait_time":1,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489045325,"ts":"2024-12-06T12:44:05.325Z","access-policy-id":"devbox-policy","ctx":"40520b221c625b3d"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489045341,"ts":"2024-12-06T12:44:05.341Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":3,"ctx":"40520b221c625b3d"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489045343,"ts":"2024-12-06T12:44:05.343Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"40520b221c625b3d"} -{"ev":"resource/update-dup","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489045348,"ts":"2024-12-06T12:44:05.348Z","rtp":"Patient","ctx":"40520b221c625b3d","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w3","execution_time":26,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489045350,"ts":"2024-12-06T12:44:05.350Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":33,"w_st":200,"ctx":"40520b221c625b3d","w_qs":"given=John&family=Doe"} -{"ev":"w/req","w_url":"/Patient","w":"w6","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489045356,"ts":"2024-12-06T12:44:05.356Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"54a2b7629546c24b","wait_time":0,"w_qs":"given=Alice&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489045356,"ts":"2024-12-06T12:44:05.356Z","access-policy-id":"devbox-policy","ctx":"54a2b7629546c24b"} -{"ev":"db/q","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733489045360,"ts":"2024-12-06T12:44:05.360Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"54a2b7629546c24b"} -{"ev":"db/q","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733489045360,"ts":"2024-12-06T12:44:05.360Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"54a2b7629546c24b"} -{"ev":"resource/update-dup","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733489045362,"ts":"2024-12-06T12:44:05.362Z","rtp":"Patient","ctx":"54a2b7629546c24b","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w6","execution_time":7,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489045363,"ts":"2024-12-06T12:44:05.363Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":8,"w_st":200,"ctx":"54a2b7629546c24b","w_qs":"given=Alice&family=Doe"} -{"ev":"w/req","w_url":"/Patient","w":"w7","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489045367,"ts":"2024-12-06T12:44:05.367Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"9037e25f9f5e99c6","wait_time":0,"w_qs":"given=Charly&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489045367,"ts":"2024-12-06T12:44:05.367Z","access-policy-id":"devbox-policy","ctx":"9037e25f9f5e99c6"} -{"ev":"db/q","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489045371,"ts":"2024-12-06T12:44:05.371Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Charly%","[[\"name\",\"family\"]]","% Doe%","100"],"d":1,"ctx":"9037e25f9f5e99c6"} -{"ev":"db/q","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489045372,"ts":"2024-12-06T12:44:05.372Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["192adcc8-2833-4e27-81ad-fcd7575c1785"],"d":0,"ctx":"9037e25f9f5e99c6"} -{"ev":"resource/update-dup","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489045374,"ts":"2024-12-06T12:44:05.374Z","rtp":"Patient","ctx":"9037e25f9f5e99c6","rid":"192adcc8-2833-4e27-81ad-fcd7575c1785"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w7","execution_time":8,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489045375,"ts":"2024-12-06T12:44:05.375Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":8,"w_st":200,"ctx":"9037e25f9f5e99c6","w_qs":"given=Charly&family=Doe"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489048053,"ts":"2024-12-06T12:44:08.053Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"15c0e40a030d7e05","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489048055,"ts":"2024-12-06T12:44:08.055Z","access-policy-id":"devbox-policy","ctx":"15c0e40a030d7e05"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489048056,"ts":"2024-12-06T12:44:08.056Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"15c0e40a030d7e05"} -{"ev":"w/req","w_url":"/ui/console","w":"w5","w_m":"get","tn":"devbox","op":"console","timeUnix":1733489056220,"ts":"2024-12-06T12:44:16.220Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"5ea33dd5f00c4021","wait_time":1} -{"w_referer":"http://localhost:8888/auth/login","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/ui/console","w":"w5","execution_time":10,"w_m":"get","tn":"devbox","op":"console","timeUnix":1733489056230,"ts":"2024-12-06T12:44:16.230Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /ui/console","w_uid":"admin","d":17,"w_st":200,"ctx":"5ea33dd5f00c4021"} -{"ev":"w/req","w_url":"/rpc","w":"w7","w_m":"post","tn":"devbox","op":"rpc","timeUnix":1733489056764,"ts":"2024-12-06T12:44:16.764Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"dfb9f385b98020ae","wait_time":2,"w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} -{"ev":"w/req","w_url":"/fhir/Patient","w":"w6","w_m":"get","tn":"devbox","op":"search","timeUnix":1733489056765,"ts":"2024-12-06T12:44:16.765Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c3016c9596266561","wait_time":1,"w_qs":"_count=30&_sort=_id&_ilike="} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"rpc","tn":"devbox","op":"rpc","timeUnix":1733489056765,"ts":"2024-12-06T12:44:16.765Z","access-policy-id":"devbox-policy","ctx":"dfb9f385b98020ae"} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"FhirSearch","tn":"devbox","op":"search","timeUnix":1733489056766,"ts":"2024-12-06T12:44:16.766Z","access-policy-id":"devbox-policy","ctx":"c3016c9596266561"} -{"ev":"w/req","w_url":"/fhir/metadata","w":"w4","w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489056766,"ts":"2024-12-06T12:44:16.766Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"86da8a947061f54a","wait_time":6,"w_qs":"include-custom-resources=true"} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"fhir-capability","tn":"devbox","op":"capability","timeUnix":1733489056767,"ts":"2024-12-06T12:44:16.767Z","access-policy-id":"devbox-policy","ctx":"86da8a947061f54a"} -{"ev":"db/q","w":"w4","tn":"devbox","op":"capability","timeUnix":1733489056774,"ts":"2024-12-06T12:44:16.774Z","sql":"SELECT * FROM \"aidboxconfig\" WHERE \"id\" = ?","db_prm":["box"],"d":6,"ctx":"86da8a947061f54a"} -{"ev":"db/q","w":"w6","tn":"devbox","op":"search","timeUnix":1733489056776,"ts":"2024-12-06T12:44:16.775Z","sql":"SELECT \"patient\".* FROM \"patient\" ORDER BY \"patient\".id ASC LIMIT ? OFFSET ? ","db_prm":["30","0"],"d":5,"ctx":"c3016c9596266561"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/metadata","w":"w4","execution_time":11,"w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489056777,"ts":"2024-12-06T12:44:16.777Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /fhir/metadata","w_uid":"admin","d":21,"w_st":200,"ctx":"86da8a947061f54a","w_qs":"include-custom-resources=true"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Patient","w":"w6","execution_time":12,"w_m":"get","tn":"devbox","op":"search","timeUnix":1733489056777,"ts":"2024-12-06T12:44:16.777Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Patient","w_r":"GET /fhir/Patient","w_uid":"admin","d":21,"w_st":200,"ctx":"c3016c9596266561","w_qs":"_count=30&_sort=_id&_ilike="} -{"rpc_p":{"resource-type":"Patient"},"ev":"rpc/call","rpc_m":"aidbox.introspector/get-schemas-by-resource-type","w":"w7","tn":"devbox","rpc_u":{"email":null},"op":"rpc:get-schemas-by-resource-type","timeUnix":1733489056892,"ts":"2024-12-06T12:44:16.892Z","d":125,"ctx":"dfb9f385b98020ae","lvl":"info"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/rpc","w":"w7","execution_time":128,"w_m":"post","tn":"devbox","op":"rpc:get-schemas-by-resource-type","timeUnix":1733489056892,"ts":"2024-12-06T12:44:16.892Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /rpc","w_uid":"admin","d":136,"w_st":200,"ctx":"dfb9f385b98020ae","w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} -{"ev":"w/req","w_url":"/fhir/Patient/$validate","w":"w5","w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733489056986,"ts":"2024-12-06T12:44:16.986Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"95e936914b66ad4b","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"FhirValidateCreate","tn":"devbox","op":"$validate","timeUnix":1733489056987,"ts":"2024-12-06T12:44:16.987Z","access-policy-id":"devbox-policy","ctx":"95e936914b66ad4b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Patient/$validate","w":"w5","execution_time":3,"w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733489056989,"ts":"2024-12-06T12:44:16.989Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Patient","w_r":"POST /fhir/Patient/$validate","w_uid":"admin","d":4,"w_st":200,"ctx":"95e936914b66ad4b"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489062790,"ts":"2024-12-06T12:44:22.790Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"d71c063fbc1715f2"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733489066755,"ts":"2024-12-06T12:44:26.754Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"0bba3ba6494f04b6"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489066758,"ts":"2024-12-06T12:44:26.758Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0bba3ba6494f04b6","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489066759,"ts":"2024-12-06T12:44:26.759Z","access-policy-id":"devbox-policy","ctx":"0bba3ba6494f04b6"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489066760,"ts":"2024-12-06T12:44:26.760Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"0bba3ba6494f04b6"} -{"ev":"w/req","w_url":"/fhir/Observation","w":"w2","w_m":"get","tn":"devbox","op":"search","timeUnix":1733489068679,"ts":"2024-12-06T12:44:28.679Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"235f9cb13bc7dc5c","wait_time":1,"w_qs":"_count=30&_sort=_id&_ilike="} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"FhirSearch","tn":"devbox","op":"search","timeUnix":1733489068680,"ts":"2024-12-06T12:44:28.680Z","access-policy-id":"devbox-policy","ctx":"235f9cb13bc7dc5c"} -{"ev":"w/req","w_url":"/rpc","w":"w4","w_m":"post","tn":"devbox","op":"rpc","timeUnix":1733489068681,"ts":"2024-12-06T12:44:28.681Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"23b3f67bdba7262f","wait_time":4,"w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"rpc","tn":"devbox","op":"rpc","timeUnix":1733489068681,"ts":"2024-12-06T12:44:28.681Z","access-policy-id":"devbox-policy","ctx":"23b3f67bdba7262f"} -{"ev":"db/q","w":"w2","tn":"devbox","op":"search","timeUnix":1733489068688,"ts":"2024-12-06T12:44:28.688Z","sql":"SELECT \"observation\".* FROM \"observation\" ORDER BY \"observation\".id ASC LIMIT ? OFFSET ? ","db_prm":["30","0"],"d":3,"ctx":"235f9cb13bc7dc5c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Observation","w":"w2","execution_time":10,"w_m":"get","tn":"devbox","op":"search","timeUnix":1733489068689,"ts":"2024-12-06T12:44:28.689Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Observation","w_r":"GET /fhir/Observation","w_uid":"admin","d":16,"w_st":200,"ctx":"235f9cb13bc7dc5c","w_qs":"_count=30&_sort=_id&_ilike="} -{"ev":"w/req","w_url":"/fhir/metadata","w":"w6","w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489068691,"ts":"2024-12-06T12:44:28.691Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"705fdd742e612415","wait_time":0,"w_qs":"include-custom-resources=true"} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"fhir-capability","tn":"devbox","op":"capability","timeUnix":1733489068691,"ts":"2024-12-06T12:44:28.691Z","access-policy-id":"devbox-policy","ctx":"705fdd742e612415"} -{"ev":"db/q","w":"w6","tn":"devbox","op":"capability","timeUnix":1733489068693,"ts":"2024-12-06T12:44:28.693Z","sql":"SELECT * FROM \"aidboxconfig\" WHERE \"id\" = ?","db_prm":["box"],"d":1,"ctx":"705fdd742e612415"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/metadata","w":"w6","execution_time":6,"w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489068697,"ts":"2024-12-06T12:44:28.697Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /fhir/metadata","w_uid":"admin","d":23,"w_st":200,"ctx":"705fdd742e612415","w_qs":"include-custom-resources=true"} -{"rpc_p":{"resource-type":"Observation"},"ev":"rpc/call","rpc_m":"aidbox.introspector/get-schemas-by-resource-type","w":"w4","tn":"devbox","rpc_u":{"email":null},"op":"rpc:get-schemas-by-resource-type","timeUnix":1733489069253,"ts":"2024-12-06T12:44:29.253Z","d":571,"ctx":"23b3f67bdba7262f","lvl":"info"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/rpc","w":"w4","execution_time":573,"w_m":"post","tn":"devbox","op":"rpc:get-schemas-by-resource-type","timeUnix":1733489069254,"ts":"2024-12-06T12:44:29.254Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /rpc","w_uid":"admin","d":580,"w_st":200,"ctx":"23b3f67bdba7262f","w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} -{"ev":"w/req","w_url":"/ui/console","w":"w5","w_m":"get","tn":"devbox","op":"console","timeUnix":1733489071341,"ts":"2024-12-06T12:44:31.341Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"33984565d23b8558","wait_time":0} -{"w_referer":"http://localhost:8888/auth/login","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/ui/console","w":"w5","execution_time":7,"w_m":"get","tn":"devbox","op":"console","timeUnix":1733489071348,"ts":"2024-12-06T12:44:31.348Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /ui/console","w_uid":"admin","d":10,"w_st":200,"ctx":"33984565d23b8558"} -{"ev":"w/req","w_url":"/fhir/Observation","w":"w6","w_m":"get","tn":"devbox","op":"search","timeUnix":1733489071784,"ts":"2024-12-06T12:44:31.784Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"47c48a851a14ef98","wait_time":0,"w_qs":"_count=30&_sort=_id&_ilike="} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"FhirSearch","tn":"devbox","op":"search","timeUnix":1733489071784,"ts":"2024-12-06T12:44:31.784Z","access-policy-id":"devbox-policy","ctx":"47c48a851a14ef98"} -{"ev":"w/req","w_url":"/fhir/metadata","w":"w7","w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489071787,"ts":"2024-12-06T12:44:31.787Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"2c39bb9eda917ec7","wait_time":4,"w_qs":"include-custom-resources=true"} -{"ev":"w/req","w_url":"/rpc","w":"w4","w_m":"post","tn":"devbox","op":"rpc","timeUnix":1733489071787,"ts":"2024-12-06T12:44:31.787Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"656788cb5786fecc","wait_time":0,"w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} -{"ev":"db/q","w":"w6","tn":"devbox","op":"search","timeUnix":1733489071787,"ts":"2024-12-06T12:44:31.787Z","sql":"SELECT \"observation\".* FROM \"observation\" ORDER BY \"observation\".id ASC LIMIT ? OFFSET ? ","db_prm":["30","0"],"d":2,"ctx":"47c48a851a14ef98"} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"rpc","tn":"devbox","op":"rpc","timeUnix":1733489071787,"ts":"2024-12-06T12:44:31.787Z","access-policy-id":"devbox-policy","ctx":"656788cb5786fecc"} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"fhir-capability","tn":"devbox","op":"capability","timeUnix":1733489071788,"ts":"2024-12-06T12:44:31.788Z","access-policy-id":"devbox-policy","ctx":"2c39bb9eda917ec7"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Observation","w":"w6","execution_time":4,"w_m":"get","tn":"devbox","op":"search","timeUnix":1733489071788,"ts":"2024-12-06T12:44:31.788Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Observation","w_r":"GET /fhir/Observation","w_uid":"admin","d":7,"w_st":200,"ctx":"47c48a851a14ef98","w_qs":"_count=30&_sort=_id&_ilike="} -{"ev":"db/q","w":"w7","tn":"devbox","op":"capability","timeUnix":1733489071789,"ts":"2024-12-06T12:44:31.789Z","sql":"SELECT * FROM \"aidboxconfig\" WHERE \"id\" = ?","db_prm":["box"],"d":1,"ctx":"2c39bb9eda917ec7"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/metadata","w":"w7","execution_time":5,"w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489071792,"ts":"2024-12-06T12:44:31.792Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /fhir/metadata","w_uid":"admin","d":10,"w_st":200,"ctx":"2c39bb9eda917ec7","w_qs":"include-custom-resources=true"} -{"rpc_p":{"resource-type":"Observation"},"ev":"rpc/call","rpc_m":"aidbox.introspector/get-schemas-by-resource-type","w":"w4","tn":"devbox","rpc_u":{"email":null},"op":"rpc:get-schemas-by-resource-type","timeUnix":1733489071976,"ts":"2024-12-06T12:44:31.976Z","d":188,"ctx":"656788cb5786fecc","lvl":"info"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/rpc","w":"w4","execution_time":189,"w_m":"post","tn":"devbox","op":"rpc:get-schemas-by-resource-type","timeUnix":1733489071976,"ts":"2024-12-06T12:44:31.976Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /rpc","w_uid":"admin","d":190,"w_st":200,"ctx":"656788cb5786fecc","w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489081805,"ts":"2024-12-06T12:44:41.805Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"76490ab4b58d0cf8","wait_time":5} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489081809,"ts":"2024-12-06T12:44:41.809Z","access-policy-id":"devbox-policy","ctx":"76490ab4b58d0cf8"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":5,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489081812,"ts":"2024-12-06T12:44:41.811Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":22,"w_st":200,"ctx":"76490ab4b58d0cf8"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733489090043,"ts":"2024-12-06T12:44:50.043Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":2,"ctx":"96aa6d49b49489ee"} -{"ev":"w/req","w_url":"/Patient","w":"w1","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489090045,"ts":"2024-12-06T12:44:50.045Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"96aa6d49b49489ee","wait_time":2,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489090045,"ts":"2024-12-06T12:44:50.045Z","access-policy-id":"devbox-policy","ctx":"96aa6d49b49489ee"} -{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489090056,"ts":"2024-12-06T12:44:50.056Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":3,"ctx":"96aa6d49b49489ee"} -{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489090057,"ts":"2024-12-06T12:44:50.057Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"96aa6d49b49489ee"} -{"ev":"resource/update-dup","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489090062,"ts":"2024-12-06T12:44:50.062Z","rtp":"Patient","ctx":"96aa6d49b49489ee","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w1","execution_time":20,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489090065,"ts":"2024-12-06T12:44:50.065Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":27,"w_st":200,"ctx":"96aa6d49b49489ee","w_qs":"given=John&family=Doe"} -{"ev":"w/req","w_url":"/Observation","w":"w8","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489090071,"ts":"2024-12-06T12:44:50.071Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"2a9f70965403aa9e","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489090072,"ts":"2024-12-06T12:44:50.072Z","access-policy-id":"devbox-policy","ctx":"2a9f70965403aa9e"} -{"ev":"db/q","w":"w8","tn":"devbox","op":"create","timeUnix":1733489090490,"ts":"2024-12-06T12:44:50.490Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"2a9f70965403aa9e"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w8","execution_time":435,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489090506,"ts":"2024-12-06T12:44:50.506Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":436,"w_st":422,"ctx":"2a9f70965403aa9e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489091787,"ts":"2024-12-06T12:44:51.787Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"855becd2ae6aa23e","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489091787,"ts":"2024-12-06T12:44:51.787Z","access-policy-id":"devbox-policy","ctx":"855becd2ae6aa23e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489091788,"ts":"2024-12-06T12:44:51.788Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"855becd2ae6aa23e"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489092885,"ts":"2024-12-06T12:44:52.885Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"f452e7d628a925aa"} -{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733489102278,"ts":"2024-12-06T12:45:02.278Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":5,"ctx":"3b819f673a09bdf1"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489102285,"ts":"2024-12-06T12:45:02.285Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3b819f673a09bdf1","wait_time":3} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489102286,"ts":"2024-12-06T12:45:02.286Z","access-policy-id":"devbox-policy","ctx":"3b819f673a09bdf1"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489102287,"ts":"2024-12-06T12:45:02.287Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":19,"w_st":200,"ctx":"3b819f673a09bdf1"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489112278,"ts":"2024-12-06T12:45:12.277Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c6aee9265518a19d","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489112279,"ts":"2024-12-06T12:45:12.278Z","access-policy-id":"devbox-policy","ctx":"c6aee9265518a19d"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489112280,"ts":"2024-12-06T12:45:12.280Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"c6aee9265518a19d"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489122404,"ts":"2024-12-06T12:45:22.404Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b6696fc1ed2d4f79","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489122405,"ts":"2024-12-06T12:45:22.405Z","access-policy-id":"devbox-policy","ctx":"b6696fc1ed2d4f79"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489122406,"ts":"2024-12-06T12:45:22.406Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"b6696fc1ed2d4f79"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489122968,"ts":"2024-12-06T12:45:22.968Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"063035f24385c19c"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733489132437,"ts":"2024-12-06T12:45:32.437Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":5,"ctx":"261c01dcfb5b5380"} -{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733489132437,"ts":"2024-12-06T12:45:32.437Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":6,"ctx":"11a8bd3cacc21796"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489132440,"ts":"2024-12-06T12:45:32.440Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"11a8bd3cacc21796","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489132442,"ts":"2024-12-06T12:45:32.442Z","access-policy-id":"devbox-policy","ctx":"11a8bd3cacc21796"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489132443,"ts":"2024-12-06T12:45:32.443Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":13,"w_st":200,"ctx":"11a8bd3cacc21796"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w1","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489132443,"ts":"2024-12-06T12:45:32.443Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":13,"w_st":200,"ctx":"261c01dcfb5b5380"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733489141109,"ts":"2024-12-06T12:45:41.109Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":4,"ctx":"16b176ee12beb258"} -{"ev":"w/req","w_url":"/Patient","w":"w3","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489141114,"ts":"2024-12-06T12:45:41.114Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"16b176ee12beb258","wait_time":6,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489141115,"ts":"2024-12-06T12:45:41.115Z","access-policy-id":"devbox-policy","ctx":"16b176ee12beb258"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489141132,"ts":"2024-12-06T12:45:41.132Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":11,"ctx":"16b176ee12beb258"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489141134,"ts":"2024-12-06T12:45:41.134Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"16b176ee12beb258"} -{"ev":"resource/update-dup","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489141151,"ts":"2024-12-06T12:45:41.151Z","rtp":"Patient","ctx":"16b176ee12beb258","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w3","execution_time":40,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489141154,"ts":"2024-12-06T12:45:41.154Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":57,"w_st":200,"ctx":"16b176ee12beb258","w_qs":"given=John&family=Doe"} -{"ev":"w/req","w_url":"/Observation","w":"w2","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489141160,"ts":"2024-12-06T12:45:41.160Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"e23d256d136f21d1","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489141160,"ts":"2024-12-06T12:45:41.160Z","access-policy-id":"devbox-policy","ctx":"e23d256d136f21d1"} -{"ev":"db/q","w":"w2","tn":"devbox","op":"create","timeUnix":1733489141166,"ts":"2024-12-06T12:45:41.166Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"e23d256d136f21d1"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w2","execution_time":7,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489141167,"ts":"2024-12-06T12:45:41.167Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":8,"w_st":422,"ctx":"e23d256d136f21d1"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489142489,"ts":"2024-12-06T12:45:42.489Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"1d64890b660b6eb9","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489142490,"ts":"2024-12-06T12:45:42.490Z","access-policy-id":"devbox-policy","ctx":"1d64890b660b6eb9"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489142491,"ts":"2024-12-06T12:45:42.491Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"1d64890b660b6eb9"} -{"ev":"w/req","w_url":"/Patient","w":"w7","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489148281,"ts":"2024-12-06T12:45:48.281Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"459dac39d467008f","wait_time":4,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489148283,"ts":"2024-12-06T12:45:48.283Z","access-policy-id":"devbox-policy","ctx":"459dac39d467008f"} -{"ev":"db/q","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489148299,"ts":"2024-12-06T12:45:48.299Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":6,"ctx":"459dac39d467008f"} -{"ev":"db/q","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489148302,"ts":"2024-12-06T12:45:48.302Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"459dac39d467008f"} -{"ev":"resource/update-dup","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489148306,"ts":"2024-12-06T12:45:48.306Z","rtp":"Patient","ctx":"459dac39d467008f","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w7","execution_time":28,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489148309,"ts":"2024-12-06T12:45:48.309Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":42,"w_st":200,"ctx":"459dac39d467008f","w_qs":"given=John&family=Doe"} -{"ev":"w/req","w_url":"/Observation","w":"w4","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489148321,"ts":"2024-12-06T12:45:48.321Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"2186066bbeb3bcb6","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489148322,"ts":"2024-12-06T12:45:48.322Z","access-policy-id":"devbox-policy","ctx":"2186066bbeb3bcb6"} -{"ev":"db/q","w":"w4","tn":"devbox","op":"create","timeUnix":1733489148328,"ts":"2024-12-06T12:45:48.328Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"2186066bbeb3bcb6"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w4","execution_time":9,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489148330,"ts":"2024-12-06T12:45:48.330Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":12,"w_st":422,"ctx":"2186066bbeb3bcb6"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489152639,"ts":"2024-12-06T12:45:52.639Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"af5a4cc80fe51906","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489152641,"ts":"2024-12-06T12:45:52.641Z","access-policy-id":"devbox-policy","ctx":"af5a4cc80fe51906"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489152642,"ts":"2024-12-06T12:45:52.642Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"af5a4cc80fe51906"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489153061,"ts":"2024-12-06T12:45:53.061Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"6a8de758e401ebdf"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733489162663,"ts":"2024-12-06T12:46:02.663Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":2,"ctx":"f02b342e8ab29575"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489162666,"ts":"2024-12-06T12:46:02.666Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f02b342e8ab29575","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489162667,"ts":"2024-12-06T12:46:02.667Z","access-policy-id":"devbox-policy","ctx":"f02b342e8ab29575"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489162668,"ts":"2024-12-06T12:46:02.668Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"f02b342e8ab29575"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489172712,"ts":"2024-12-06T12:46:12.712Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f3446ef807c26ac3","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489172713,"ts":"2024-12-06T12:46:12.713Z","access-policy-id":"devbox-policy","ctx":"f3446ef807c26ac3"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489172714,"ts":"2024-12-06T12:46:12.714Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"f3446ef807c26ac3"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489182750,"ts":"2024-12-06T12:46:22.750Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"bff3c3638f36b89d","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489182750,"ts":"2024-12-06T12:46:22.750Z","access-policy-id":"devbox-policy","ctx":"bff3c3638f36b89d"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489182751,"ts":"2024-12-06T12:46:22.751Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"bff3c3638f36b89d"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489183116,"ts":"2024-12-06T12:46:23.116Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"f6a68be7273d3b95"} -{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733489187503,"ts":"2024-12-06T12:46:27.503Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":4,"ctx":"8165596750c74855"} -{"ev":"w/req","w_url":"/Patient","w":"w7","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489187506,"ts":"2024-12-06T12:46:27.506Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"8165596750c74855","wait_time":1,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489187506,"ts":"2024-12-06T12:46:27.506Z","access-policy-id":"devbox-policy","ctx":"8165596750c74855"} -{"ev":"db/q","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489187511,"ts":"2024-12-06T12:46:27.511Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"8165596750c74855"} -{"ev":"db/q","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489187512,"ts":"2024-12-06T12:46:27.512Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":0,"ctx":"8165596750c74855"} -{"ev":"resource/update-dup","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489187517,"ts":"2024-12-06T12:46:27.517Z","rtp":"Patient","ctx":"8165596750c74855","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w7","execution_time":13,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489187519,"ts":"2024-12-06T12:46:27.519Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":21,"w_st":200,"ctx":"8165596750c74855","w_qs":"given=John&family=Doe"} -{"ev":"w/req","w_url":"/Observation","w":"w4","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489187525,"ts":"2024-12-06T12:46:27.525Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"09b69d454216dee1","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489187525,"ts":"2024-12-06T12:46:27.525Z","access-policy-id":"devbox-policy","ctx":"09b69d454216dee1"} -{"ev":"db/q","w":"w4","tn":"devbox","op":"create","timeUnix":1733489187529,"ts":"2024-12-06T12:46:27.529Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"09b69d454216dee1"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w4","execution_time":4,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489187529,"ts":"2024-12-06T12:46:27.529Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":5,"w_st":422,"ctx":"09b69d454216dee1"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733489192806,"ts":"2024-12-06T12:46:32.806Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"f460a410e243c746"} -{"ev":"db/q","w":"w8","tn":"devbox","timeUnix":1733489192808,"ts":"2024-12-06T12:46:32.808Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":5,"ctx":"dae5e1bad1a0029c"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489192815,"ts":"2024-12-06T12:46:32.815Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"dae5e1bad1a0029c","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489192816,"ts":"2024-12-06T12:46:32.816Z","access-policy-id":"devbox-policy","ctx":"dae5e1bad1a0029c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489192817,"ts":"2024-12-06T12:46:32.817Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":16,"w_st":200,"ctx":"dae5e1bad1a0029c"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w5","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489192817,"ts":"2024-12-06T12:46:32.817Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":17,"w_st":200,"ctx":"f460a410e243c746"} -{"ev":"w/req","w_url":"/Patient","w":"w1","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489194362,"ts":"2024-12-06T12:46:34.362Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"0d8a72cb5bf25549","wait_time":0,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489194362,"ts":"2024-12-06T12:46:34.362Z","access-policy-id":"devbox-policy","ctx":"0d8a72cb5bf25549"} -{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489194368,"ts":"2024-12-06T12:46:34.368Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"0d8a72cb5bf25549"} -{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489194369,"ts":"2024-12-06T12:46:34.369Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":0,"ctx":"0d8a72cb5bf25549"} -{"ev":"resource/update-dup","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489194371,"ts":"2024-12-06T12:46:34.371Z","rtp":"Patient","ctx":"0d8a72cb5bf25549","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w1","execution_time":10,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489194372,"ts":"2024-12-06T12:46:34.372Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":12,"w_st":200,"ctx":"0d8a72cb5bf25549","w_qs":"given=John&family=Doe"} -{"ev":"w/req","w_url":"/Observation","w":"w3","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489194377,"ts":"2024-12-06T12:46:34.377Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"bbe0c0e0dac0fa70","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489194377,"ts":"2024-12-06T12:46:34.377Z","access-policy-id":"devbox-policy","ctx":"bbe0c0e0dac0fa70"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"create","timeUnix":1733489194379,"ts":"2024-12-06T12:46:34.379Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"bbe0c0e0dac0fa70"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w3","execution_time":2,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489194380,"ts":"2024-12-06T12:46:34.379Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":3,"w_st":422,"ctx":"bbe0c0e0dac0fa70"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489202846,"ts":"2024-12-06T12:46:42.845Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e65b17a1e0bbd55f","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489202846,"ts":"2024-12-06T12:46:42.846Z","access-policy-id":"devbox-policy","ctx":"e65b17a1e0bbd55f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489202847,"ts":"2024-12-06T12:46:42.847Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"e65b17a1e0bbd55f"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489212910,"ts":"2024-12-06T12:46:52.910Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"7f59ab95b553af86","wait_time":7} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489212913,"ts":"2024-12-06T12:46:52.913Z","access-policy-id":"devbox-policy","ctx":"7f59ab95b553af86"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":4,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489212914,"ts":"2024-12-06T12:46:52.914Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":22,"w_st":200,"ctx":"7f59ab95b553af86"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w7","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489213204,"ts":"2024-12-06T12:46:53.204Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"0f1438a253e2ab93"} -{"ev":"db/q","w":"w4","tn":"devbox","timeUnix":1733489222939,"ts":"2024-12-06T12:47:02.939Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":4,"ctx":"cfbb9d46c75608cb"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489222941,"ts":"2024-12-06T12:47:02.941Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"cfbb9d46c75608cb","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489222941,"ts":"2024-12-06T12:47:02.941Z","access-policy-id":"devbox-policy","ctx":"cfbb9d46c75608cb"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489222942,"ts":"2024-12-06T12:47:02.942Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"cfbb9d46c75608cb"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w8","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489233056,"ts":"2024-12-06T12:47:13.056Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"68cd9c1153f37e28","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489233058,"ts":"2024-12-06T12:47:13.058Z","access-policy-id":"devbox-policy","ctx":"68cd9c1153f37e28"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489233059,"ts":"2024-12-06T12:47:13.059Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":12,"w_st":200,"ctx":"68cd9c1153f37e28"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489243085,"ts":"2024-12-06T12:47:23.085Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d58bade0a105e585","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489243085,"ts":"2024-12-06T12:47:23.085Z","access-policy-id":"devbox-policy","ctx":"d58bade0a105e585"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489243086,"ts":"2024-12-06T12:47:23.086Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"d58bade0a105e585"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w1","execution_time":12,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489243298,"ts":"2024-12-06T12:47:23.298Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":13,"w_st":200,"ctx":"0330a1b94e528b72"} -{"ev":"db/q","w":"w3","tn":"devbox","timeUnix":1733489250412,"ts":"2024-12-06T12:47:30.412Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":5,"ctx":"2de82b81079e2846"} -{"ev":"w/req","w_url":"/Patient","w":"w3","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489250414,"ts":"2024-12-06T12:47:30.414Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"2de82b81079e2846","wait_time":2,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489250415,"ts":"2024-12-06T12:47:30.415Z","access-policy-id":"devbox-policy","ctx":"2de82b81079e2846"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489250424,"ts":"2024-12-06T12:47:30.424Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":4,"ctx":"2de82b81079e2846"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489250425,"ts":"2024-12-06T12:47:30.425Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":0,"ctx":"2de82b81079e2846"} -{"ev":"resource/update-dup","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489250430,"ts":"2024-12-06T12:47:30.430Z","rtp":"Patient","ctx":"2de82b81079e2846","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w3","execution_time":17,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489250432,"ts":"2024-12-06T12:47:30.432Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":27,"w_st":200,"ctx":"2de82b81079e2846","w_qs":"given=John&family=Doe"} -{"ev":"w/req","w_url":"/Observation","w":"w2","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489250438,"ts":"2024-12-06T12:47:30.438Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"e12baddcf50e7776","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489250438,"ts":"2024-12-06T12:47:30.438Z","access-policy-id":"devbox-policy","ctx":"e12baddcf50e7776"} -{"ev":"db/q","w":"w2","tn":"devbox","op":"create","timeUnix":1733489250441,"ts":"2024-12-06T12:47:30.441Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"e12baddcf50e7776"} -{"ev":"resource/create","txid":"36","w":"w2","tn":"devbox","op":"create","timeUnix":1733489250443,"ts":"2024-12-06T12:47:30.443Z","rtp":"Observation","ctx":"e12baddcf50e7776","rid":"c9938a08-9ddc-4db4-b2b0-627370bcdf3c"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w2","execution_time":6,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489250444,"ts":"2024-12-06T12:47:30.444Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":7,"w_st":201,"ctx":"e12baddcf50e7776"} -{"ev":"w/req","w_url":"/Patient","w":"w6","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489250450,"ts":"2024-12-06T12:47:30.450Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"e51aa3b7220c9e0c","wait_time":0,"w_qs":"given=Alice&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489250451,"ts":"2024-12-06T12:47:30.451Z","access-policy-id":"devbox-policy","ctx":"e51aa3b7220c9e0c"} -{"ev":"db/q","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733489250457,"ts":"2024-12-06T12:47:30.457Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":3,"ctx":"e51aa3b7220c9e0c"} -{"ev":"db/q","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733489250458,"ts":"2024-12-06T12:47:30.458Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"e51aa3b7220c9e0c"} -{"ev":"resource/update-dup","w":"w6","tn":"devbox","op":"conditional-update","timeUnix":1733489250460,"ts":"2024-12-06T12:47:30.460Z","rtp":"Patient","ctx":"e51aa3b7220c9e0c","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w6","execution_time":11,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489250461,"ts":"2024-12-06T12:47:30.461Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":13,"w_st":200,"ctx":"e51aa3b7220c9e0c","w_qs":"given=Alice&family=Doe"} -{"ev":"w/req","w_url":"/Observation","w":"w7","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489250466,"ts":"2024-12-06T12:47:30.466Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"1f71bbbb9aac8345","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489250466,"ts":"2024-12-06T12:47:30.466Z","access-policy-id":"devbox-policy","ctx":"1f71bbbb9aac8345"} -{"ev":"db/q","w":"w7","tn":"devbox","op":"create","timeUnix":1733489250468,"ts":"2024-12-06T12:47:30.468Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":0,"ctx":"1f71bbbb9aac8345"} -{"ev":"resource/create","txid":"38","w":"w7","tn":"devbox","op":"create","timeUnix":1733489250469,"ts":"2024-12-06T12:47:30.469Z","rtp":"Observation","ctx":"1f71bbbb9aac8345","rid":"ddbc880a-e3f5-4a31-b31c-5b3e43975fb6"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w7","execution_time":4,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489250470,"ts":"2024-12-06T12:47:30.470Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":5,"w_st":201,"ctx":"1f71bbbb9aac8345"} -{"ev":"w/req","w_url":"/Patient","w":"w4","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489250475,"ts":"2024-12-06T12:47:30.475Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"781d050bc16f2aa4","wait_time":0,"w_qs":"given=Charly&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489250475,"ts":"2024-12-06T12:47:30.475Z","access-policy-id":"devbox-policy","ctx":"781d050bc16f2aa4"} -{"ev":"db/q","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733489250479,"ts":"2024-12-06T12:47:30.479Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Charly%","[[\"name\",\"family\"]]","% Doe%","100"],"d":1,"ctx":"781d050bc16f2aa4"} -{"ev":"db/q","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733489250480,"ts":"2024-12-06T12:47:30.480Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["192adcc8-2833-4e27-81ad-fcd7575c1785"],"d":0,"ctx":"781d050bc16f2aa4"} -{"ev":"resource/update-dup","w":"w4","tn":"devbox","op":"conditional-update","timeUnix":1733489250482,"ts":"2024-12-06T12:47:30.482Z","rtp":"Patient","ctx":"781d050bc16f2aa4","rid":"192adcc8-2833-4e27-81ad-fcd7575c1785"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w4","execution_time":8,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489250483,"ts":"2024-12-06T12:47:30.483Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":9,"w_st":200,"ctx":"781d050bc16f2aa4","w_qs":"given=Charly&family=Doe"} -{"ev":"w/req","w_url":"/Observation","w":"w8","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489250487,"ts":"2024-12-06T12:47:30.487Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"1af9161e54df196f","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489250487,"ts":"2024-12-06T12:47:30.487Z","access-policy-id":"devbox-policy","ctx":"1af9161e54df196f"} -{"ev":"db/q","w":"w8","tn":"devbox","op":"create","timeUnix":1733489250489,"ts":"2024-12-06T12:47:30.489Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["192adcc8-2833-4e27-81ad-fcd7575c1785"],"d":0,"ctx":"1af9161e54df196f"} -{"ev":"resource/create","txid":"40","w":"w8","tn":"devbox","op":"create","timeUnix":1733489250490,"ts":"2024-12-06T12:47:30.490Z","rtp":"Observation","ctx":"1af9161e54df196f","rid":"50dc87c7-0ed0-4690-8c80-ee247e712dea"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w8","execution_time":4,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489250491,"ts":"2024-12-06T12:47:30.491Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":4,"w_st":201,"ctx":"1af9161e54df196f"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733489253122,"ts":"2024-12-06T12:47:33.122Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"2af13acec1ae0970"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733489253123,"ts":"2024-12-06T12:47:33.123Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"22955469ba56f176"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489253127,"ts":"2024-12-06T12:47:33.127Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"22955469ba56f176","wait_time":0} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489253128,"ts":"2024-12-06T12:47:33.127Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":9,"w_st":200,"ctx":"2af13acec1ae0970"} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489253128,"ts":"2024-12-06T12:47:33.128Z","access-policy-id":"devbox-policy","ctx":"22955469ba56f176"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489253128,"ts":"2024-12-06T12:47:33.128Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":8,"w_st":200,"ctx":"22955469ba56f176"} -{"ev":"w/req","w_url":"/ui/console","w":"w3","w_m":"get","tn":"devbox","op":"console","timeUnix":1733489256512,"ts":"2024-12-06T12:47:36.511Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"bf8b6a18675a2671","wait_time":8} -{"w_referer":"http://localhost:8888/auth/login","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/ui/console","w":"w3","execution_time":12,"w_m":"get","tn":"devbox","op":"console","timeUnix":1733489256524,"ts":"2024-12-06T12:47:36.524Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /ui/console","w_uid":"admin","d":46,"w_st":200,"ctx":"bf8b6a18675a2671"} -{"ev":"w/req","w_url":"/rpc","w":"w8","w_m":"post","tn":"devbox","op":"rpc","timeUnix":1733489257028,"ts":"2024-12-06T12:47:37.028Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"3cd34498341fddea","wait_time":1,"w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} -{"ev":"w/req","w_url":"/fhir/metadata","w":"w5","w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489257029,"ts":"2024-12-06T12:47:37.029Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"923bc0b6c0df9e8f","wait_time":5,"w_qs":"include-custom-resources=true"} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"rpc","tn":"devbox","op":"rpc","timeUnix":1733489257030,"ts":"2024-12-06T12:47:37.030Z","access-policy-id":"devbox-policy","ctx":"3cd34498341fddea"} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"fhir-capability","tn":"devbox","op":"capability","timeUnix":1733489257030,"ts":"2024-12-06T12:47:37.030Z","access-policy-id":"devbox-policy","ctx":"923bc0b6c0df9e8f"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"capability","timeUnix":1733489257032,"ts":"2024-12-06T12:47:37.032Z","sql":"SELECT * FROM \"aidboxconfig\" WHERE \"id\" = ?","db_prm":["box"],"d":1,"ctx":"923bc0b6c0df9e8f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/metadata","w":"w5","execution_time":8,"w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489257037,"ts":"2024-12-06T12:47:37.037Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /fhir/metadata","w_uid":"admin","d":14,"w_st":200,"ctx":"923bc0b6c0df9e8f","w_qs":"include-custom-resources=true"} -{"ev":"w/req","w_url":"/fhir/Observation","w":"w1","w_m":"get","tn":"devbox","op":"search","timeUnix":1733489257038,"ts":"2024-12-06T12:47:37.038Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"e1e4d185cec2cd4b","wait_time":1,"w_qs":"_count=30&_sort=_id&_ilike="} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"FhirSearch","tn":"devbox","op":"search","timeUnix":1733489257039,"ts":"2024-12-06T12:47:37.039Z","access-policy-id":"devbox-policy","ctx":"e1e4d185cec2cd4b"} -{"ev":"db/q","w":"w1","tn":"devbox","op":"search","timeUnix":1733489257044,"ts":"2024-12-06T12:47:37.044Z","sql":"SELECT \"observation\".* FROM \"observation\" ORDER BY \"observation\".id ASC LIMIT ? OFFSET ? ","db_prm":["30","0"],"d":2,"ctx":"e1e4d185cec2cd4b"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Observation","w":"w1","execution_time":9,"w_m":"get","tn":"devbox","op":"search","timeUnix":1733489257047,"ts":"2024-12-06T12:47:37.047Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Observation","w_r":"GET /fhir/Observation","w_uid":"admin","d":24,"w_st":200,"ctx":"e1e4d185cec2cd4b","w_qs":"_count=30&_sort=_id&_ilike="} -{"rpc_p":{"resource-type":"Observation"},"ev":"rpc/call","rpc_m":"aidbox.introspector/get-schemas-by-resource-type","w":"w8","tn":"devbox","rpc_u":{"email":null},"op":"rpc:get-schemas-by-resource-type","timeUnix":1733489257542,"ts":"2024-12-06T12:47:37.542Z","d":511,"ctx":"3cd34498341fddea","lvl":"info"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/rpc","w":"w8","execution_time":515,"w_m":"post","tn":"devbox","op":"rpc:get-schemas-by-resource-type","timeUnix":1733489257543,"ts":"2024-12-06T12:47:37.543Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /rpc","w_uid":"admin","d":520,"w_st":200,"ctx":"3cd34498341fddea","w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} -{"ev":"w/req","w_url":"/fhir/Observation/$validate","w":"w3","w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733489265163,"ts":"2024-12-06T12:47:45.163Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ae4186f7614f5cd8","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"FhirValidateCreate","tn":"devbox","op":"$validate","timeUnix":1733489265164,"ts":"2024-12-06T12:47:45.164Z","access-policy-id":"devbox-policy","ctx":"ae4186f7614f5cd8"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"$validate","timeUnix":1733489265171,"ts":"2024-12-06T12:47:45.171Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["192adcc8-2833-4e27-81ad-fcd7575c1785"],"d":1,"ctx":"ae4186f7614f5cd8"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Observation/$validate","w":"w3","execution_time":9,"w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733489265172,"ts":"2024-12-06T12:47:45.172Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Observation","w_r":"POST /fhir/Observation/$validate","w_uid":"admin","d":17,"w_st":200,"ctx":"ae4186f7614f5cd8"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489267023,"ts":"2024-12-06T12:47:47.023Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"b469ee9e4d8b49b5","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489267023,"ts":"2024-12-06T12:47:47.023Z","access-policy-id":"devbox-policy","ctx":"b469ee9e4d8b49b5"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489267024,"ts":"2024-12-06T12:47:47.024Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"b469ee9e4d8b49b5"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w4","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489273387,"ts":"2024-12-06T12:47:53.387Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"0c01c7cd260d80a0"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489277029,"ts":"2024-12-06T12:47:57.029Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"bc057e0877fcb2eb","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489277030,"ts":"2024-12-06T12:47:57.030Z","access-policy-id":"devbox-policy","ctx":"bc057e0877fcb2eb"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489277031,"ts":"2024-12-06T12:47:57.031Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"bc057e0877fcb2eb"} -{"ev":"db/q","w":"w5","tn":"devbox","timeUnix":1733489287027,"ts":"2024-12-06T12:48:07.027Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":3,"ctx":"70bf83544a249ad6"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489287031,"ts":"2024-12-06T12:48:07.031Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"70bf83544a249ad6","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489287032,"ts":"2024-12-06T12:48:07.032Z","access-policy-id":"devbox-policy","ctx":"70bf83544a249ad6"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489287032,"ts":"2024-12-06T12:48:07.032Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":9,"w_st":200,"ctx":"70bf83544a249ad6"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489297059,"ts":"2024-12-06T12:48:17.058Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0ae40c981e48ea5f","wait_time":9} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489297062,"ts":"2024-12-06T12:48:17.062Z","access-policy-id":"devbox-policy","ctx":"0ae40c981e48ea5f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":5,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489297064,"ts":"2024-12-06T12:48:17.064Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":32,"w_st":200,"ctx":"0ae40c981e48ea5f"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":3,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489303500,"ts":"2024-12-06T12:48:23.500Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":4,"w_st":200,"ctx":"8059dff47445141a"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w3","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489307030,"ts":"2024-12-06T12:48:27.030Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"dea373786c22c313","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489307031,"ts":"2024-12-06T12:48:27.031Z","access-policy-id":"devbox-policy","ctx":"dea373786c22c313"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w3","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489307032,"ts":"2024-12-06T12:48:27.032Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":5,"w_st":200,"ctx":"dea373786c22c313"} -{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733489317033,"ts":"2024-12-06T12:48:37.033Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":5,"ctx":"0428202b85ea016e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/health","w":"w2","execution_time":5,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489317035,"ts":"2024-12-06T12:48:37.035Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /health","w_uid":"admin","d":17,"w_st":200,"ctx":"6140ac4ca1dcbf2a"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489317036,"ts":"2024-12-06T12:48:37.036Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"0428202b85ea016e","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489317036,"ts":"2024-12-06T12:48:37.036Z","access-policy-id":"devbox-policy","ctx":"0428202b85ea016e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489317037,"ts":"2024-12-06T12:48:37.037Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":10,"w_st":200,"ctx":"0428202b85ea016e"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w4","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489327719,"ts":"2024-12-06T12:48:47.719Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"6b775bf72b84372e","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489327721,"ts":"2024-12-06T12:48:47.721Z","access-policy-id":"devbox-policy","ctx":"6b775bf72b84372e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w4","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489327722,"ts":"2024-12-06T12:48:47.722Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":7,"w_st":200,"ctx":"6b775bf72b84372e"} -{"ev":"db/q","w":"w7","tn":"devbox","timeUnix":1733489328469,"ts":"2024-12-06T12:48:48.469Z","sql":"select resource from \"client\" where id =?","db_prm":["root"],"d":2,"ctx":"c9f767c3e15853db"} -{"ev":"w/req","w_url":"/Patient","w":"w7","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489328471,"ts":"2024-12-06T12:48:48.471Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"c9f767c3e15853db","wait_time":0,"w_qs":"given=John&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489328471,"ts":"2024-12-06T12:48:48.471Z","access-policy-id":"devbox-policy","ctx":"c9f767c3e15853db"} -{"ev":"db/q","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489328481,"ts":"2024-12-06T12:48:48.481Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% John%","[[\"name\",\"family\"]]","% Doe%","100"],"d":3,"ctx":"c9f767c3e15853db"} -{"ev":"db/q","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489328483,"ts":"2024-12-06T12:48:48.483Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"c9f767c3e15853db"} -{"ev":"resource/update-dup","w":"w7","tn":"devbox","op":"conditional-update","timeUnix":1733489328487,"ts":"2024-12-06T12:48:48.487Z","rtp":"Patient","ctx":"c9f767c3e15853db","rid":"204384eb-b2ec-4d20-95d9-cee9f058b722"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w7","execution_time":19,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489328490,"ts":"2024-12-06T12:48:48.490Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":24,"w_st":200,"ctx":"c9f767c3e15853db","w_qs":"given=John&family=Doe"} -{"ev":"w/req","w_url":"/Observation","w":"w5","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489328496,"ts":"2024-12-06T12:48:48.496Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"0cda2608bdb64dd3","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489328496,"ts":"2024-12-06T12:48:48.496Z","access-policy-id":"devbox-policy","ctx":"0cda2608bdb64dd3"} -{"ev":"db/q","w":"w5","tn":"devbox","op":"create","timeUnix":1733489328512,"ts":"2024-12-06T12:48:48.512Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["204384eb-b2ec-4d20-95d9-cee9f058b722"],"d":1,"ctx":"0cda2608bdb64dd3"} -{"ev":"resource/create","txid":"42","w":"w5","tn":"devbox","op":"create","timeUnix":1733489328515,"ts":"2024-12-06T12:48:48.515Z","rtp":"Observation","ctx":"0cda2608bdb64dd3","rid":"e73e432d-f255-4642-a44b-f59dd5bac67c"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w5","execution_time":25,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489328521,"ts":"2024-12-06T12:48:48.521Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":26,"w_st":201,"ctx":"0cda2608bdb64dd3"} -{"ev":"w/req","w_url":"/Patient","w":"w1","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489328526,"ts":"2024-12-06T12:48:48.526Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"d00bda5b05240cea","wait_time":0,"w_qs":"given=Alice&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489328527,"ts":"2024-12-06T12:48:48.527Z","access-policy-id":"devbox-policy","ctx":"d00bda5b05240cea"} -{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489328531,"ts":"2024-12-06T12:48:48.531Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Alice%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"d00bda5b05240cea"} -{"ev":"db/q","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489328532,"ts":"2024-12-06T12:48:48.532Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":1,"ctx":"d00bda5b05240cea"} -{"ev":"resource/update-dup","w":"w1","tn":"devbox","op":"conditional-update","timeUnix":1733489328534,"ts":"2024-12-06T12:48:48.534Z","rtp":"Patient","ctx":"d00bda5b05240cea","rid":"e829b0c6-2097-4cee-899d-36026e747fac"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w1","execution_time":9,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489328535,"ts":"2024-12-06T12:48:48.535Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":10,"w_st":200,"ctx":"d00bda5b05240cea","w_qs":"given=Alice&family=Doe"} -{"ev":"w/req","w_url":"/Observation","w":"w8","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489328543,"ts":"2024-12-06T12:48:48.543Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"7daec689fb9b5876","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489328544,"ts":"2024-12-06T12:48:48.544Z","access-policy-id":"devbox-policy","ctx":"7daec689fb9b5876"} -{"ev":"db/q","w":"w8","tn":"devbox","op":"create","timeUnix":1733489328546,"ts":"2024-12-06T12:48:48.546Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["e829b0c6-2097-4cee-899d-36026e747fac"],"d":1,"ctx":"7daec689fb9b5876"} -{"ev":"resource/create","txid":"44","w":"w8","tn":"devbox","op":"create","timeUnix":1733489328548,"ts":"2024-12-06T12:48:48.548Z","rtp":"Observation","ctx":"7daec689fb9b5876","rid":"2e9b1cb3-8410-4de7-a4c3-3061b380adb6"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w8","execution_time":7,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489328551,"ts":"2024-12-06T12:48:48.551Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":9,"w_st":201,"ctx":"7daec689fb9b5876"} -{"ev":"w/req","w_url":"/Patient","w":"w3","w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489328564,"ts":"2024-12-06T12:48:48.564Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"9ef81b351c26ec1f","wait_time":0,"w_qs":"given=Charly&family=Doe"} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"ConditionalUpdate","tn":"devbox","op":"conditional-update","timeUnix":1733489328566,"ts":"2024-12-06T12:48:48.566Z","access-policy-id":"devbox-policy","ctx":"9ef81b351c26ec1f"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489328573,"ts":"2024-12-06T12:48:48.573Z","sql":"SELECT \"patient\".* FROM \"patient\" WHERE (aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?) AND aidbox_text_search(knife_extract_text(\"patient\".resource, ?)) ilike unaccent(?)) LIMIT ? OFFSET ? ","db_prm":["[[\"name\",\"given\"]]","% Charly%","[[\"name\",\"family\"]]","% Doe%","100"],"d":2,"ctx":"9ef81b351c26ec1f"} -{"ev":"db/q","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489328574,"ts":"2024-12-06T12:48:48.574Z","sql":"SELECT \"id\" FROM \"patient\" WHERE \"id\" = ?","db_prm":["192adcc8-2833-4e27-81ad-fcd7575c1785"],"d":1,"ctx":"9ef81b351c26ec1f"} -{"ev":"resource/update-dup","w":"w3","tn":"devbox","op":"conditional-update","timeUnix":1733489328577,"ts":"2024-12-06T12:48:48.577Z","rtp":"Patient","ctx":"9ef81b351c26ec1f","rid":"192adcc8-2833-4e27-81ad-fcd7575c1785"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Patient","w":"w3","execution_time":14,"w_m":"put","tn":"devbox","op":"conditional-update","timeUnix":1733489328578,"ts":"2024-12-06T12:48:48.578Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Patient","w_r":"PUT /Patient","d":16,"w_st":200,"ctx":"9ef81b351c26ec1f","w_qs":"given=Charly&family=Doe"} -{"ev":"w/req","w_url":"/Observation","w":"w2","w_m":"post","tn":"devbox","op":"create","timeUnix":1733489328584,"ts":"2024-12-06T12:48:48.584Z","w_addr":"192.168.65.1","w_cid":"root","ctx":"8c7811671594f02a","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"Create","tn":"devbox","op":"create","timeUnix":1733489328584,"ts":"2024-12-06T12:48:48.584Z","access-policy-id":"devbox-policy","ctx":"8c7811671594f02a"} -{"ev":"db/q","w":"w2","tn":"devbox","op":"create","timeUnix":1733489328586,"ts":"2024-12-06T12:48:48.586Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["192adcc8-2833-4e27-81ad-fcd7575c1785"],"d":0,"ctx":"8c7811671594f02a"} -{"ev":"resource/create","txid":"46","w":"w2","tn":"devbox","op":"create","timeUnix":1733489328587,"ts":"2024-12-06T12:48:48.587Z","rtp":"Observation","ctx":"8c7811671594f02a","rid":"d31a9804-cd95-44c9-b114-ff962be3e072"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"python-requests/2.32.3","w_url":"/Observation","w":"w2","execution_time":4,"w_m":"post","tn":"devbox","op":"create","timeUnix":1733489328588,"ts":"2024-12-06T12:48:48.588Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_cid":"root","rt":"Observation","w_r":"POST /Observation","d":5,"w_st":201,"ctx":"8c7811671594f02a"} -{"ev":"w/req","w_url":"/ui/console","w":"w6","w_m":"get","tn":"devbox","op":"console","timeUnix":1733489332481,"ts":"2024-12-06T12:48:52.481Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"9d56f16705ff783d","wait_time":3} -{"w_referer":"http://localhost:8888/auth/login","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/ui/console","w":"w6","execution_time":8,"w_m":"get","tn":"devbox","op":"console","timeUnix":1733489332489,"ts":"2024-12-06T12:48:52.489Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /ui/console","w_uid":"admin","d":18,"w_st":200,"ctx":"9d56f16705ff783d"} -{"ev":"w/req","w_url":"/fhir/Observation","w":"w8","w_m":"get","tn":"devbox","op":"search","timeUnix":1733489333339,"ts":"2024-12-06T12:48:53.339Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"667af9ae57ab2b9e","wait_time":0,"w_qs":"_count=30&_sort=_id&_ilike="} -{"ev":"auth/authorized-access-policy","w":"w8","op_id":"FhirSearch","tn":"devbox","op":"search","timeUnix":1733489333339,"ts":"2024-12-06T12:48:53.339Z","access-policy-id":"devbox-policy","ctx":"667af9ae57ab2b9e"} -{"ev":"w/req","w_url":"/rpc","w":"w3","w_m":"post","tn":"devbox","op":"rpc","timeUnix":1733489333340,"ts":"2024-12-06T12:48:53.340Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"47102e15bb60f7bb","wait_time":1,"w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} -{"ev":"auth/authorized-access-policy","w":"w3","op_id":"rpc","tn":"devbox","op":"rpc","timeUnix":1733489333341,"ts":"2024-12-06T12:48:53.341Z","access-policy-id":"devbox-policy","ctx":"47102e15bb60f7bb"} -{"ev":"w/req","w_url":"/fhir/metadata","w":"w2","w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489333342,"ts":"2024-12-06T12:48:53.342Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"c306795b31951721","wait_time":0,"w_qs":"include-custom-resources=true"} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"fhir-capability","tn":"devbox","op":"capability","timeUnix":1733489333343,"ts":"2024-12-06T12:48:53.343Z","access-policy-id":"devbox-policy","ctx":"c306795b31951721"} -{"ev":"db/q","w":"w8","tn":"devbox","op":"search","timeUnix":1733489333344,"ts":"2024-12-06T12:48:53.344Z","sql":"SELECT \"observation\".* FROM \"observation\" ORDER BY \"observation\".id ASC LIMIT ? OFFSET ? ","db_prm":["30","0"],"d":3,"ctx":"667af9ae57ab2b9e"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Observation","w":"w8","execution_time":7,"w_m":"get","tn":"devbox","op":"search","timeUnix":1733489333346,"ts":"2024-12-06T12:48:53.346Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Observation","w_r":"GET /fhir/Observation","w_uid":"admin","d":9,"w_st":200,"ctx":"667af9ae57ab2b9e","w_qs":"_count=30&_sort=_id&_ilike="} -{"ev":"db/q","w":"w2","tn":"devbox","op":"capability","timeUnix":1733489333351,"ts":"2024-12-06T12:48:53.351Z","sql":"SELECT * FROM \"aidboxconfig\" WHERE \"id\" = ?","db_prm":["box"],"d":7,"ctx":"c306795b31951721"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/metadata","w":"w2","execution_time":16,"w_m":"get","tn":"devbox","op":"capability","timeUnix":1733489333358,"ts":"2024-12-06T12:48:53.358Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /fhir/metadata","w_uid":"admin","d":21,"w_st":200,"ctx":"c306795b31951721","w_qs":"include-custom-resources=true"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w6","execution_time":1,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489333588,"ts":"2024-12-06T12:48:53.588Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":2,"w_st":200,"ctx":"b3777cd6dee0709f"} -{"rpc_p":{"resource-type":"Observation"},"ev":"rpc/call","rpc_m":"aidbox.introspector/get-schemas-by-resource-type","w":"w3","tn":"devbox","rpc_u":{"email":null},"op":"rpc:get-schemas-by-resource-type","timeUnix":1733489333731,"ts":"2024-12-06T12:48:53.731Z","d":388,"ctx":"47102e15bb60f7bb","lvl":"info"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/rpc","w":"w3","execution_time":391,"w_m":"post","tn":"devbox","op":"rpc:get-schemas-by-resource-type","timeUnix":1733489333731,"ts":"2024-12-06T12:48:53.731Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"POST /rpc","w_uid":"admin","d":394,"w_st":200,"ctx":"47102e15bb60f7bb","w_qs":"_format=transit&_m=aidbox.introspector/get-schemas-by-resource-type"} -{"ev":"w/req","w_url":"/fhir/Observation/$validate","w":"w4","w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733489333820,"ts":"2024-12-06T12:48:53.820Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"4491595d53adc8d1","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w4","op_id":"FhirValidateCreate","tn":"devbox","op":"$validate","timeUnix":1733489333820,"ts":"2024-12-06T12:48:53.820Z","access-policy-id":"devbox-policy","ctx":"4491595d53adc8d1"} -{"ev":"db/q","w":"w4","tn":"devbox","op":"$validate","timeUnix":1733489333824,"ts":"2024-12-06T12:48:53.824Z","sql":"(SELECT \"id\", \"resource_type\", resource#>'{meta, profile}' AS \"resource_profiles\" FROM \"patient\" WHERE (\"id\" in (?)))","db_prm":["192adcc8-2833-4e27-81ad-fcd7575c1785"],"d":2,"ctx":"4491595d53adc8d1"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/fhir/Observation/$validate","w":"w4","execution_time":5,"w_m":"post","tn":"devbox","op":"$validate","timeUnix":1733489333825,"ts":"2024-12-06T12:48:53.825Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","rt":"Observation","w_r":"POST /fhir/Observation/$validate","w_uid":"admin","d":6,"w_st":200,"ctx":"4491595d53adc8d1"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w7","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489343352,"ts":"2024-12-06T12:49:03.352Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"cb8ec62853c44055","wait_time":2} -{"ev":"auth/authorized-access-policy","w":"w7","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489343356,"ts":"2024-12-06T12:49:03.356Z","access-policy-id":"devbox-policy","ctx":"cb8ec62853c44055"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w7","execution_time":5,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489343357,"ts":"2024-12-06T12:49:03.357Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":18,"w_st":200,"ctx":"cb8ec62853c44055"} -{"ev":"db/q","w":"w1","tn":"devbox","timeUnix":1733489353344,"ts":"2024-12-06T12:49:13.344Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":7,"ctx":"d91ed4f539164923"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w1","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489353348,"ts":"2024-12-06T12:49:13.348Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"d91ed4f539164923","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w1","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489353348,"ts":"2024-12-06T12:49:13.348Z","access-policy-id":"devbox-policy","ctx":"d91ed4f539164923"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w1","execution_time":1,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489353349,"ts":"2024-12-06T12:49:13.349Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":14,"w_st":200,"ctx":"d91ed4f539164923"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w5","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489363335,"ts":"2024-12-06T12:49:23.335Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"f19072d64021cd28","wait_time":0} -{"ev":"auth/authorized-access-policy","w":"w5","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489363336,"ts":"2024-12-06T12:49:23.336Z","access-policy-id":"devbox-policy","ctx":"f19072d64021cd28"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w5","execution_time":2,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489363337,"ts":"2024-12-06T12:49:23.337Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":4,"w_st":200,"ctx":"f19072d64021cd28"} -{"w_referer":null,"ev":"w/resp","w_user_agent":"curl/8.11.0","w_url":"/health","w":"w8","execution_time":2,"w_m":"get","tn":"devbox","op":"health","timeUnix":1733489363670,"ts":"2024-12-06T12:49:23.670Z","w_ip":"0:0:0:0:0:0:0:1","w_server_ip":"/[0","w_r":"GET /health","d":3,"w_st":200,"ctx":"8463c162ae8f1453"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w2","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489373344,"ts":"2024-12-06T12:49:33.344Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"ae383ae7cc7fab24","wait_time":1} -{"ev":"auth/authorized-access-policy","w":"w2","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489373346,"ts":"2024-12-06T12:49:33.346Z","access-policy-id":"devbox-policy","ctx":"ae383ae7cc7fab24"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w2","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489373347,"ts":"2024-12-06T12:49:33.347Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":6,"w_st":200,"ctx":"ae383ae7cc7fab24"} -{"ev":"db/q","w":"w6","tn":"devbox","timeUnix":1733489383419,"ts":"2024-12-06T12:49:43.418Z","sql":"select\n s.resource ||\n jsonb_strip_nulls(jsonb_build_object(\n 'id', s.id,\n 'meta', (coalesce(s.resource->'meta' , '{}'::jsonb) || jsonb_build_object('lastUpdated', s.ts, 'versionId', s.txid)),\n 'user', (u.resource || jsonb_build_object('resourceType', 'User', 'id', u.id)),\n 'on-behalf', (behalf.resource || jsonb_build_object('resourceType', 'User', 'id', behalf.id)),\n 'role', (\n select jsonb_agg(resource || jsonb_build_object('id', id, 'resourceType', 'Role'))\n from ","db_prm":["__sha256:B2D37703AF3ACA7B631967B4E7B87D598DD417E0970AB23E05718271E4CC96A6"],"d":25,"ctx":"8a42f235df9ef49f"} -{"ev":"w/req","w_url":"/auth/userinfo","w":"w6","w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489383428,"ts":"2024-12-06T12:49:43.428Z","w_addr":"192.168.65.1","w_uid":"admin","ctx":"8a42f235df9ef49f","wait_time":6} -{"ev":"auth/authorized-access-policy","w":"w6","op_id":"auth-userinfo","tn":"devbox","op":"userinfo","timeUnix":1733489383430,"ts":"2024-12-06T12:49:43.430Z","access-policy-id":"devbox-policy","ctx":"8a42f235df9ef49f"} -{"w_referer":"http://localhost:8888/ui/console","ev":"w/resp","w_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0","w_url":"/auth/userinfo","w":"w6","execution_time":3,"w_m":"get","tn":"devbox","op":"userinfo","timeUnix":1733489383431,"ts":"2024-12-06T12:49:43.431Z","w_ip":"192.168.65.1","w_server_ip":"/172.21.0.3","w_r":"GET /auth/userinfo","w_uid":"admin","d":46,"w_st":200,"ctx":"8a42f235df9ef49f"} diff --git a/aidbox-with-python-sdk/tmp/hsperfdata_aidbox/1 b/aidbox-with-python-sdk/tmp/hsperfdata_aidbox/1 deleted file mode 100644 index 0e4f3a53c5a37faf1a3850bf83daa045e78a552f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 32768 zcmeHOe~cVe9iQE80j&rIP_Q6l_|amyx!vuxrA6cPu6NhgmKLs*YDkW`+1b14&CaYd zv)emjf=P`Uql6zZ3dTed6T*KeKP(VQ6@!QdG-@Cr_^)VC@kinxiu(D!`SIq>&hFk1 z6JmTXc{jV;_xb+#yzl$IH}Ac^_^-2POJ$|h-mb8+_5N)e=!1&-W7Hc^FGi(uP}xwf z;u&;Y%@4KNVA(Zi54cUo2yM>|SevKW-xc8YSpx3K7^mZz)kpdTeG{G=T5iK?9P-S? zyod zP;>jo3vrbmJ`a2D=20n^@m9jX~w~Wv_-Ws>&ZTFbnvIzOeUw-+G`%5dr zO}dQ)r6?~C$8}o=Tsz$7xfX{hXNz#9C|*t)T|)~OU}huGg3$0os}XspD0^Td6@mX! zsY3hcy-U`Rv$`6cB8q^FHa<6|%CxU#WCe8%Gv?I(=3F=sn=Xj_3&t5w%k zAUWq(HjYdu&>YV|0+?`&Ab>trPTv^#Z zw8mgObkrgETYI&0ycjR#G+wy7Wr1puM5hBuY=|VKn2H~=9 zX0gNcMYzO05t;LgjcbYG;nSo;aioin{=QgtEE6Ni;B!K7-AD<-O zqyV8@#lv4&y7=_ntHNo4!uVt#Za< z0e3vIK6`e=a?becle06H^Yu9J*6J5~se!B){vM6IwaTG!Lgmc#`sD16#3=f?(T6qK zQ%mFdt##Q`OXB%#{35(ody;t8-&~(xNj!gx5GB$w}h*!nosfNaOiO z$iKz;Cy4Ujh0F@>&t`n5dFFaN$wA!Z04l{`k9Jhn7 zFKB*FCLGAI-L9AJ836*FQ4!}KzJAN$)0M$y^IR4xI^bMyC7ZvqdTFknbVEOVae3S)UvW7{%TsvUxL%| zVJLq!t%tw0;IsTC_=LZK@mEjz!$Q;S_`c|KAv0mxQf5%UR-zU9`5nY>Zc zg0^AO_>QuAe!P^k>pcP2vR&FVGwqPQE=5Z5S4T}aKd21A8%sI7`WX_E!)M34px^9K zuD&;mKL=lkFUqGyd@;Y1#K*o6n&(UUO!n(|4#H#gTj)m;_pzMHFge5gN#sz!4zdT? znk`?|W|d7uIXi~>Lwh2kLw69B>H9;%YjGUL6A7C|2*q*qxqlp1(>Sb9Llhl#cpO!= z^~E9Zeflq_zfT-i@p76U1nMO)J++^bNdGvD{Z8T#?;f;gO=V^M#_|39$jRvwhg?pt zKX0*a&|y=iKl<{KjH@ILaYDsXOU{lyamelHjl<6}IZ0llI2q1soEL-YD*3Dx#03jiv9Zzikbv!3#~^nF?p_w?&ffBNw$`cowv^$32twi*Tk&ZB+V$LcPiTj?Piz`Htb5cC>Xl zK?@?3B!200ksjp5sTe{{l)K98k<(MIY{k!6J1doIkxd>L$mDbP?j;mr=CjdFaJK-z`~a{b2^n>Fe#M!0}G) zrM`-qD_Z;%{p-a+-%J+TXFo5yzQl2w5ltWcCiTI7a=b8!{dyCbtfTU{67~@}4n~V> zA3`dJ=#S{Hz%R#VlJplp`ctM?%m>1H()3zw?3ZG}X3|05VApeUvU##ljz9r9pmbRr zuU1Y0B|1r?KYjQtv?rnF(fvNNL&WpM)kSs%$=L*k5`Tk8Z zA9Y(ta5lt_57^<*k>k^(DmQL=ap`>6ZBcXO;@iJUOXhrjPVaYs=U64RQk0lZv3)5z zcaQEr06=F?%qm6s!_7{KwnD{xo;jztH81ev#%OoV)PZTzGoU?g1kveObT0eCrmLQ& zcccM4Gjqlb+wnSd^Ghtla0lEjPOKYdt)i+=Fv#6=oi1|1D?SHN3kRb z$N)VF4;+N{8w>Sh?uRfv{6zCln+oSMem}&f8(55Q4uYP0zxfg7km!$~C(bL;0nz>+ zEVDc$`ja`QP4mEn*RawS4oNz=a5PCfhE}Z!|}cd`e$M^5YAJ_3hZZ zp%~Lq$u8P-BOIMi72#SMZUM2oi4k;LZ97`>_s`4ld63>#v^!)_&OW-W+tdG?bpTLKppv~8p^_ZB-n=q7jI|@a zL8lWFp5OMORS)n~bX1Z{i+_^aFMe9sk!gBL%U-e?Y70{g+OvWIOn91K2tS5rfn94R zag<)xEq~8yh+lbQO{0#A+LP6z*c@HN)rf%qjDO!bwuipQk5oEyU&mka|2?SWf1h#0 z-k9PLGVI2jw}f#|R{)ZJrQ>D77sM~c$AX8;H7n%+qLi(uWEbUEl6y6ttY46W}J4?yP9BFj|M?HAUWVYG$>RiWmLKO$d^=f@=q*fiN?mkxC zwWof=p8EDrsi*94L7g{EwN};YT8$c2YxOEpp*YX+b$L85gtkfli$PIFH+}7u-*a)3IQ@D$$Ruub{{D#hhC5-=vAFBqto%8;7Cqh ze~RO;71W%Sq@U?a*8Yy~Fjef*wy)7X8T-x_y#;ba-uU|9PP?t4Vh=1bdSj$E&GU&~ z!js*Z_8KPC^#5bL_UD(Ar9~`3J|qK@0m*=5Kr$d1kPJu$Bm Date: Tue, 10 Dec 2024 00:03:45 +0600 Subject: [PATCH 03/11] add custom models and fhirtypes examples --- .../fhirpy_custom_models.py | 125 ++++++++++++++++++ .../{main.py => fhirpy_fhirtypes.py} | 50 ++----- aidbox-with-python-sdk/fhirpy_raw_data.py | 47 +++++++ aidbox-with-python-sdk/pyproject.toml | 1 + aidbox-with-python-sdk/requirements.txt | 3 +- aidbox-with-python-sdk/utils.py | 25 ++++ 6 files changed, 212 insertions(+), 39 deletions(-) create mode 100644 aidbox-with-python-sdk/fhirpy_custom_models.py rename aidbox-with-python-sdk/{main.py => fhirpy_fhirtypes.py} (76%) create mode 100644 aidbox-with-python-sdk/fhirpy_raw_data.py create mode 100644 aidbox-with-python-sdk/utils.py diff --git a/aidbox-with-python-sdk/fhirpy_custom_models.py b/aidbox-with-python-sdk/fhirpy_custom_models.py new file mode 100644 index 00000000..d64f7df8 --- /dev/null +++ b/aidbox-with-python-sdk/fhirpy_custom_models.py @@ -0,0 +1,125 @@ +# ruff: noqa: E402 + + +##################################################################### +# Use . With custom data models + + +from dataclasses import dataclass, field +from typing import List, Optional +from dataclasses import asdict + +from fhirpy import SyncFHIRClient +from fhirpy.base.resource_protocol import ResourceProtocol + +from utils import read_csv_as_dict, now + + +@dataclass +class Meta: + lastUpdated: Optional[str] + createdAt: Optional[str] + versionId: Optional[str] + +@dataclass +class Base(ResourceProtocol, dict): + id: Optional[str] = None + meta: Optional[Meta] = None + +@dataclass +class HumanName: + given: Optional[List[str]] = field(default_factory=list) + family: Optional[str] = None + + +@dataclass +class Patient(Base): + resourceType: str = 'Patient' + name: Optional[List[HumanName]] = field(default_factory=list) + gender: Optional[str] = None + + +@dataclass +class Quantity(Base): + resourceType: str = 'Quantity' + code: Optional[str] = None + unit: Optional[str] = None + value: Optional[float] = None + system: Optional[str] = None + comparator: Optional[str] = None + + +@dataclass +class Coding(Base): + resourceType: str = 'Coding' + code: Optional[str] = None + system: Optional[str] = None + display: Optional[str] = None + version: Optional[str] = None + user_selected: Optional[bool] = None + + +@dataclass +class CodeableConcept(Base): + resourceType: str = 'CodeableConcept' + text: Optional[str] = None + coding: Optional[List[Coding]] = field(default_factory=list) + + +@dataclass +class Reference(Base): + resourceType: str = 'Reference' + reference: Optional[str] = None + + +@dataclass +class Observation(Base): + resourceType: str = 'Observation' + status: Optional[str] = None + code: Optional[CodeableConcept] = None + + subject: Optional[Reference] = None + valueQuantity: Optional[Quantity] = None + effectiveDateTime: Optional[str] = None + + + +def import_data(client, file_path): + raw_data = read_csv_as_dict(file_path) + for item in raw_data: + patient_to_update = Patient( + name=[HumanName(given=[item['given']], family=item['family'])], + gender=item['gender'] + ) + patient, is_created = ( + client.resources(Patient) + .search(given=item["given"], family=item["family"]) + .update(patient_to_update) + ) + + patient_id = asdict(patient)["id"] + print( + f"Patient {item [ 'given']} {item['family']} {'created' if is_created else 'updated'}. Id: {patient_id}" + ) + + new_observation = Observation( + status="final", + code=CodeableConcept(text='Body weight'), + subject=Reference(reference=f"Patient/{patient_id}"), + valueQuantity=Quantity(value=int(item["weight"]), unit='kg'), + effectiveDateTime=now(), + ) + observation = client.create(new_observation) + print( + f"Observation for {item['given']} {item['family']} created. Id: {observation.id}" + ) + + +client = SyncFHIRClient( + url="http://localhost:8888/", + authorization="Basic cm9vdDpzZWNyZXQ=", + dump_resource=asdict +) + + +import_data(client, "data/patients.csv") diff --git a/aidbox-with-python-sdk/main.py b/aidbox-with-python-sdk/fhirpy_fhirtypes.py similarity index 76% rename from aidbox-with-python-sdk/main.py rename to aidbox-with-python-sdk/fhirpy_fhirtypes.py index e390f50a..1c14ea90 100644 --- a/aidbox-with-python-sdk/main.py +++ b/aidbox-with-python-sdk/fhirpy_fhirtypes.py @@ -1,51 +1,26 @@ # ruff: noqa: E402 -from datetime import datetime - - -def read_csv_as_dict(file_path): - with open(file_path, mode="r") as file: - lines = file.readlines() - keys = lines[0].strip().split(",") - data = lines[1:] - result = [] - for line in data: - values = line.strip().split(",") - result.append(dict(zip(keys, values))) - return result - - -def write_dict_as_csv(data, file_path): - with open(file_path, mode="w") as file: - columns = data[0].keys() - rows = [] - for item in data: - rows.append(",".join([str(item[column]) for column in columns])) - file.write(",".join(columns) + "\n") - file.write("\n".join(rows)) - - -def now(): - return datetime.now().strftime("%Y-%m-%dT%H:%M:%S+00:00") - ##################################################################### -# Use . Only Runtime +# Use . with fhirpy-types-r4b from fhirpy import SyncFHIRClient +from fhirpy_types_r4b import HumanName, Patient, BaseModel +from utils import read_csv_as_dict, now +patient = Patient(active=True) + def import_data(client, file_path): raw_data = read_csv_as_dict(file_path) for item in raw_data: - patient_to_update = client.resource( - "Patient", - name=[{"given": [item["given"]], "family": item["family"]}], - gender=item["gender"], + patient_to_update = Patient( + name=[HumanName(given=[item['given']], family=item['family'])], + gender=item['gender'] ) patient, is_created = ( - client.resources("Patient") + client.resources(Patient) .search(given=item["given"], family=item["family"]) .update(patient_to_update) ) @@ -63,16 +38,15 @@ def import_data(client, file_path): ) observation.save() print( - f"Obsetvation for {item['given']} {item['family']} created. Id: {observation.id}" + f"Observation for {item['given']} {item['family']} created. Id: {observation.id}" ) client = SyncFHIRClient( - url="http://localhost:8888/", authorization="Basic cm9vdDpzZWNyZXQ=" + url="http://localhost:8888/", + authorization="Basic cm9vdDpzZWNyZXQ=", ) -# client.resource("Patient", name=[{"given": ["given"], "family": "family"}]).save() - import_data(client, "data/patients.csv") diff --git a/aidbox-with-python-sdk/fhirpy_raw_data.py b/aidbox-with-python-sdk/fhirpy_raw_data.py new file mode 100644 index 00000000..152c82f3 --- /dev/null +++ b/aidbox-with-python-sdk/fhirpy_raw_data.py @@ -0,0 +1,47 @@ +# ruff: noqa: E402 + + +##################################################################### +# Use . Only Runtime + + +from fhirpy import SyncFHIRClient +from utils import read_csv_as_dict, now + + +def import_data(client, file_path): + raw_data = read_csv_as_dict(file_path) + for item in raw_data: + patient_to_update = client.resource( + "Patient", + name=[{"given": [item["given"]], "family": item["family"]}], + gender=item["gender"], + ) + patient, is_created = ( + client.resources("Patient") + .search(given=item["given"], family=item["family"]) + .update(patient_to_update) + ) + patient_id = dict(patient)["id"] + print( + f"Patient {item [ 'given']} {item['family']} {'created' if is_created else 'updated'}. Id: {patient_id}" + ) + observation = client.resource( + "Observation", + status="final", + code={"text": "Body weight"}, + subject={"reference": f"Patient/{patient_id}"}, + valueQuantity={"value": int(item["weight"]), "unit": "kg"}, + effectiveDateTime=now(), + ) + observation.save() + print( + f"Observation for {item['given']} {item['family']} created. Id: {observation.id}" + ) + + +client = SyncFHIRClient( + url="http://localhost:8888/", authorization="Basic cm9vdDpzZWNyZXQ=" +) + +import_data(client, "data/patients.csv") diff --git a/aidbox-with-python-sdk/pyproject.toml b/aidbox-with-python-sdk/pyproject.toml index 691073cb..330105d6 100644 --- a/aidbox-with-python-sdk/pyproject.toml +++ b/aidbox-with-python-sdk/pyproject.toml @@ -8,6 +8,7 @@ readme = "README.md" [tool.poetry.dependencies] python = "3.13" fhirpy = "^2.0.15" +fhirpy-types-r4b = "0.1.1" [tool.poetry.group.dev.dependencies] ruff = "^0.8.2" diff --git a/aidbox-with-python-sdk/requirements.txt b/aidbox-with-python-sdk/requirements.txt index 9a1c68e4..7e3f90c5 100644 --- a/aidbox-with-python-sdk/requirements.txt +++ b/aidbox-with-python-sdk/requirements.txt @@ -1,2 +1,3 @@ fhirpy==2.0.15 -pydantic==2.10.2 \ No newline at end of file + fhirpy-types-r4b==0.1.1 +pydantic==2.10.2 diff --git a/aidbox-with-python-sdk/utils.py b/aidbox-with-python-sdk/utils.py new file mode 100644 index 00000000..72e7cf65 --- /dev/null +++ b/aidbox-with-python-sdk/utils.py @@ -0,0 +1,25 @@ +from datetime import datetime + +def now(): + return datetime.now().strftime("%Y-%m-%dT%H:%M:%S+00:00") + +def read_csv_as_dict(file_path): + with open(file_path, mode="r") as file: + lines = file.readlines() + keys = lines[0].strip().split(",") + data = lines[1:] + result = [] + for line in data: + values = line.strip().split(",") + result.append(dict(zip(keys, values))) + return result + + +def write_dict_as_csv(data, file_path): + with open(file_path, mode="w") as file: + columns = data[0].keys() + rows = [] + for item in data: + rows.append(",".join([str(item[column]) for column in columns])) + file.write(",".join(columns) + "\n") + file.write("\n".join(rows)) From 83d499bfe0d6fd3fe78df0b136d3dc9a88982d97 Mon Sep 17 00:00:00 2001 From: Vitaly Kravtsov Date: Tue, 10 Dec 2024 17:19:07 +0600 Subject: [PATCH 04/11] refine fhirtypes example and clean up --- .../fhirpy_custom_models.py | 3 - aidbox-with-python-sdk/fhirpy_fhirtypes.py | 126 ++---------------- aidbox-with-python-sdk/fhirpy_raw_data.py | 3 - 3 files changed, 9 insertions(+), 123 deletions(-) diff --git a/aidbox-with-python-sdk/fhirpy_custom_models.py b/aidbox-with-python-sdk/fhirpy_custom_models.py index d64f7df8..94919a5d 100644 --- a/aidbox-with-python-sdk/fhirpy_custom_models.py +++ b/aidbox-with-python-sdk/fhirpy_custom_models.py @@ -1,6 +1,3 @@ -# ruff: noqa: E402 - - ##################################################################### # Use . With custom data models diff --git a/aidbox-with-python-sdk/fhirpy_fhirtypes.py b/aidbox-with-python-sdk/fhirpy_fhirtypes.py index 1c14ea90..d92b2143 100644 --- a/aidbox-with-python-sdk/fhirpy_fhirtypes.py +++ b/aidbox-with-python-sdk/fhirpy_fhirtypes.py @@ -1,17 +1,12 @@ -# ruff: noqa: E402 - - ##################################################################### # Use . with fhirpy-types-r4b from fhirpy import SyncFHIRClient -from fhirpy_types_r4b import HumanName, Patient, BaseModel +from fhirpy_types_r4b import CodeableConcept, HumanName, Observation, Patient, Quantity, Reference from utils import read_csv_as_dict, now -patient = Patient(active=True) - def import_data(client, file_path): raw_data = read_csv_as_dict(file_path) for item in raw_data: @@ -28,15 +23,15 @@ def import_data(client, file_path): print( f"Patient {item [ 'given']} {item['family']} {'created' if is_created else 'updated'}. Id: {patient_id}" ) - observation = client.resource( - "Observation", - status="final", - code={"text": "Body weight"}, - subject={"reference": f"Patient/{patient_id}"}, - valueQuantity={"value": int(item["weight"]), "unit": "kg"}, - effectiveDateTime=now(), + + new_observation = Observation( + status='final', + code=CodeableConcept(text='Body weight'), + subject=Reference(reference=f"Patient/{patient_id}"), + valueQuantity=Quantity(value=int(item["weight"]), unit='kg'), + effectiveDateTime=now() ) - observation.save() + observation = client.save(new_observation) print( f"Observation for {item['given']} {item['family']} created. Id: {observation.id}" ) @@ -48,106 +43,3 @@ def import_data(client, file_path): ) import_data(client, "data/patients.csv") - - -##################################################################### -# Use . With generated -# resource classes - - -# from fhirpy.base.resource_protocol import ResourceProtocol -# from pydantic import BaseModel as BaseModel_, Field, Extra -# from typing import List, Optional, Literal, Annotated - - -# # Models -# class BaseModel(BaseModel_): -# class Config: -# validate_assignment = True -# allow_population_by_field_name = True - -# def dict(self, *args, **kwargs): -# by_alias = kwargs.pop("by_alias", True) -# return super().dict(*args, **kwargs, by_alias=by_alias) - - -# class HumanName(BaseModel): -# use: Optional[str] = None -# text: Optional[str] = None -# given: Optional[List[str]] = None -# family: Optional[str] = None -# prefix: Optional[List[str]] = None -# suffix: Optional[List[str]] = None - - -# class Patient(BaseModel): -# resourceType: str = "Patient" -# id: Optional[str] = None -# gender: Optional[str] = None -# name: Optional[List[HumanName]] = None -# active: Optional[bool] = None - - -# client = SyncFHIRClient( -# url="http://localhost:8888/", -# authorization="Basic cm9vdDpzZWNyZXQ=", -# # dump_resource=BaseModel.model_dump -# ) - -# newpt = Patient( -# name=[HumanName(given=["rabrab"], family="Bababa")], active=True, gender="female" -# ) - - -# find id (new patient or existing) -# patient = client.resources('Patient').search(name=f"{item['first_name']} {item['last_name']}").first() - -# patient = client.resource('patient', ) - -# patient = Patient( -# name=[HumanName(given=[item['first_name']], family=item['last_name'])], -# active=item['active'] == 'True', - -# 1. [ ] Write examples of runtime usage in [Aidbox/examples](https://github.com/Aidbox/examples): -# - Tasks (with implementation stage): -# 1. Python module with CSV Patient+Observation import/export. Export should provide some kind of filters/searches. -# 2. Wrap it with FastAPI. -# - SDK Adoption level: -# 1. Python SDK Runtime only. -# 1. Python SDK Runtime + provided Python classes. -# 1. Python SDK Runtime + FHIR Schema Codegen. -# - In process we should use something like PyCharm and note autocompletion and typechecking warnings. -# - Make comparison table between different SDK adoption levels. It should show to us sailing/growing points. - - -# client.create(newpt) - - -# print(read_file()) - -# - -# newpt = Patient(name=[HumanName(text='John doe')], active=True) -# newpt = Patient(active=True) - - -# client.get() - -# class API(BaseModel): -# def save(self): -# resource_type = self.__class__.__name__ - -# client.save() - -# response = requests.put( -# url=f"{base}/fhir/{resource_type}/{self.id or ''}", -# json=self.dumps(exclude_unset=True), -# auth=basic, -# ) -# response.raise_for_status() # TODO: handle and type HTTP codes except 200+ -# data = response.json() -# self.id = data["id"] -# self.meta = Meta(**data["meta"]) - -# class PatientAR(API): -# active: Optional[bool] = None diff --git a/aidbox-with-python-sdk/fhirpy_raw_data.py b/aidbox-with-python-sdk/fhirpy_raw_data.py index 152c82f3..65896a50 100644 --- a/aidbox-with-python-sdk/fhirpy_raw_data.py +++ b/aidbox-with-python-sdk/fhirpy_raw_data.py @@ -1,6 +1,3 @@ -# ruff: noqa: E402 - - ##################################################################### # Use . Only Runtime From 4fa5e673e189d033ae348e290c2501ad681bd154 Mon Sep 17 00:00:00 2001 From: Aleksandr Penskoi Date: Fri, 13 Dec 2024 17:01:38 +0100 Subject: [PATCH 05/11] Add POC with hand-written resource classes on typed reference --- aidbox-with-python-sdk/.gitignore | 1 + aidbox-with-python-sdk/Makefile | 8 + aidbox-with-python-sdk/poetry.lock | 253 ++++++++++++++++++++- aidbox-with-python-sdk/pyproject.toml | 2 + aidbox-with-python-sdk/type_reference_1.py | 71 ++++++ aidbox-with-python-sdk/type_reference_2.py | 78 +++++++ 6 files changed, 412 insertions(+), 1 deletion(-) create mode 100644 aidbox-with-python-sdk/type_reference_1.py create mode 100644 aidbox-with-python-sdk/type_reference_2.py diff --git a/aidbox-with-python-sdk/.gitignore b/aidbox-with-python-sdk/.gitignore index 0f8ce8b2..c1ea2dd9 100644 --- a/aidbox-with-python-sdk/.gitignore +++ b/aidbox-with-python-sdk/.gitignore @@ -1,3 +1,4 @@ .env tmp/ .ruff_cache +*.pyc diff --git a/aidbox-with-python-sdk/Makefile b/aidbox-with-python-sdk/Makefile index d6da9707..af02b75f 100644 --- a/aidbox-with-python-sdk/Makefile +++ b/aidbox-with-python-sdk/Makefile @@ -7,3 +7,11 @@ format-fix: lint: ruff check + +mypy: + mypy --strict *.py + +pyright: + pyright *.py + +type-check: mypy pyright diff --git a/aidbox-with-python-sdk/poetry.lock b/aidbox-with-python-sdk/poetry.lock index d8735369..caa2f238 100644 --- a/aidbox-with-python-sdk/poetry.lock +++ b/aidbox-with-python-sdk/poetry.lock @@ -122,6 +122,17 @@ files = [ [package.dependencies] frozenlist = ">=1.1.0" +[[package]] +name = "annotated-types" +version = "0.7.0" +description = "Reusable constraint types to use with typing.Annotated" +optional = false +python-versions = ">=3.8" +files = [ + {file = "annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53"}, + {file = "annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89"}, +] + [[package]] name = "attrs" version = "24.2.0" @@ -286,6 +297,20 @@ typing-extensions = "*" [package.extras] test = ["pytest (>=6.2.4)", "pytest-asyncio (>=0.15.1)", "responses (>=0.13.3)"] +[[package]] +name = "fhirpy-types-r4b" +version = "0.1.1" +description = "FHIR R4B pydantic models" +optional = false +python-versions = ">=3.11" +files = [ + {file = "fhirpy_types_r4b-0.1.1-py3-none-any.whl", hash = "sha256:392c7e4b92d4ce2c01f902294c19151c6340f43161e1c8c2287cc060dbc5febc"}, + {file = "fhirpy_types_r4b-0.1.1.tar.gz", hash = "sha256:f80158374688c8a343d8ecbb74155ecd12f9375fa59c2a71de6708b9cad7ab8a"}, +] + +[package.dependencies] +pydantic = ">=2.9.0" + [[package]] name = "frozenlist" version = "1.5.0" @@ -502,6 +527,80 @@ files = [ {file = "multidict-6.1.0.tar.gz", hash = "sha256:22ae2ebf9b0c69d206c003e2f6a914ea33f0a932d4aa16f236afc049d9958f4a"}, ] +[[package]] +name = "mypy" +version = "1.13.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.13.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6607e0f1dd1fb7f0aca14d936d13fd19eba5e17e1cd2a14f808fa5f8f6d8f60a"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a21be69bd26fa81b1f80a61ee7ab05b076c674d9b18fb56239d72e21d9f4c80"}, + {file = "mypy-1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7b2353a44d2179846a096e25691d54d59904559f4232519d420d64da6828a3a7"}, + {file = "mypy-1.13.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0730d1c6a2739d4511dc4253f8274cdd140c55c32dfb0a4cf8b7a43f40abfa6f"}, + {file = "mypy-1.13.0-cp310-cp310-win_amd64.whl", hash = "sha256:c5fc54dbb712ff5e5a0fca797e6e0aa25726c7e72c6a5850cfd2adbc1eb0a372"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:581665e6f3a8a9078f28d5502f4c334c0c8d802ef55ea0e7276a6e409bc0d82d"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3ddb5b9bf82e05cc9a627e84707b528e5c7caaa1c55c69e175abb15a761cec2d"}, + {file = "mypy-1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:20c7ee0bc0d5a9595c46f38beb04201f2620065a93755704e141fcac9f59db2b"}, + {file = "mypy-1.13.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3790ded76f0b34bc9c8ba4def8f919dd6a46db0f5a6610fb994fe8efdd447f73"}, + {file = "mypy-1.13.0-cp311-cp311-win_amd64.whl", hash = "sha256:51f869f4b6b538229c1d1bcc1dd7d119817206e2bc54e8e374b3dfa202defcca"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5c7051a3461ae84dfb5dd15eff5094640c61c5f22257c8b766794e6dd85e72d5"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:39bb21c69a5d6342f4ce526e4584bc5c197fd20a60d14a8624d8743fffb9472e"}, + {file = "mypy-1.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:164f28cb9d6367439031f4c81e84d3ccaa1e19232d9d05d37cb0bd880d3f93c2"}, + {file = "mypy-1.13.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a4c1bfcdbce96ff5d96fc9b08e3831acb30dc44ab02671eca5953eadad07d6d0"}, + {file = "mypy-1.13.0-cp312-cp312-win_amd64.whl", hash = "sha256:a0affb3a79a256b4183ba09811e3577c5163ed06685e4d4b46429a271ba174d2"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a7b44178c9760ce1a43f544e595d35ed61ac2c3de306599fa59b38a6048e1aa7"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5d5092efb8516d08440e36626f0153b5006d4088c1d663d88bf79625af3d1d62"}, + {file = "mypy-1.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:de2904956dac40ced10931ac967ae63c5089bd498542194b436eb097a9f77bc8"}, + {file = "mypy-1.13.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:7bfd8836970d33c2105562650656b6846149374dc8ed77d98424b40b09340ba7"}, + {file = "mypy-1.13.0-cp313-cp313-win_amd64.whl", hash = "sha256:9f73dba9ec77acb86457a8fc04b5239822df0c14a082564737833d2963677dbc"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:100fac22ce82925f676a734af0db922ecfea991e1d7ec0ceb1e115ebe501301a"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7bcb0bb7f42a978bb323a7c88f1081d1b5dee77ca86f4100735a6f541299d8fb"}, + {file = "mypy-1.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bde31fc887c213e223bbfc34328070996061b0833b0a4cfec53745ed61f3519b"}, + {file = "mypy-1.13.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:07de989f89786f62b937851295ed62e51774722e5444a27cecca993fc3f9cd74"}, + {file = "mypy-1.13.0-cp38-cp38-win_amd64.whl", hash = "sha256:4bde84334fbe19bad704b3f5b78c4abd35ff1026f8ba72b29de70dda0916beb6"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0246bcb1b5de7f08f2826451abd947bf656945209b140d16ed317f65a17dc7dc"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7f5b7deae912cf8b77e990b9280f170381fdfbddf61b4ef80927edd813163732"}, + {file = "mypy-1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7029881ec6ffb8bc233a4fa364736789582c738217b133f1b55967115288a2bc"}, + {file = "mypy-1.13.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3e38b980e5681f28f033f3be86b099a247b13c491f14bb8b1e1e134d23bb599d"}, + {file = "mypy-1.13.0-cp39-cp39-win_amd64.whl", hash = "sha256:a6789be98a2017c912ae6ccb77ea553bbaf13d27605d2ca20a76dfbced631b24"}, + {file = "mypy-1.13.0-py3-none-any.whl", hash = "sha256:9c250883f9fd81d212e0952c92dbfcc96fc237f4b7c92f56ac81fd48460b3e5a"}, + {file = "mypy-1.13.0.tar.gz", hash = "sha256:0291a61b6fbf3e6673e3405cfcc0e7650bebc7939659fdca2702958038bd835e"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +typing-extensions = ">=4.6.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +faster-cache = ["orjson"] +install-types = ["pip"] +mypyc = ["setuptools (>=50)"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "nodeenv" +version = "1.9.1" +description = "Node.js virtual environment builder" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9"}, + {file = "nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f"}, +] + [[package]] name = "propcache" version = "0.2.1" @@ -593,6 +692,158 @@ files = [ {file = "propcache-0.2.1.tar.gz", hash = "sha256:3f77ce728b19cb537714499928fe800c3dda29e8d9428778fc7c186da4c09a64"}, ] +[[package]] +name = "pydantic" +version = "2.10.3" +description = "Data validation using Python type hints" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pydantic-2.10.3-py3-none-any.whl", hash = "sha256:be04d85bbc7b65651c5f8e6b9976ed9c6f41782a55524cef079a34a0bb82144d"}, + {file = "pydantic-2.10.3.tar.gz", hash = "sha256:cb5ac360ce894ceacd69c403187900a02c4b20b693a9dd1d643e1effab9eadf9"}, +] + +[package.dependencies] +annotated-types = ">=0.6.0" +pydantic-core = "2.27.1" +typing-extensions = ">=4.12.2" + +[package.extras] +email = ["email-validator (>=2.0.0)"] +timezone = ["tzdata"] + +[[package]] +name = "pydantic-core" +version = "2.27.1" +description = "Core functionality for Pydantic validation and serialization" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pydantic_core-2.27.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:71a5e35c75c021aaf400ac048dacc855f000bdfed91614b4a726f7432f1f3d6a"}, + {file = "pydantic_core-2.27.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f82d068a2d6ecfc6e054726080af69a6764a10015467d7d7b9f66d6ed5afa23b"}, + {file = "pydantic_core-2.27.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:121ceb0e822f79163dd4699e4c54f5ad38b157084d97b34de8b232bcaad70278"}, + {file = "pydantic_core-2.27.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4603137322c18eaf2e06a4495f426aa8d8388940f3c457e7548145011bb68e05"}, + {file = "pydantic_core-2.27.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a33cd6ad9017bbeaa9ed78a2e0752c5e250eafb9534f308e7a5f7849b0b1bfb4"}, + {file = "pydantic_core-2.27.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15cc53a3179ba0fcefe1e3ae50beb2784dede4003ad2dfd24f81bba4b23a454f"}, + {file = "pydantic_core-2.27.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45d9c5eb9273aa50999ad6adc6be5e0ecea7e09dbd0d31bd0c65a55a2592ca08"}, + {file = "pydantic_core-2.27.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8bf7b66ce12a2ac52d16f776b31d16d91033150266eb796967a7e4621707e4f6"}, + {file = "pydantic_core-2.27.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:655d7dd86f26cb15ce8a431036f66ce0318648f8853d709b4167786ec2fa4807"}, + {file = "pydantic_core-2.27.1-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:5556470f1a2157031e676f776c2bc20acd34c1990ca5f7e56f1ebf938b9ab57c"}, + {file = "pydantic_core-2.27.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f69ed81ab24d5a3bd93861c8c4436f54afdf8e8cc421562b0c7504cf3be58206"}, + {file = "pydantic_core-2.27.1-cp310-none-win32.whl", hash = "sha256:f5a823165e6d04ccea61a9f0576f345f8ce40ed533013580e087bd4d7442b52c"}, + {file = "pydantic_core-2.27.1-cp310-none-win_amd64.whl", hash = "sha256:57866a76e0b3823e0b56692d1a0bf722bffb324839bb5b7226a7dbd6c9a40b17"}, + {file = "pydantic_core-2.27.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac3b20653bdbe160febbea8aa6c079d3df19310d50ac314911ed8cc4eb7f8cb8"}, + {file = "pydantic_core-2.27.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a5a8e19d7c707c4cadb8c18f5f60c843052ae83c20fa7d44f41594c644a1d330"}, + {file = "pydantic_core-2.27.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f7059ca8d64fea7f238994c97d91f75965216bcbe5f695bb44f354893f11d52"}, + {file = "pydantic_core-2.27.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bed0f8a0eeea9fb72937ba118f9db0cb7e90773462af7962d382445f3005e5a4"}, + {file = "pydantic_core-2.27.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a3cb37038123447cf0f3ea4c74751f6a9d7afef0eb71aa07bf5f652b5e6a132c"}, + {file = "pydantic_core-2.27.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:84286494f6c5d05243456e04223d5a9417d7f443c3b76065e75001beb26f88de"}, + {file = "pydantic_core-2.27.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:acc07b2cfc5b835444b44a9956846b578d27beeacd4b52e45489e93276241025"}, + {file = "pydantic_core-2.27.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4fefee876e07a6e9aad7a8c8c9f85b0cdbe7df52b8a9552307b09050f7512c7e"}, + {file = "pydantic_core-2.27.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:258c57abf1188926c774a4c94dd29237e77eda19462e5bb901d88adcab6af919"}, + {file = "pydantic_core-2.27.1-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:35c14ac45fcfdf7167ca76cc80b2001205a8d5d16d80524e13508371fb8cdd9c"}, + {file = "pydantic_core-2.27.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d1b26e1dff225c31897696cab7d4f0a315d4c0d9e8666dbffdb28216f3b17fdc"}, + {file = "pydantic_core-2.27.1-cp311-none-win32.whl", hash = "sha256:2cdf7d86886bc6982354862204ae3b2f7f96f21a3eb0ba5ca0ac42c7b38598b9"}, + {file = "pydantic_core-2.27.1-cp311-none-win_amd64.whl", hash = "sha256:3af385b0cee8df3746c3f406f38bcbfdc9041b5c2d5ce3e5fc6637256e60bbc5"}, + {file = "pydantic_core-2.27.1-cp311-none-win_arm64.whl", hash = "sha256:81f2ec23ddc1b476ff96563f2e8d723830b06dceae348ce02914a37cb4e74b89"}, + {file = "pydantic_core-2.27.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:9cbd94fc661d2bab2bc702cddd2d3370bbdcc4cd0f8f57488a81bcce90c7a54f"}, + {file = "pydantic_core-2.27.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5f8c4718cd44ec1580e180cb739713ecda2bdee1341084c1467802a417fe0f02"}, + {file = "pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:15aae984e46de8d376df515f00450d1522077254ef6b7ce189b38ecee7c9677c"}, + {file = "pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1ba5e3963344ff25fc8c40da90f44b0afca8cfd89d12964feb79ac1411a260ac"}, + {file = "pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:992cea5f4f3b29d6b4f7f1726ed8ee46c8331c6b4eed6db5b40134c6fe1768bb"}, + {file = "pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0325336f348dbee6550d129b1627cb8f5351a9dc91aad141ffb96d4937bd9529"}, + {file = "pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7597c07fbd11515f654d6ece3d0e4e5093edc30a436c63142d9a4b8e22f19c35"}, + {file = "pydantic_core-2.27.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3bbd5d8cc692616d5ef6fbbbd50dbec142c7e6ad9beb66b78a96e9c16729b089"}, + {file = "pydantic_core-2.27.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:dc61505e73298a84a2f317255fcc72b710b72980f3a1f670447a21efc88f8381"}, + {file = "pydantic_core-2.27.1-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:e1f735dc43da318cad19b4173dd1ffce1d84aafd6c9b782b3abc04a0d5a6f5bb"}, + {file = "pydantic_core-2.27.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:f4e5658dbffe8843a0f12366a4c2d1c316dbe09bb4dfbdc9d2d9cd6031de8aae"}, + {file = "pydantic_core-2.27.1-cp312-none-win32.whl", hash = "sha256:672ebbe820bb37988c4d136eca2652ee114992d5d41c7e4858cdd90ea94ffe5c"}, + {file = "pydantic_core-2.27.1-cp312-none-win_amd64.whl", hash = "sha256:66ff044fd0bb1768688aecbe28b6190f6e799349221fb0de0e6f4048eca14c16"}, + {file = "pydantic_core-2.27.1-cp312-none-win_arm64.whl", hash = "sha256:9a3b0793b1bbfd4146304e23d90045f2a9b5fd5823aa682665fbdaf2a6c28f3e"}, + {file = "pydantic_core-2.27.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:f216dbce0e60e4d03e0c4353c7023b202d95cbaeff12e5fd2e82ea0a66905073"}, + {file = "pydantic_core-2.27.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a2e02889071850bbfd36b56fd6bc98945e23670773bc7a76657e90e6b6603c08"}, + {file = "pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42b0e23f119b2b456d07ca91b307ae167cc3f6c846a7b169fca5326e32fdc6cf"}, + {file = "pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:764be71193f87d460a03f1f7385a82e226639732214b402f9aa61f0d025f0737"}, + {file = "pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1c00666a3bd2f84920a4e94434f5974d7bbc57e461318d6bb34ce9cdbbc1f6b2"}, + {file = "pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3ccaa88b24eebc0f849ce0a4d09e8a408ec5a94afff395eb69baf868f5183107"}, + {file = "pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c65af9088ac534313e1963443d0ec360bb2b9cba6c2909478d22c2e363d98a51"}, + {file = "pydantic_core-2.27.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:206b5cf6f0c513baffaeae7bd817717140770c74528f3e4c3e1cec7871ddd61a"}, + {file = "pydantic_core-2.27.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:062f60e512fc7fff8b8a9d680ff0ddaaef0193dba9fa83e679c0c5f5fbd018bc"}, + {file = "pydantic_core-2.27.1-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:a0697803ed7d4af5e4c1adf1670af078f8fcab7a86350e969f454daf598c4960"}, + {file = "pydantic_core-2.27.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:58ca98a950171f3151c603aeea9303ef6c235f692fe555e883591103da709b23"}, + {file = "pydantic_core-2.27.1-cp313-none-win32.whl", hash = "sha256:8065914ff79f7eab1599bd80406681f0ad08f8e47c880f17b416c9f8f7a26d05"}, + {file = "pydantic_core-2.27.1-cp313-none-win_amd64.whl", hash = "sha256:ba630d5e3db74c79300d9a5bdaaf6200172b107f263c98a0539eeecb857b2337"}, + {file = "pydantic_core-2.27.1-cp313-none-win_arm64.whl", hash = "sha256:45cf8588c066860b623cd11c4ba687f8d7175d5f7ef65f7129df8a394c502de5"}, + {file = "pydantic_core-2.27.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:5897bec80a09b4084aee23f9b73a9477a46c3304ad1d2d07acca19723fb1de62"}, + {file = "pydantic_core-2.27.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d0165ab2914379bd56908c02294ed8405c252250668ebcb438a55494c69f44ab"}, + {file = "pydantic_core-2.27.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b9af86e1d8e4cfc82c2022bfaa6f459381a50b94a29e95dcdda8442d6d83864"}, + {file = "pydantic_core-2.27.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f6c8a66741c5f5447e047ab0ba7a1c61d1e95580d64bce852e3df1f895c4067"}, + {file = "pydantic_core-2.27.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9a42d6a8156ff78981f8aa56eb6394114e0dedb217cf8b729f438f643608cbcd"}, + {file = "pydantic_core-2.27.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:64c65f40b4cd8b0e049a8edde07e38b476da7e3aaebe63287c899d2cff253fa5"}, + {file = "pydantic_core-2.27.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fdcf339322a3fae5cbd504edcefddd5a50d9ee00d968696846f089b4432cf78"}, + {file = "pydantic_core-2.27.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf99c8404f008750c846cb4ac4667b798a9f7de673ff719d705d9b2d6de49c5f"}, + {file = "pydantic_core-2.27.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8f1edcea27918d748c7e5e4d917297b2a0ab80cad10f86631e488b7cddf76a36"}, + {file = "pydantic_core-2.27.1-cp38-cp38-musllinux_1_1_armv7l.whl", hash = "sha256:159cac0a3d096f79ab6a44d77a961917219707e2a130739c64d4dd46281f5c2a"}, + {file = "pydantic_core-2.27.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:029d9757eb621cc6e1848fa0b0310310de7301057f623985698ed7ebb014391b"}, + {file = "pydantic_core-2.27.1-cp38-none-win32.whl", hash = "sha256:a28af0695a45f7060e6f9b7092558a928a28553366519f64083c63a44f70e618"}, + {file = "pydantic_core-2.27.1-cp38-none-win_amd64.whl", hash = "sha256:2d4567c850905d5eaaed2f7a404e61012a51caf288292e016360aa2b96ff38d4"}, + {file = "pydantic_core-2.27.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:e9386266798d64eeb19dd3677051f5705bf873e98e15897ddb7d76f477131967"}, + {file = "pydantic_core-2.27.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4228b5b646caa73f119b1ae756216b59cc6e2267201c27d3912b592c5e323b60"}, + {file = "pydantic_core-2.27.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b3dfe500de26c52abe0477dde16192ac39c98f05bf2d80e76102d394bd13854"}, + {file = "pydantic_core-2.27.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:aee66be87825cdf72ac64cb03ad4c15ffef4143dbf5c113f64a5ff4f81477bf9"}, + {file = "pydantic_core-2.27.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b748c44bb9f53031c8cbc99a8a061bc181c1000c60a30f55393b6e9c45cc5bd"}, + {file = "pydantic_core-2.27.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ca038c7f6a0afd0b2448941b6ef9d5e1949e999f9e5517692eb6da58e9d44be"}, + {file = "pydantic_core-2.27.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e0bd57539da59a3e4671b90a502da9a28c72322a4f17866ba3ac63a82c4498e"}, + {file = "pydantic_core-2.27.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ac6c2c45c847bbf8f91930d88716a0fb924b51e0c6dad329b793d670ec5db792"}, + {file = "pydantic_core-2.27.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b94d4ba43739bbe8b0ce4262bcc3b7b9f31459ad120fb595627eaeb7f9b9ca01"}, + {file = "pydantic_core-2.27.1-cp39-cp39-musllinux_1_1_armv7l.whl", hash = "sha256:00e6424f4b26fe82d44577b4c842d7df97c20be6439e8e685d0d715feceb9fb9"}, + {file = "pydantic_core-2.27.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:38de0a70160dd97540335b7ad3a74571b24f1dc3ed33f815f0880682e6880131"}, + {file = "pydantic_core-2.27.1-cp39-none-win32.whl", hash = "sha256:7ccebf51efc61634f6c2344da73e366c75e735960b5654b63d7e6f69a5885fa3"}, + {file = "pydantic_core-2.27.1-cp39-none-win_amd64.whl", hash = "sha256:a57847b090d7892f123726202b7daa20df6694cbd583b67a592e856bff603d6c"}, + {file = "pydantic_core-2.27.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3fa80ac2bd5856580e242dbc202db873c60a01b20309c8319b5c5986fbe53ce6"}, + {file = "pydantic_core-2.27.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d950caa237bb1954f1b8c9227b5065ba6875ac9771bb8ec790d956a699b78676"}, + {file = "pydantic_core-2.27.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e4216e64d203e39c62df627aa882f02a2438d18a5f21d7f721621f7a5d3611d"}, + {file = "pydantic_core-2.27.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:02a3d637bd387c41d46b002f0e49c52642281edacd2740e5a42f7017feea3f2c"}, + {file = "pydantic_core-2.27.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:161c27ccce13b6b0c8689418da3885d3220ed2eae2ea5e9b2f7f3d48f1d52c27"}, + {file = "pydantic_core-2.27.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:19910754e4cc9c63bc1c7f6d73aa1cfee82f42007e407c0f413695c2f7ed777f"}, + {file = "pydantic_core-2.27.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:e173486019cc283dc9778315fa29a363579372fe67045e971e89b6365cc035ed"}, + {file = "pydantic_core-2.27.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:af52d26579b308921b73b956153066481f064875140ccd1dfd4e77db89dbb12f"}, + {file = "pydantic_core-2.27.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:981fb88516bd1ae8b0cbbd2034678a39dedc98752f264ac9bc5839d3923fa04c"}, + {file = "pydantic_core-2.27.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5fde892e6c697ce3e30c61b239330fc5d569a71fefd4eb6512fc6caec9dd9e2f"}, + {file = "pydantic_core-2.27.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:816f5aa087094099fff7edabb5e01cc370eb21aa1a1d44fe2d2aefdfb5599b31"}, + {file = "pydantic_core-2.27.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c10c309e18e443ddb108f0ef64e8729363adbfd92d6d57beec680f6261556f3"}, + {file = "pydantic_core-2.27.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98476c98b02c8e9b2eec76ac4156fd006628b1b2d0ef27e548ffa978393fd154"}, + {file = "pydantic_core-2.27.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c3027001c28434e7ca5a6e1e527487051136aa81803ac812be51802150d880dd"}, + {file = "pydantic_core-2.27.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:7699b1df36a48169cdebda7ab5a2bac265204003f153b4bd17276153d997670a"}, + {file = "pydantic_core-2.27.1-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:1c39b07d90be6b48968ddc8c19e7585052088fd7ec8d568bb31ff64c70ae3c97"}, + {file = "pydantic_core-2.27.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:46ccfe3032b3915586e469d4972973f893c0a2bb65669194a5bdea9bacc088c2"}, + {file = "pydantic_core-2.27.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:62ba45e21cf6571d7f716d903b5b7b6d2617e2d5d67c0923dc47b9d41369f840"}, + {file = "pydantic_core-2.27.1.tar.gz", hash = "sha256:62a763352879b84aa31058fc931884055fd75089cccbd9d58bb6afd01141b235"}, +] + +[package.dependencies] +typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" + +[[package]] +name = "pyright" +version = "1.1.390" +description = "Command line wrapper for pyright" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pyright-1.1.390-py3-none-any.whl", hash = "sha256:ecebfba5b6b50af7c1a44c2ba144ba2ab542c227eb49bc1f16984ff714e0e110"}, + {file = "pyright-1.1.390.tar.gz", hash = "sha256:aad7f160c49e0fbf8209507a15e17b781f63a86a1facb69ca877c71ef2e9538d"}, +] + +[package.dependencies] +nodeenv = ">=1.6.0" +typing-extensions = ">=4.1" + +[package.extras] +all = ["nodejs-wheel-binaries", "twine (>=3.4.1)"] +dev = ["twine (>=3.4.1)"] +nodejs = ["nodejs-wheel-binaries"] + [[package]] name = "pytz" version = "2024.2" @@ -779,4 +1030,4 @@ propcache = ">=0.2.0" [metadata] lock-version = "2.0" python-versions = "3.13" -content-hash = "cab90358cb32f9b764e0f176ebaced974a6a2cfb5b36d01dfd65538b3bac0c90" +content-hash = "9abe614f8fa9c7332a9e9c73cfed917da382fb6bd2249a7903c7483a047c0ec8" diff --git a/aidbox-with-python-sdk/pyproject.toml b/aidbox-with-python-sdk/pyproject.toml index 330105d6..4b2a4805 100644 --- a/aidbox-with-python-sdk/pyproject.toml +++ b/aidbox-with-python-sdk/pyproject.toml @@ -12,6 +12,8 @@ fhirpy-types-r4b = "0.1.1" [tool.poetry.group.dev.dependencies] ruff = "^0.8.2" +mypy = "^1.13.0" +pyright = "^1.1.390" [build-system] requires = ["poetry-core"] diff --git a/aidbox-with-python-sdk/type_reference_1.py b/aidbox-with-python-sdk/type_reference_1.py new file mode 100644 index 00000000..e006dcb2 --- /dev/null +++ b/aidbox-with-python-sdk/type_reference_1.py @@ -0,0 +1,71 @@ +##################################################################### +# Resource classes example with typed reference. Classes for references. + +from __future__ import annotations + +from dataclasses import dataclass, asdict, InitVar +from typing import Optional +from typing_extensions import Any +from fhirpy.base.resource_protocol import ResourceProtocol + + +@dataclass +class Meta: + lastUpdated: Optional[str] + createdAt: Optional[str] + versionId: Optional[str] + + +@dataclass +class Base(ResourceProtocol, dict[Any, Any]): + id: Optional[str] = None + meta: Optional[Meta] = None + + +@dataclass +class Organization(Base): + resourceType: str = "Organization" + name: Optional[str] = None + + def reference(self) -> OrganizationRef: + assert self.id is not None + return OrganizationRef(reference_id=self.id) + + +@dataclass +class Reference(Base): + resourceType: str = "Reference" + + +# need kw_only because can't provide default values for some fields +@dataclass(kw_only=True) +class OrganizationRef(Reference): + reference_id: InitVar[str] + reference: str | None = None # should be initialized in __post_init__ + + def __post_init__(self, reference_id: str) -> None: + self.reference = f"Organization/{reference_id}" + + +@dataclass +class Patient(Base): + resourceType: str = "Patient" + managingOrganization: Optional[OrganizationRef] = None + + +print("------------------------------------------") +org1 = Organization(id="org1", name="org1") +print("org1", asdict(org1)) + +print("------------------------------------------") +assert org1.id is not None +org1_ref = OrganizationRef(reference_id=org1.id) +print("org1_ref", asdict(org1_ref)) + +print("------------------------------------------") +pt1 = Patient(id="pt-1", managingOrganization=org1_ref) +print(asdict(pt1)) + +print("------------------------------------------") +pt2 = Patient(id="pt-2", managingOrganization=org1.reference()) +print(asdict(pt2)) diff --git a/aidbox-with-python-sdk/type_reference_2.py b/aidbox-with-python-sdk/type_reference_2.py new file mode 100644 index 00000000..2290d625 --- /dev/null +++ b/aidbox-with-python-sdk/type_reference_2.py @@ -0,0 +1,78 @@ +##################################################################### +# Resource classes example with typed reference. Generic + +from __future__ import annotations + +from dataclasses import dataclass, InitVar, asdict +from typing import Optional +from typing_extensions import Any + +from fhirpy.base.resource_protocol import ResourceProtocol + + +@dataclass +class Meta: + lastUpdated: Optional[str] + createdAt: Optional[str] + versionId: Optional[str] + + +@dataclass +class Base(ResourceProtocol, dict[Any, Any]): + id: Optional[str] = None + meta: Optional[Meta] = None + + +@dataclass(kw_only=True) +class Reference[T](Base): + resourceType: str = "Reference" + reference_id: InitVar[str] + reference: str | None = None # should be initialized in __post_init__ + + def __post_init__(self, reference_id: str) -> None: + self.reference = f"Organization/{reference_id}" + + +@dataclass +class Organization(Base): + resourceType: str = "Organization" + name: Optional[str] = None + + def reference(self) -> Reference[Organization]: + assert self.id is not None + return Reference[Organization](reference_id=self.id) + + +@dataclass +class Patient(Base): + resourceType: str = "Patient" + managingOrganization: Optional[Reference[Organization]] = None + + +print("------------------------------------------") +org1 = Organization(id="org1", name="org1") +print("org1", asdict(org1)) + +print("------------------------------------------") +assert org1.id is not None +org1_ref = Reference[Organization](reference_id=org1.id) +print("org1_ref", asdict(org1_ref)) + +print("------------------------------------------") +pt1 = Patient(id="pt-1", managingOrganization=org1_ref) +print(asdict(pt1)) + +print("------------------------------------------") +pt2 = Patient(id="pt-2", managingOrganization=org1.reference()) +print(asdict(pt2)) + + +# Problem: + +# type_reference_2.py:27: error: Signature of "__replace__" incompatible with supertype "Base" [override] +# type_reference_2.py:27: note: Superclass: +# type_reference_2.py:27: note: def __replace__(*, id: str | None = ..., meta: Meta | None = ...) -> Base +# type_reference_2.py:27: note: Subclass: +# type_reference_2.py:27: note: def __replace__(*, id: str | None = ..., meta: Meta | None = ..., resourceType: str = ..., reference_id: str, reference: str | None = ...) -> Reference[T] + +# Don't looks like a real problem, but should be fixed. From 033a514654698bcabf55659bfe94a8bc6343597e Mon Sep 17 00:00:00 2001 From: Vitaly Kravtsov Date: Fri, 20 Dec 2024 19:36:54 +0600 Subject: [PATCH 06/11] add README for python sdk example --- aidbox-with-python-sdk/README.md | 214 ++++++++++++++++++++++++++++++- 1 file changed, 212 insertions(+), 2 deletions(-) diff --git a/aidbox-with-python-sdk/README.md b/aidbox-with-python-sdk/README.md index f1a8d756..fef59b13 100644 --- a/aidbox-with-python-sdk/README.md +++ b/aidbox-with-python-sdk/README.md @@ -1,9 +1,219 @@ # Python SDK Example + +This example shows how to use the [fhir-py client](https://github.com/beda-software/fhir-py "fhir-py") with an Aidbox instance, demonstrating the Python SDK client in action. + +Here, we provide several options for using the fhir-py SDK, including basic usage and advanced typing features. The examples start with the simplest solution, which does not include typings, and incrementally incorporate features related to typings. + + + +## Setting up Aidbox Instance + +Let's run an Aidbox instance on your computer. + ``` shell cp .env.tpt .env # manually add license to .env docker compose up -poetry shell -python3 main.py ``` + + + +## Using fhir-py Client with Raw Data + +#### Installation + +Create new python project and add fhir-py client to your dependencies + +``` shell +poetry add fhirpy@2.0.15 +``` + +*Note that this example uses `SyncFHIRClient`. However, you can also use `AsyncFHIRClient``. For more details, refer to the [fhir-py's documentation](https://github.com/beda-software/fhir-py/README.md)* + +#### Example + +This is a basic example demonstrating the creation of a new patient. Refer to the example files in each section for more detailed examples. + +``` python +from fhirpy import SyncFHIRClient + +# create FHIR client instance +client = SyncFHIRClient( + url="http://localhost:8888/", + authorization="Basic cm9vdDpzZWNyZXQ=" +) + +# create patient resource +patient = client.resource( + "Patient", + name=[ + { + "given": ["Sam"], + "family": "Brown", + } + ], + gender="male", +) + +# save patient resource +patient.save() +``` + +#### Detailed example + +For a more detailed example of how to use fhir-py client with raw data, including working code snippets, check out the [fhirpy_raw_data.py](fhirpy_raw_data.py) + + + +## Option 1. Write Custom Data Models for fhir-py Client + +Fhir-py client allows you to write and use [custom data models](https://github.com/beda-software/fhir-py?tab=readme-ov-file#data-models). The following example demonstrates how custom data models can be defined and used in your project. + +This option is offered primarily for educational purposes, to showcase possibilities and improve general understanding. However, we discourage using this method for manually defining data models, as it is both error-prone and cumbersome. + +#### Requirements + +Data model classes need to meet two requirements: + +- Be iterable +- Implement ResourceProtocol interface + +#### Example + + +``` python +from dataclasses import dataclass, field, asdict +from typing import Optional + +from fhirpy import SyncFHIRClient +from fhirpy.base.resource_protocol import ResourceProtocol + +# create FHIR client instance +client = SyncFHIRClient( + url="http://localhost:8888/", + authorization="Basic cm9vdDpzZWNyZXQ=" + dump_resource=asdict +) + +@dataclass +class Base(ResourceProtocol, dict): + id: Optional[str] = None + meta: Optional[Meta] = None + +@dataclass +class Patient(Base): + resourceType: str = "Patient" + active: Optional[bool] = None + gender: Optional[str] = None + +# create patient resource +patient = Patient(active=True, gender="unknown") + +# save patient resource +client.save(patient) +``` + +#### Detailed example + +For a more detailed example of how to write custom data models and use them in fhir-py client, check out the [fhirpy_custom_models.py](fhirpy_custom_models.py) + + + +## Option 2. Using fhir-py-types + +In this example, we demonstrate how to use data models generated by [fhir-py-types generator](https://github.com/beda-software/fhir-py-types "fhir-py-types"), which simplifies working with data models by providing ready-to-use, pre-defined structures aligned with FHIR specifications. + +The simplest option to get pre-defined data models is install ready-to-use `fhirpy-types-r4b` or `fhirpy-types-r5` data model sets from PyPi. + +#### Installation + +``` shell +poetry add fhirpy-types-r4b@0.1.1 +``` + +#### Example + +``` python +from pydantic import BaseModel +from fhirpy import SyncFHIRClient +from fhirpy_types_r4b import HumanName, Patient + +# create FHIR client instance +client = SyncFHIRClient( + url="http://localhost:8888/", + authorization="Basic cm9vdDpzZWNyZXQ=", + dump_resource=BaseModel.model_dump +) + +# create patient resource +patient = Patient( + name=[ + HumanName( + given=["Sam"], + family="Brown") + ], + gender="unknown" +) + +# save patient resource +client.save(patient) +``` + +#### Detailed example + +For a more detailed example of how to use `fhirpy-types-r4b` in fhir-py client, check out the [fhirpy_fhirtypes.py](fhirpy_fhirtypes.py) + + + +## Option 3. Using Types Generated by fhir-schema-codegen + +Use data models generated by [fhir-schema-codegen](https://github.com/fhir-schema/fhir-schema-codegen). + +#### Installation + +```shell +# install fhir-schema-codegen +npm install -g @fhirschema/codegen + +# generate FHIR data models +fscg generate --generator python --output generated --package hl7.fhir.r4.core:4.0.1 +``` + +#### Example + + +``` python +from typing import List, Optional + +from pydantic import BaseModel +from fhirpy import SyncFHIRClient + +from utils import read_csv_as_dict, now +from generated.patient import Patient, HumanName + +# create FHIR client instance +client = SyncFHIRClient( + url="http://localhost:8888/", + authorization="Basic cm9vdDpzZWNyZXQ=", + dump_resource=BaseModel.model_dump +) + +# create patient resource +patient = Patient( + name=[ + HumanName( + given=["Sam"], + family="Brown" + ) + ], + gender="unknown" +) + +# save patient resource +client.create(patient) +``` + +#### Detailed Example + +For a more detailed example of how to use `fhir-schema-codegen` generated data models in fhir-py client, check out the [fhirpy_fhir_schema_codegen.py](fhirpy_fhir_schema_codegen.py) \ No newline at end of file From 481ec9ca858c0de275df3ad9194ae13bf5ad442f Mon Sep 17 00:00:00 2001 From: Vitaly Kravtsov Date: Fri, 20 Dec 2024 19:37:52 +0600 Subject: [PATCH 07/11] add aidbox python client to main README file --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8e1759fd..b76c6586 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ A collection of examples on top of Aidbox FHIR platform - [Aidbox Notify via Custom Resources](aidbox-notify-via-custom-resources/) - [Topic-Based Subscription to Kafka](aidbox-subscriptions-to-kafka/) - [SMART App Launch with Aidbox and Keycloak](smart-app-launch/) +- [Aidbox Python Client](aidbox-with-python-sdk/) ## Documentation From a9fd2f66e8e94e0a37d97fa48750ff2d815df1ba Mon Sep 17 00:00:00 2001 From: Vitaly Kravtsov Date: Fri, 20 Dec 2024 20:12:25 +0600 Subject: [PATCH 08/11] elaborate on using fhir-schema-codegen with python client --- aidbox-with-python-sdk/README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/aidbox-with-python-sdk/README.md b/aidbox-with-python-sdk/README.md index fef59b13..16bc67e0 100644 --- a/aidbox-with-python-sdk/README.md +++ b/aidbox-with-python-sdk/README.md @@ -168,18 +168,24 @@ For a more detailed example of how to use `fhirpy-types-r4b` in fhir-py client, ## Option 3. Using Types Generated by fhir-schema-codegen -Use data models generated by [fhir-schema-codegen](https://github.com/fhir-schema/fhir-schema-codegen). +Another option for obtaining ready-to-use data models aligned with FHIR specification is to use data models generated by [fhir-schema-codegen](https://github.com/fhir-schema/fhir-schema-codegen). -#### Installation +At the first step you'll need to install generator ```shell # install fhir-schema-codegen npm install -g @fhirschema/codegen +``` + Then use it for generating python classes. + +```sh # generate FHIR data models fscg generate --generator python --output generated --package hl7.fhir.r4.core:4.0.1 ``` +After running the generation command, you'll see a new `generated` directory that contains the data models. + #### Example From 77fa16643b1e9921864724bcc4d4e12f2aa00332 Mon Sep 17 00:00:00 2001 From: Vitaly Kravtsov Date: Mon, 23 Dec 2024 22:19:50 +0600 Subject: [PATCH 09/11] add python example with fhir-schema-codegen --- .../fhirpy_fhir_schema_codegen.py | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 aidbox-with-python-sdk/fhirpy_fhir_schema_codegen.py diff --git a/aidbox-with-python-sdk/fhirpy_fhir_schema_codegen.py b/aidbox-with-python-sdk/fhirpy_fhir_schema_codegen.py new file mode 100644 index 00000000..1f483544 --- /dev/null +++ b/aidbox-with-python-sdk/fhirpy_fhir_schema_codegen.py @@ -0,0 +1,59 @@ +##################################################################### +# Use + + +from dataclasses import dataclass, field, asdict +from typing import List, Optional + +from pydantic import BaseModel +from fhirpy import SyncFHIRClient + +from utils import read_csv_as_dict, now + +from generated.hl7_fhir_r4_core.base import * +from generated.hl7_fhir_r4_core.observation import Observation +from generated.hl7_fhir_r4_core.patient import Patient + +def import_data(client, file_path): + raw_data = read_csv_as_dict(file_path) + for item in raw_data: + patient_to_update = Patient( + name=[ + HumanName( + given=[item['given']], + family=item['family']) + ], + gender=item['gender'] + ) + patient, is_created = ( + client + .resources(Patient) + .search(given=item["given"], + family=item["family"]) + .update(patient_to_update) + ) + + print( + f"Patient {item['given']} {item['family']} {'created' if is_created else 'updated'}. Id: {patient.id}" + ) + + new_observation = Observation( + status="final", + code=CodeableConcept(text='Body weight'), + subject=Reference(reference=f"Patient/{patient.id}"), + valueQuantity=Quantity(value=int(item["weight"]), unit='kg'), + effectiveDateTime=now(), + ) + observation = client.create(new_observation) + print( + f"Observation for {item['given']} {item['family']} created. Id: {observation.id}" + ) + + +client = SyncFHIRClient( + url="http://localhost:8888/", + authorization="Basic cm9vdDpzZWNyZXQ=", + dump_resource=BaseModel.model_dump +) + +import_data(client, "data/patients.csv") From 8c3bf7e6319c593cd4f703f8ed85c1b1b8be1302 Mon Sep 17 00:00:00 2001 From: Vitaly Kravtsov Date: Tue, 14 Jan 2025 14:56:28 +0600 Subject: [PATCH 10/11] Enhance explanations Co-authored-by: Aleksandr Penskoi --- aidbox-with-python-sdk/README.md | 34 ++++++++++++++++---------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/aidbox-with-python-sdk/README.md b/aidbox-with-python-sdk/README.md index 16bc67e0..950f9e87 100644 --- a/aidbox-with-python-sdk/README.md +++ b/aidbox-with-python-sdk/README.md @@ -3,7 +3,15 @@ This example shows how to use the [fhir-py client](https://github.com/beda-software/fhir-py "fhir-py") with an Aidbox instance, demonstrating the Python SDK client in action. -Here, we provide several options for using the fhir-py SDK, including basic usage and advanced typing features. The examples start with the simplest solution, which does not include typings, and incrementally incorporate features related to typings. +In the example we demonstrate a several ways to implement import patient data from CSV file in Python. We describe it in the following steps: + +1. Setup Aidbox Instance +1. Install [fhir-py](https://github.com/beda-software/fhir-py). +1. Use [fhir-py](https://github.com/beda-software/fhir-py): + 1. with raw data (dictionaries and lists), + 1. with manually defined dataclasses for FHIR Resources, + 1. with generated dataclasses for FHIR Resources by [fhir-py-types](https://github.com/beda-software/fhir-py-types) from StructureDefinitions + 1. (recommended) with generated dataclasses for FHIR Resources by [fhir-schema-codegen](https://github.com/fhir-schema/fhir-schema-codegen) from FHIR Schemas. @@ -60,9 +68,7 @@ patient = client.resource( patient.save() ``` -#### Detailed example - -For a more detailed example of how to use fhir-py client with raw data, including working code snippets, check out the [fhirpy_raw_data.py](fhirpy_raw_data.py) +See full CSV import example: [fhirpy_raw_data.py](fhirpy_raw_data.py) @@ -76,8 +82,10 @@ This option is offered primarily for educational purposes, to showcase possibili Data model classes need to meet two requirements: -- Be iterable -- Implement ResourceProtocol interface +- Be iterable (implemented by inheritance from `dict`). +- Implement `ResourceProtocol` interface (defined in fhir-py). + +Usage dataclasses for FHIR Resource representation allow programmers to use autocomplete and type checking. This approach allows user to have full control (including custom validations and hiding unused resource elements) but requires to write a lot of boilerplate code. #### Example @@ -114,9 +122,7 @@ patient = Patient(active=True, gender="unknown") client.save(patient) ``` -#### Detailed example - -For a more detailed example of how to write custom data models and use them in fhir-py client, check out the [fhirpy_custom_models.py](fhirpy_custom_models.py) +See full CSV import example: [fhirpy_custom_models.py](fhirpy_custom_models.py) @@ -160,11 +166,7 @@ patient = Patient( client.save(patient) ``` -#### Detailed example - -For a more detailed example of how to use `fhirpy-types-r4b` in fhir-py client, check out the [fhirpy_fhirtypes.py](fhirpy_fhirtypes.py) - - +See CSV import example: [fhirpy_fhirtypes.py](fhirpy_fhirtypes.py) ## Option 3. Using Types Generated by fhir-schema-codegen @@ -220,6 +222,4 @@ patient = Patient( client.create(patient) ``` -#### Detailed Example - -For a more detailed example of how to use `fhir-schema-codegen` generated data models in fhir-py client, check out the [fhirpy_fhir_schema_codegen.py](fhirpy_fhir_schema_codegen.py) \ No newline at end of file +See full CSV import example: [fhirpy_fhir_schema_codegen.py](fhirpy_fhir_schema_codegen.py) \ No newline at end of file From 087115b321648393247d30ebe62449726dc1b56f Mon Sep 17 00:00:00 2001 From: Vitaly Kravtsov Date: Tue, 14 Jan 2025 18:16:59 +0600 Subject: [PATCH 11/11] update doc strings and organize imports --- aidbox-with-python-sdk/fhirpy_custom_models.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/aidbox-with-python-sdk/fhirpy_custom_models.py b/aidbox-with-python-sdk/fhirpy_custom_models.py index 94919a5d..f3440c8e 100644 --- a/aidbox-with-python-sdk/fhirpy_custom_models.py +++ b/aidbox-with-python-sdk/fhirpy_custom_models.py @@ -1,10 +1,9 @@ ##################################################################### -# Use . With custom data models +# Write custom data models for fhir-py Client -from dataclasses import dataclass, field +from dataclasses import dataclass, field, asdict from typing import List, Optional -from dataclasses import asdict from fhirpy import SyncFHIRClient from fhirpy.base.resource_protocol import ResourceProtocol