08:29:37.399 | info | http.request | {
"svelte": {
"route": {
"id": "/(frontend)/[[_country]]/user/[userId=integer]-[[userSlug]]"
},
"params": {
"_country": "zm",
"userId": "186945",
"userSlug": "chris-cleoface"
},
"clientAddress": "216.73.216.18",
"isDataRequest": false,
"isSubRequest": false
},
"http": {
"request": {
"id": "xCQVQKba3zwJWPBcHvR9",
"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/zm/user/186945-chris-cleoface",
"original": "https://www.goa.goafrica.syazen.cloud/zm/user/186945-chris-cleoface",
"path": "/zm/user/186945-chris-cleoface",
"domain": "www.goa.goafrica.syazen.cloud",
"port": null,
"username": null,
"query": null,
"scheme": "https"
},
"profiling": {
"memoryUsage": 277676032,
"memoryUsageHuman": "264.8 MiB"
}
} |
---|
08:29:37.405 | debug | kysely.query | {
"kysely": {
"sql": "select `id` from `cms_post` where `cms_post`.`slug` = ? limit ?",
"parameters": [
"questions-go-africa",
1
],
"durationInMs": 0.34631000002264045
}
} |
---|
08:29:37.407 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user` where `user`.`id` in (?)",
"parameters": [
186945
],
"durationInMs": 2.6908650000113994
}
} |
---|
08:29:37.412 | 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": [
186945
],
"durationInMs": 1.1060649999999441
}
} |
---|
08:29:37.412 | debug | kysely.query | {
"kysely": {
"sql": "select * from `cms_post` as `o` where `o`.`id` in (?)",
"parameters": [
36
],
"durationInMs": 7.088997999991989
}
} |
---|
08:29:37.413 | debug | kysely.query | {
"kysely": {
"sql": "select count(*) as `count` from `cms_post` where `online` = ? and JSON_CONTAINS(`countries`, JSON_ARRAY(?)) = ?",
"parameters": [
1,
"ZM",
true
],
"durationInMs": 7.883568000019295
}
} |
---|
08:29:37.413 | debug | kysely.query | {
"kysely": {
"sql": "select `id` from `portfolio_media` where `user_id` = ? order by `rank` asc",
"parameters": [
186945
],
"durationInMs": 2.2689859999809414
}
} |
---|
08:29:37.413 | debug | kysely.query | {
"kysely": {
"sql": "select * from `following` where `author_id` = ? order by `date` desc",
"parameters": [
186945
],
"durationInMs": 2.329548000008799
}
} |
---|
08:29:37.414 | 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": [
186945,
2
],
"durationInMs": 2.770564000005834
}
} |
---|
08:29:37.414 | 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": [
186945,
186945,
186945,
1
],
"durationInMs": 3.133594999992056
}
} |
---|
08:29:37.414 | 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": [
186945,
186945,
186945,
186945,
1,
1
],
"durationInMs": 3.3679079999856185
}
} |
---|
08:29:37.415 | 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": [
186945
],
"durationInMs": 3.079765000002226
}
} |
---|
08:29:37.415 | 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": [
186945
],
"durationInMs": 3.1901490000018384
}
} |
---|
08:29:37.415 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `status` from `user_job_status` where `user_id` in (?)",
"parameters": [
186945
],
"durationInMs": 2.9071549999935087
}
} |
---|
08:29:37.415 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `category_id` from `user_interested_category` where `user_id` in (?)",
"parameters": [
186945
],
"durationInMs": 2.6895629999926314
}
} |
---|
08:29:37.415 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_resume` where `user_id` in (?)",
"parameters": [
186945
],
"durationInMs": 2.1995370000076946
}
} |
---|
08:29:37.415 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_formation` where `user_id` in (?) order by `rank` asc",
"parameters": [
186945
],
"durationInMs": 2.199596999998903
}
} |
---|
08:29:37.416 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_experience` where `user_id` in (?) order by `rank` asc",
"parameters": [
186945
],
"durationInMs": 2.235954000003403
}
} |
---|
08:29:37.416 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_lang` where `user_id` in (?)",
"parameters": [
186945
],
"durationInMs": 2.4504710000182968
}
} |
---|
08:29:37.417 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_skill` where `user_id` in (?)",
"parameters": [
186945
],
"durationInMs": 2.30435099999886
}
} |
---|
08:29:37.417 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_coordinate` where `user_id` in (?) and `type` != ?",
"parameters": [
186945,
""
],
"durationInMs": 2.289963999995962
}
} |
---|
08:29:37.417 | 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,
529,
1
],
"durationInMs": 2.2435980000009295
}
} |
---|
08:29:37.418 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?)",
"parameters": [
128524
],
"durationInMs": 2.8489579999877606
}
} |
---|
08:29:37.418 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user` where `user`.`id` in (?)",
"parameters": [
184766
],
"durationInMs": 3.0503509999834932
}
} |
---|
08:29:37.419 | debug | kysely.query | {
"kysely": {
"sql": "select `author_id`, count(`id`) as `count` from `following` where `author_id` in (?) group by `author_id`",
"parameters": [
184766
],
"durationInMs": 3.4217380000045523
}
} |
---|
08:29:37.419 | 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": [
184766
],
"durationInMs": 3.068022999999812
}
} |
---|
08:29:37.419 | 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": [
184766
],
"durationInMs": 2.712484999996377
}
} |
---|
08:29:37.419 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user_formation` where `id` in (?)",
"parameters": [
65
],
"durationInMs": 2.8695959999749903
}
} |
---|
08:29:37.420 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user_experience` where `id` in (?)",
"parameters": [
73
],
"durationInMs": 3.030203000002075
}
} |
---|
08:29:37.420 | 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` = ?))",
"parameters": [
85,
"en",
85,
"fr"
],
"durationInMs": 2.907506999996258
}
} |
---|
08:29:37.420 | 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` = ?))",
"parameters": [
529,
"en",
529,
"fr"
],
"durationInMs": 5.537390000012238
}
} |
---|
08:29:37.421 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
55,
"fr"
],
"durationInMs": 2.0962759999965783
}
} |
---|
08:29:37.421 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?)",
"parameters": [
127644
],
"durationInMs": 2.4191130000108387
}
} |
---|
08:29:37.421 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
77
],
"durationInMs": 0.9978549999941606
}
} |
---|
08:29:37.421 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category` where `category`.`id` in (?)",
"parameters": [
55
],
"durationInMs": 2.7693509999953676
}
} |
---|
08:29:37.422 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
51
],
"durationInMs": 0.8960369999986142
}
} |
---|
08:29:37.422 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
430
],
"durationInMs": 1.3241580000030808
}
} |
---|
08:29:37.422 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
49,
"fr"
],
"durationInMs": 0.4954870000074152
}
} |
---|
08:29:37.422 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
46
],
"durationInMs": 0.247477999975672
}
} |
---|
08:29:37.446 | info | http.response | {
"svelte": {
"route": {
"id": "/(frontend)/[[_country]]/user/[userId=integer]-[[userSlug]]"
},
"params": {
"_country": "zm",
"userId": "186945",
"userSlug": "chris-cleoface"
},
"clientAddress": "216.73.216.18",
"isDataRequest": false,
"isSubRequest": false
},
"http": {
"request": {
"id": "xCQVQKba3zwJWPBcHvR9",
"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": 154501,
"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/zm/user/186945-chris-cleoface",
"original": "https://www.goa.goafrica.syazen.cloud/zm/user/186945-chris-cleoface",
"path": "/zm/user/186945-chris-cleoface",
"domain": "www.goa.goafrica.syazen.cloud",
"port": null,
"username": null,
"query": null,
"scheme": "https"
},
"profiling": {
"memoryUsage": 290684928,
"memoryUsageHuman": "277.2 MiB",
"requestTimeInMs": 47
}
} |
---|