04:37:27.583 | info | http.request | {
"svelte": {
"route": {
"id": "/(frontend)/[[_country]]/user/[userId=integer]-[[userSlug]]"
},
"params": {
"_country": "us",
"userId": "324290",
"userSlug": "walton-christof"
},
"clientAddress": "216.73.216.148",
"isDataRequest": false,
"isSubRequest": false
},
"http": {
"request": {
"id": "o6IBFbVmJ8dvKhf7be4B",
"method": "GET",
"bytes": null,
"mime_type": null,
"referrer": null,
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, br, zstd, deflate",
"connection": "close",
"cookie": "goafrica-ad-id=689aa8daa39529.64896850; PHPSESSID=be7a674b9dce8fc4324c6b17642cc91b; GOAFRICA_NEXT_SESSION_ID=XCI3fauZzCdpPzkh8MK5V66jscQuOvIeW1aTd7Tc",
"host": "www.goa.goafrica.syazen.cloud",
"user-agent": "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)",
"x-forwarded-for": "216.73.216.148",
"x-real-ip": "216.73.216.148",
"x-scheme": "https"
}
}
},
"user_agent": {
"original": "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
},
"url": {
"full": "https://www.goa.goafrica.syazen.cloud/us/user/324290-walton-christof",
"original": "https://www.goa.goafrica.syazen.cloud/us/user/324290-walton-christof",
"path": "/us/user/324290-walton-christof",
"domain": "www.goa.goafrica.syazen.cloud",
"port": null,
"username": null,
"query": null,
"scheme": "https"
},
"profiling": {
"memoryUsage": 288493568,
"memoryUsageHuman": "275.1 MiB"
}
} |
---|
04:37:27.589 | debug | kysely.query | {
"kysely": {
"sql": "select `id` from `cms_post` where `cms_post`.`slug` = ? limit ?",
"parameters": [
"questions-go-africa",
1
],
"durationInMs": 0.2798480000346899
}
} |
---|
04:37:27.589 | debug | kysely.query | {
"kysely": {
"sql": "select count(*) as `count` from `cms_post` where `online` = ? and JSON_CONTAINS(`countries`, JSON_ARRAY(?)) = ?",
"parameters": [
1,
"US",
true
],
"durationInMs": 0.4163699997588992
}
} |
---|
04:37:27.589 | debug | kysely.query | {
"kysely": {
"sql": "select * from `cms_post` as `o` where `o`.`id` in (?)",
"parameters": [
36
],
"durationInMs": 0.3091820003464818
}
} |
---|
04:37:27.591 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user` where `user`.`id` in (?)",
"parameters": [
324290
],
"durationInMs": 2.376054000109434
}
} |
---|
04:37:27.595 | debug | kysely.query | {
"kysely": {
"sql": "select `id` from `portfolio_media` where `user_id` = ? order by `rank` asc",
"parameters": [
324290
],
"durationInMs": 1.4578760005533695
}
} |
---|
04:37:27.596 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, count(`id`) as `portfolio_medias_count` from `portfolio_media` where `user_id` = ? group by `user_id`",
"parameters": [
324290
],
"durationInMs": 1.6527660004794598
}
} |
---|
04:37:27.596 | debug | kysely.query | {
"kysely": {
"sql": "select * from `feed_post` where `user_author_id` = ? and (`feed_post`.`pending_publication_date` is null or `feed_post`.`pending_publication_date` < UTC_TIMESTAMP()) order by `created_date` desc limit ?",
"parameters": [
324290,
2
],
"durationInMs": 1.6238029999658465
}
} |
---|
04:37:27.596 | debug | kysely.query | {
"kysely": {
"sql": "select * from `following` where `author_id` = ? order by `date` desc",
"parameters": [
324290
],
"durationInMs": 1.8675539996474981
}
} |
---|
04:37:27.596 | debug | kysely.query | {
"kysely": {
"sql": "with `threads_with_me`(`thread_id`) as (select distinct `tu`.`inbox_thread_id` as `thread_id` from `inbox_thread_user` as `tu` inner join `inbox_thread` as `t` on `t`.`id` = `tu`.`inbox_thread_id` where `tu`.`user_id` = ? and `t`.`user_creator_id` != ?), `threads_with_response`(`thread_id`) as (select `t`.`thread_id` from `threads_with_me` as `t` where exists (select * from `inbox_message` as `m` where `m`.`user_author_id` = ? and `m`.`thread_id` = `t`.`thread_id`)) select count(*) as `total`, (select count(*) as `resp` from `threads_with_response`) as `resp` from `threads_with_me` as `t` limit ?",
"parameters": [
324290,
324290,
324290,
1
],
"durationInMs": 2.5009440006688237
}
} |
---|
04:37:27.597 | debug | kysely.query | {
"kysely": {
"sql": "with `threads_with_me`(`thread_id`, `created_date`) as (select distinct `tu`.`inbox_thread_id` as `thread_id`, `t`.`created_date` from `inbox_thread_user` as `tu` inner join `inbox_thread` as `t` on `t`.`id` = `tu`.`inbox_thread_id` where `tu`.`user_id` = ? and `t`.`user_creator_id` != ?), `threads_delay`(`thread_id`, `delay`) as (select `t`.`thread_id`, (select TIMESTAMPDIFF(MINUTE, `t`.`created_date`, `m`.`created_date`) as `delay` from `inbox_message` as `m` where `m`.`user_author_id` = ? and `m`.`thread_id` = `t`.`thread_id` and `m`.`id` = (select min(`id`) as `id` from `inbox_message` where `inbox_message`.`thread_id` = `t`.`thread_id` and `inbox_message`.`user_author_id` = ?)) as `delay` from `threads_with_me` as `t`), `delays_filtered`(`thread_id`, `delay`) as (select * from `threads_delay` where `delay` is not null and `delay` < (select `delay` from `threads_delay` where `delay` is not null order by `delay` desc limit ?)) select avg(`t`.`delay`) as `mean` from `delays_filtered` as `t` limit ?",
"parameters": [
324290,
324290,
324290,
324290,
1,
1
],
"durationInMs": 2.621307000517845
}
} |
---|
04:37:27.597 | debug | kysely.query | {
"kysely": {
"sql": "select `user_author_id`, count(`id`) as `count` from `feed_post` where (`company_author_id` is null and `user_author_id` in (?)) group by `user_author_id`",
"parameters": [
324290
],
"durationInMs": 1.8008500002324581
}
} |
---|
04:37:27.597 | debug | kysely.query | {
"kysely": {
"sql": "select `target_user_id`, count(`id`) as `count` from `following` where (`target_company_id` is null and `target_user_id` in (?)) group by `target_user_id`",
"parameters": [
324290
],
"durationInMs": 1.8722520004957914
}
} |
---|
04:37:27.597 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `status` from `user_job_status` where `user_id` in (?)",
"parameters": [
324290
],
"durationInMs": 1.9644719995558262
}
} |
---|
04:37:27.597 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `category_id` from `user_interested_category` where `user_id` in (?)",
"parameters": [
324290
],
"durationInMs": 2.0745660001412034
}
} |
---|
04:37:27.597 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_resume` where `user_id` in (?)",
"parameters": [
324290
],
"durationInMs": 1.86924699973315
}
} |
---|
04:37:27.597 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_formation` where `user_id` in (?) order by `rank` asc",
"parameters": [
324290
],
"durationInMs": 1.8638570001348853
}
} |
---|
04:37:27.598 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_experience` where `user_id` in (?) order by `rank` asc",
"parameters": [
324290
],
"durationInMs": 1.824103000573814
}
} |
---|
04:37:27.598 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_lang` where `user_id` in (?)",
"parameters": [
324290
],
"durationInMs": 1.309901999309659
}
} |
---|
04:37:27.598 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_skill` where `user_id` in (?)",
"parameters": [
324290
],
"durationInMs": 1.2726029995828867
}
} |
---|
04:37:27.598 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_coordinate` where `user_id` in (?) and `type` != ?",
"parameters": [
324290,
""
],
"durationInMs": 1.2365170000120997
}
} |
---|
04:37:27.598 | debug | kysely.query | {
"kysely": {
"sql": "with recursive `cte`(`id`, `parent_id`, `level`, `root_id`) as (select `c`.`id`, `c`.`parent_id`, ? as `level`, `c`.`id` as `root_id` from `category` as `c` where `c`.`id` in (?) union all select `p`.`id`, `p`.`parent_id`, cte.level + ? as `level`, `cte`.`root_id` from `category` as `p` inner join `cte` on `p`.`id` = `cte`.`parent_id`) select `id`, `root_id`, `level` from `cte`",
"parameters": [
1,
377,
1
],
"durationInMs": 1.2479469999670982
}
} |
---|
04:37:27.598 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
377,
"fr"
],
"durationInMs": 1.3865839997306466
}
} |
---|
04:37:27.599 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?)",
"parameters": [
262032
],
"durationInMs": 1.4816499995067716
}
} |
---|
04:37:27.600 | debug | kysely.query | {
"kysely": {
"sql": "select `author_id`, count(`id`) as `count` from `following` where `author_id` in (?, ?, ?, ?) group by `author_id`",
"parameters": [
236090,
242971,
219780,
317759
],
"durationInMs": 2.7213820004835725
}
} |
---|
04:37:27.600 | debug | kysely.query | {
"kysely": {
"sql": "select `target_user_id`, count(`id`) as `count` from `following` where (`target_company_id` is null and `target_user_id` in (?, ?, ?, ?)) group by `target_user_id`",
"parameters": [
236090,
242971,
219780,
317759
],
"durationInMs": 2.7125959992408752
}
} |
---|
04:37:27.600 | debug | kysely.query | {
"kysely": {
"sql": "select `user_author_id`, count(`id`) as `count` from `feed_post` where (`company_author_id` is null and `user_author_id` in (?, ?, ?, ?)) group by `user_author_id`",
"parameters": [
236090,
242971,
219780,
317759
],
"durationInMs": 2.6897740000858903
}
} |
---|
04:37:27.601 | debug | kysely.query | {
"kysely": {
"sql": "select * from `company` where `company`.`id` in (?)",
"parameters": [
567728
],
"durationInMs": 2.918206000700593
}
} |
---|
04:37:27.601 | debug | kysely.query | {
"kysely": {
"sql": "select `target_company_id`, count(`id`) as `count` from `following` where (`target_company_id` in (?) and `target_user_id` is null) group by `target_company_id`",
"parameters": [
567728
],
"durationInMs": 3.0895229997113347
}
} |
---|
04:37:27.601 | debug | kysely.query | {
"kysely": {
"sql": "select `company_author_id`, count(`id`) as `count` from `feed_post` where (`company_author_id` in (?) and `user_author_id` is null) group by `company_author_id`",
"parameters": [
567728
],
"durationInMs": 3.0557610001415014
}
} |
---|
04:37:27.601 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
3,
"fr"
],
"durationInMs": 2.943943999707699
}
} |
---|
04:37:27.601 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
323
],
"durationInMs": 2.9350680001080036
}
} |
---|
04:37:27.602 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user` where `user`.`id` in (?, ?, ?, ?)",
"parameters": [
236090,
242971,
219780,
317759
],
"durationInMs": 4.411698000505567
}
} |
---|
04:37:27.603 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category` where `category`.`id` in (?)",
"parameters": [
386
],
"durationInMs": 1.6787139996886253
}
} |
---|
04:37:27.603 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
386,
"fr"
],
"durationInMs": 1.953091999515891
}
} |
---|
04:37:27.603 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category` where `category`.`id` in (?, ?, ?)",
"parameters": [
67,
121,
141
],
"durationInMs": 0.8949750000610948
}
} |
---|
04:37:27.603 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
1
],
"durationInMs": 1.9811830008402467
}
} |
---|
04:37:27.603 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where ((`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?) or (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?) or (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?))",
"parameters": [
67,
"fr",
121,
"fr",
141,
"fr"
],
"durationInMs": 1.36809999961406
}
} |
---|
04:37:27.604 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?, ?, ?, ?)",
"parameters": [
151392,
154361,
144265,
206280
],
"durationInMs": 1.6498410003259778
}
} |
---|
04:37:27.604 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
14,
"fr"
],
"durationInMs": 1.2522660000249743
}
} |
---|
04:37:27.604 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
331
],
"durationInMs": 1.2572550000622869
}
} |
---|
04:37:27.604 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where ((`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?) or (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?) or (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?))",
"parameters": [
49,
"fr",
117,
"fr",
138,
"fr"
],
"durationInMs": 1.1428829999640584
}
} |
---|
04:37:27.604 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?, ?, ?)",
"parameters": [
61,
111,
130
],
"durationInMs": 0.9525620006024837
}
} |
---|
04:37:27.605 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
12
],
"durationInMs": 0.5954510001465678
}
} |
---|
04:37:27.605 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?, ?, ?)",
"parameters": [
46,
108,
127
],
"durationInMs": 0.37922099977731705
}
} |
---|
04:37:27.626 | info | http.response | {
"svelte": {
"route": {
"id": "/(frontend)/[[_country]]/user/[userId=integer]-[[userSlug]]"
},
"params": {
"_country": "us",
"userId": "324290",
"userSlug": "walton-christof"
},
"clientAddress": "216.73.216.148",
"isDataRequest": false,
"isSubRequest": false
},
"http": {
"request": {
"id": "o6IBFbVmJ8dvKhf7be4B",
"method": "GET",
"bytes": null,
"mime_type": null,
"referrer": null,
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, br, zstd, deflate",
"connection": "close",
"cookie": "goafrica-ad-id=689aa8daa39529.64896850; PHPSESSID=be7a674b9dce8fc4324c6b17642cc91b; GOAFRICA_NEXT_SESSION_ID=XCI3fauZzCdpPzkh8MK5V66jscQuOvIeW1aTd7Tc",
"host": "www.goa.goafrica.syazen.cloud",
"user-agent": "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)",
"x-forwarded-for": "216.73.216.148",
"x-real-ip": "216.73.216.148",
"x-scheme": "https"
}
},
"response": {
"bytes": 135810,
"mime_type": "text/html",
"status_code": 200,
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, br, zstd, deflate",
"connection": "close",
"cookie": "goafrica-ad-id=689aa8daa39529.64896850; PHPSESSID=be7a674b9dce8fc4324c6b17642cc91b; GOAFRICA_NEXT_SESSION_ID=XCI3fauZzCdpPzkh8MK5V66jscQuOvIeW1aTd7Tc",
"host": "www.goa.goafrica.syazen.cloud",
"user-agent": "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)",
"x-forwarded-for": "216.73.216.148",
"x-real-ip": "216.73.216.148",
"x-scheme": "https"
}
}
},
"user_agent": {
"original": "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
},
"url": {
"full": "https://www.goa.goafrica.syazen.cloud/us/user/324290-walton-christof",
"original": "https://www.goa.goafrica.syazen.cloud/us/user/324290-walton-christof",
"path": "/us/user/324290-walton-christof",
"domain": "www.goa.goafrica.syazen.cloud",
"port": null,
"username": null,
"query": null,
"scheme": "https"
},
"profiling": {
"memoryUsage": 289083392,
"memoryUsageHuman": "275.7 MiB",
"requestTimeInMs": 43
}
} |
---|