08:28:57.306 | info | http.request | {
"svelte": {
"route": {
"id": "/(frontend)/[[_country]]/user/[userId=integer]-[[userSlug]]"
},
"params": {
"_country": "mg",
"userId": "191269",
"userSlug": "paul-annie"
},
"clientAddress": "216.73.216.18",
"isDataRequest": false,
"isSubRequest": false
},
"http": {
"request": {
"id": "BgV1FRgervDmTlevXkwW",
"method": "GET",
"bytes": null,
"mime_type": null,
"referrer": null,
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, br, zstd, deflate",
"connection": "close",
"cookie": "PHPSESSID=49d3b16235a66b4b4f286dcc280fc331; goafrica-ad-id=6891a4943d2982.22782066; GOAFRICA_NEXT_SESSION_ID=kNv6xGoHAUKpRxbR8SC86HSK8jFW24I3USGPvMuN",
"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.18",
"x-real-ip": "216.73.216.18",
"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/mg/user/191269-paul-annie",
"original": "https://www.goa.goafrica.syazen.cloud/mg/user/191269-paul-annie",
"path": "/mg/user/191269-paul-annie",
"domain": "www.goa.goafrica.syazen.cloud",
"port": null,
"username": null,
"query": null,
"scheme": "https"
},
"profiling": {
"memoryUsage": 252444672,
"memoryUsageHuman": "240.8 MiB"
}
} |
---|
08:28:57.313 | debug | kysely.query | {
"kysely": {
"sql": "select `id` from `cms_post` where `cms_post`.`slug` = ? limit ?",
"parameters": [
"questions-go-africa",
1
],
"durationInMs": 0.44407199998386204
}
} |
---|
08:28:57.315 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user` where `user`.`id` in (?)",
"parameters": [
191269
],
"durationInMs": 2.579380000010133
}
} |
---|
08:28:57.321 | 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": [
191269
],
"durationInMs": 1.4141050002072006
}
} |
---|
08:28:57.322 | debug | kysely.query | {
"kysely": {
"sql": "select * from `cms_post` as `o` where `o`.`id` in (?)",
"parameters": [
36
],
"durationInMs": 8.92043499997817
}
} |
---|
08:28:57.322 | debug | kysely.query | {
"kysely": {
"sql": "select count(*) as `count` from `cms_post` where `online` = ? and JSON_CONTAINS(`countries`, JSON_ARRAY(?)) = ?",
"parameters": [
1,
"MG",
true
],
"durationInMs": 9.69444700004533
}
} |
---|
08:28:57.323 | debug | kysely.query | {
"kysely": {
"sql": "select `id` from `portfolio_media` where `user_id` = ? order by `rank` asc",
"parameters": [
191269
],
"durationInMs": 2.490104000084102
}
} |
---|
08:28:57.323 | debug | kysely.query | {
"kysely": {
"sql": "select * from `following` where `author_id` = ? order by `date` desc",
"parameters": [
191269
],
"durationInMs": 2.489793999819085
}
} |
---|
08:28:57.323 | 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": [
191269,
2
],
"durationInMs": 2.6607099999673665
}
} |
---|
08:28:57.323 | 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": [
191269,
191269,
191269,
1
],
"durationInMs": 3.122704999987036
}
} |
---|
08:28:57.323 | 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": [
191269,
191269,
191269,
191269,
1,
1
],
"durationInMs": 3.2759070000611246
}
} |
---|
08:28:57.324 | 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": [
191269
],
"durationInMs": 2.8511719999369234
}
} |
---|
08:28:57.324 | 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": [
191269
],
"durationInMs": 2.9440140000078827
}
} |
---|
08:28:57.324 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `status` from `user_job_status` where `user_id` in (?)",
"parameters": [
191269
],
"durationInMs": 2.4570229998789728
}
} |
---|
08:28:57.324 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `category_id` from `user_interested_category` where `user_id` in (?)",
"parameters": [
191269
],
"durationInMs": 2.28320199996233
}
} |
---|
08:28:57.324 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_resume` where `user_id` in (?)",
"parameters": [
191269
],
"durationInMs": 1.9079980000387877
}
} |
---|
08:28:57.325 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_formation` where `user_id` in (?) order by `rank` asc",
"parameters": [
191269
],
"durationInMs": 1.8659300000872463
}
} |
---|
08:28:57.325 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_experience` where `user_id` in (?) order by `rank` asc",
"parameters": [
191269
],
"durationInMs": 2.129778000060469
}
} |
---|
08:28:57.326 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_lang` where `user_id` in (?)",
"parameters": [
191269
],
"durationInMs": 2.413452999899164
}
} |
---|
08:28:57.326 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_skill` where `user_id` in (?)",
"parameters": [
191269
],
"durationInMs": 2.561816999921575
}
} |
---|
08:28:57.326 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_coordinate` where `user_id` in (?) and `type` != ?",
"parameters": [
191269,
""
],
"durationInMs": 2.500383999897167
}
} |
---|
08:28:57.326 | 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,
369,
1
],
"durationInMs": 2.489373000105843
}
} |
---|
08:28:57.327 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?)",
"parameters": [
130170
],
"durationInMs": 3.162468000082299
}
} |
---|
08:28:57.328 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user_formation` where `id` in (?, ?, ?, ?, ?)",
"parameters": [
128,
127,
126,
125,
124
],
"durationInMs": 2.712085000006482
}
} |
---|
08:28:57.328 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user_experience` where `id` in (?, ?, ?, ?, ?, ?)",
"parameters": [
120,
119,
118,
117,
116,
115
],
"durationInMs": 2.7205809999722987
}
} |
---|
08:28:57.328 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user_lang` where `id` in (?, ?)",
"parameters": [
520,
521
],
"durationInMs": 2.6554209999740124
}
} |
---|
08:28:57.329 | 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.2246040001045913
}
} |
---|
08:28:57.329 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
369,
"fr"
],
"durationInMs": 5.077748999930918
}
} |
---|
08:28:57.329 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
1
],
"durationInMs": 0.4148270001169294
}
} |
---|
08:28:57.329 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
319
],
"durationInMs": 0.3799630000721663
}
} |
---|
08:28:57.351 | info | http.response | {
"svelte": {
"route": {
"id": "/(frontend)/[[_country]]/user/[userId=integer]-[[userSlug]]"
},
"params": {
"_country": "mg",
"userId": "191269",
"userSlug": "paul-annie"
},
"clientAddress": "216.73.216.18",
"isDataRequest": false,
"isSubRequest": false
},
"http": {
"request": {
"id": "BgV1FRgervDmTlevXkwW",
"method": "GET",
"bytes": null,
"mime_type": null,
"referrer": null,
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, br, zstd, deflate",
"connection": "close",
"cookie": "PHPSESSID=49d3b16235a66b4b4f286dcc280fc331; goafrica-ad-id=6891a4943d2982.22782066; GOAFRICA_NEXT_SESSION_ID=kNv6xGoHAUKpRxbR8SC86HSK8jFW24I3USGPvMuN",
"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.18",
"x-real-ip": "216.73.216.18",
"x-scheme": "https"
}
},
"response": {
"bytes": 265180,
"mime_type": "text/html",
"status_code": 200,
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, br, zstd, deflate",
"connection": "close",
"cookie": "PHPSESSID=49d3b16235a66b4b4f286dcc280fc331; goafrica-ad-id=6891a4943d2982.22782066; GOAFRICA_NEXT_SESSION_ID=kNv6xGoHAUKpRxbR8SC86HSK8jFW24I3USGPvMuN",
"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.18",
"x-real-ip": "216.73.216.18",
"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/mg/user/191269-paul-annie",
"original": "https://www.goa.goafrica.syazen.cloud/mg/user/191269-paul-annie",
"path": "/mg/user/191269-paul-annie",
"domain": "www.goa.goafrica.syazen.cloud",
"port": null,
"username": null,
"query": null,
"scheme": "https"
},
"profiling": {
"memoryUsage": 260505600,
"memoryUsageHuman": "248.4 MiB",
"requestTimeInMs": 45
}
} |
---|