08:46:44.498 | info | http.request | {
"svelte": {
"route": {
"id": "/(frontend)/[[_country]]/user/[userId=integer]-[[userSlug]]"
},
"params": {
"_country": "bj",
"userId": "139209",
"userSlug": "kris-demide"
},
"clientAddress": "216.73.216.18",
"isDataRequest": false,
"isSubRequest": false
},
"http": {
"request": {
"id": "Td8kB5xl5rC2VnX0FP60",
"method": "GET",
"bytes": null,
"mime_type": null,
"referrer": null,
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, br, zstd, deflate",
"connection": "close",
"cookie": "goafrica-ad-id=68944bc89037f5.83598139; PHPSESSID=536e5e6d48da0faf806f37771ff9b2e7; GOAFRICA_NEXT_SESSION_ID=qjpyugGSWEyaQnmTpd8K5m5V8RceKUPa7gGy3gKS",
"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/bj/user/139209-kris-demide",
"original": "https://www.goa.goafrica.syazen.cloud/bj/user/139209-kris-demide",
"path": "/bj/user/139209-kris-demide",
"domain": "www.goa.goafrica.syazen.cloud",
"port": null,
"username": null,
"query": null,
"scheme": "https"
},
"profiling": {
"memoryUsage": 230772736,
"memoryUsageHuman": "220.1 MiB"
}
} |
---|
08:46:44.509 | debug | kysely.query | {
"kysely": {
"sql": "select `id` from `cms_post` where `cms_post`.`slug` = ? limit ?",
"parameters": [
"questions-go-africa",
1
],
"durationInMs": 0.33028100000228733
}
} |
---|
08:46:44.509 | debug | kysely.query | {
"kysely": {
"sql": "select * from `cms_post` as `o` where `o`.`id` in (?)",
"parameters": [
36
],
"durationInMs": 0.30825000000186265
}
} |
---|
08:46:44.514 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user` where `user`.`id` in (?)",
"parameters": [
139209
],
"durationInMs": 1.0424369999964256
}
} |
---|
08:46:44.530 | 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": [
139209
],
"durationInMs": 2.172806999995373
}
} |
---|
08:46:44.530 | debug | kysely.query | {
"kysely": {
"sql": "select count(*) as `count` from `cms_post` where `online` = ? and JSON_CONTAINS(`countries`, JSON_ARRAY(?)) = ?",
"parameters": [
1,
"BJ",
true
],
"durationInMs": 17.648182000004454
}
} |
---|
08:46:44.531 | debug | kysely.query | {
"kysely": {
"sql": "select `id` from `portfolio_media` where `user_id` = ? order by `rank` asc",
"parameters": [
139209
],
"durationInMs": 3.373107000021264
}
} |
---|
08:46:44.532 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `category_id` from `user_interested_category` where `user_id` in (?)",
"parameters": [
139209
],
"durationInMs": 1.6852059999946505
}
} |
---|
08:46:44.532 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_resume` where `user_id` in (?)",
"parameters": [
139209
],
"durationInMs": 1.144345999986399
}
} |
---|
08:46:44.532 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_formation` where `user_id` in (?) order by `rank` asc",
"parameters": [
139209
],
"durationInMs": 1.103480000019772
}
} |
---|
08:46:44.535 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_experience` where `user_id` in (?) order by `rank` asc",
"parameters": [
139209
],
"durationInMs": 3.014523999998346
}
} |
---|
08:46:44.535 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_lang` where `user_id` in (?)",
"parameters": [
139209
],
"durationInMs": 3.3960290000250097
}
} |
---|
08:46:44.536 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_skill` where `user_id` in (?)",
"parameters": [
139209
],
"durationInMs": 3.1420599999837577
}
} |
---|
08:46:44.537 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_coordinate` where `user_id` in (?) and `type` != ?",
"parameters": [
139209,
""
],
"durationInMs": 1.5181769999908283
}
} |
---|
08:46:44.537 | 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,
126,
1
],
"durationInMs": 1.6591979999793693
}
} |
---|
08:46:44.538 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
126,
"fr"
],
"durationInMs": 2.1230459999933373
}
} |
---|
08:46:44.539 | 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": [
139209,
139209,
139209,
1
],
"durationInMs": 2.7421599999943282
}
} |
---|
08:46:44.539 | debug | kysely.query | {
"kysely": {
"sql": "select * from `following` where `author_id` = ? order by `date` desc",
"parameters": [
139209
],
"durationInMs": 3.070888999995077
}
} |
---|
08:46:44.541 | 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": [
139209,
2
],
"durationInMs": 4.176322000013897
}
} |
---|
08:46:44.543 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?, ?)",
"parameters": [
222694,
276509
],
"durationInMs": 5.802859999996144
}
} |
---|
08:46:44.544 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user_formation` where `id` in (?)",
"parameters": [
2210
],
"durationInMs": 6.03356700000586
}
} |
---|
08:46:44.544 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user_experience` where `id` in (?, ?, ?, ?, ?, ?)",
"parameters": [
2285,
2286,
2287,
2288,
2289,
2290
],
"durationInMs": 5.8058339999988675
}
} |
---|
08:46:44.546 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user_lang` where `id` in (?, ?)",
"parameters": [
20906,
20907
],
"durationInMs": 6.900167999992846
}
} |
---|
08:46:44.546 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user_coordinate` where `id` in (?)",
"parameters": [
118392
],
"durationInMs": 6.177611999999499
}
} |
---|
08:46:44.547 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `status` from `user_job_status` where `user_id` in (?)",
"parameters": [
139209
],
"durationInMs": 10.128628000005847
}
} |
---|
08:46:44.547 | 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": [
139209
],
"durationInMs": 10.681259000004502
}
} |
---|
08:46:44.547 | 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": [
139209,
139209,
139209,
139209,
1,
1
],
"durationInMs": 11.230997000006028
}
} |
---|
08:46:44.550 | 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": [
139209
],
"durationInMs": 12.98114199997508
}
} |
---|
08:46:44.550 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
116
],
"durationInMs": 6.51103900000453
}
} |
---|
08:46:44.551 | debug | kysely.query | {
"kysely": {
"sql": "with `followCount`(`countu`, `countc`, `target_user_id`, `target_company_id`) as (select count(distinct `following`.`target_company_id`) as `countc`, count(distinct `following`.`target_user_id`) as `countu`, `following`.`target_user_id`, `following`.`target_company_id` from `following` where `following`.`target_user_id` is not null group by `following`.`target_user_id`, `following`.`target_company_id`) select *, countc\n + countu as `count` from `following` left join `followCount` on ((`following`.`target_user_id` is not null and `following`.`target_user_id` = `followCount`.`target_user_id`) or (`following`.`target_company_id` is not null and `following`.`target_company_id` = `followCount`.`target_company_id`)) where `author_id` = ? and (`following`.`target_user_id` is null or `following`.`target_user_id` not in (?, ?, ?)) and (`following`.`target_company_id` is null or `following`.`target_company_id` not in (?)) order by `count` desc limit ?",
"parameters": [
139209,
407635,
330582,
392287,
371814,
4
],
"durationInMs": 6.415723000012804
}
} |
---|
08:46:44.552 | debug | kysely.query | {
"kysely": {
"sql": "select count(distinct `r`.`id`) as `count` from `reaction` as `r` where `r`.`target_feed_post_id` = ?",
"parameters": [
988
],
"durationInMs": 5.94821899998351
}
} |
---|
08:46:44.552 | debug | kysely.query | {
"kysely": {
"sql": "select count(distinct `c`.`id`) as `count` from `feed_comment` as `c` where `c`.`feed_post_id` = ?",
"parameters": [
988
],
"durationInMs": 5.711360999994213
}
} |
---|
08:46:44.552 | debug | kysely.query | {
"kysely": {
"sql": "select count(distinct `c`.`id`) as `count` from `feed_comment` as `c` where `c`.`feed_post_id` = ? and `c`.`parent_id` is null",
"parameters": [
988
],
"durationInMs": 5.475284000014653
}
} |
---|
08:46:44.552 | debug | kysely.query | {
"kysely": {
"sql": "select `r`.`type`, count(`r`.`id`) as `count` from `reaction` as `r` where `r`.`target_feed_post_id` = ? group by `r`.`type`",
"parameters": [
988
],
"durationInMs": 5.407848000002559
}
} |
---|
08:46:44.553 | debug | kysely.query | {
"kysely": {
"sql": "select count(distinct `r`.`id`) as `count` from `reaction` as `r` where `r`.`target_feed_post_id` = ?",
"parameters": [
987
],
"durationInMs": 5.34083400000236
}
} |
---|
08:46:44.553 | debug | kysely.query | {
"kysely": {
"sql": "select count(distinct `c`.`id`) as `count` from `feed_comment` as `c` where `c`.`feed_post_id` = ?",
"parameters": [
987
],
"durationInMs": 5.172873999981675
}
} |
---|
08:46:44.556 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
122,
"fr"
],
"durationInMs": 13.542089000024134
}
} |
---|
08:46:44.556 | debug | kysely.query | {
"kysely": {
"sql": "select `r`.`type`, count(`r`.`id`) as `count` from `reaction` as `r` where `r`.`target_feed_post_id` = ? group by `r`.`type`",
"parameters": [
987
],
"durationInMs": 6.18996600000537
}
} |
---|
08:46:44.557 | debug | kysely.query | {
"kysely": {
"sql": "select * from `feed_post` where `id` in (?, ?)",
"parameters": [
988,
987
],
"durationInMs": 5.211736999975983
}
} |
---|
08:46:44.560 | debug | kysely.query | {
"kysely": {
"sql": "select `feed_media`.`media_id`, `feed_media`.`feed_post_id` from `feed_media` where `feed_media`.`feed_post_id` in (?, ?)",
"parameters": [
988,
987
],
"durationInMs": 8.1310039999953
}
} |
---|
08:46:44.560 | debug | kysely.query | {
"kysely": {
"sql": "select `pl`.`feed_post_id`, `pl`.`link_meta_data_id` from `feed_post_link_meta_data` as `pl` where `pl`.`feed_post_id` in (?, ?)",
"parameters": [
988,
987
],
"durationInMs": 8.356671999994433
}
} |
---|
08:46:44.561 | debug | kysely.query | {
"kysely": {
"sql": "select `pl`.`feed_post_id`, `l`.`related_feed_post_id` from `feed_post_link_meta_data` as `pl` inner join `link_meta_data` as `l` on `l`.`id` = `pl`.`link_meta_data_id` where `pl`.`feed_post_id` in (?, ?) and `l`.`related_feed_post_id` is not null group by `pl`.`feed_post_id`",
"parameters": [
988,
987
],
"durationInMs": 8.874259000003804
}
} |
---|
08:46:44.563 | debug | kysely.query | {
"kysely": {
"sql": "select * from `company` where `company`.`id` in (?)",
"parameters": [
29366
],
"durationInMs": 10.454809999995632
}
} |
---|
08:46:44.564 | 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": [
29366
],
"durationInMs": 11.125961999990977
}
} |
---|
08:46:44.564 | 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": [
29366
],
"durationInMs": 11.289523999992525
}
} |
---|
08:46:44.571 | debug | kysely.query | {
"kysely": {
"sql": "select count(distinct `c`.`id`) as `count` from `feed_comment` as `c` where `c`.`feed_post_id` = ? and `c`.`parent_id` is null",
"parameters": [
987
],
"durationInMs": 21.099632999976166
}
} |
---|
08:46:44.571 | debug | kysely.query | {
"kysely": {
"sql": "select `author_id`, count(`id`) as `count` from `following` where `author_id` in (?, ?, ?, ?, ?, ?, ?) group by `author_id`",
"parameters": [
397765,
37755,
342054,
406803,
392287,
330582,
407635
],
"durationInMs": 14.665856999985408
}
} |
---|
08:46:44.572 | 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": [
397765,
37755,
342054,
406803,
392287,
330582,
407635
],
"durationInMs": 13.583945999998832
}
} |
---|
08:46:44.572 | 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": [
397765,
37755,
342054,
406803,
392287,
330582,
407635
],
"durationInMs": 11.850081000011414
}
} |
---|
08:46:44.573 | debug | kysely.query | {
"kysely": {
"sql": "select * from `company` where `company`.`id` in (?)",
"parameters": [
371814
],
"durationInMs": 11.887319000001298
}
} |
---|
08:46:44.573 | 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": [
371814
],
"durationInMs": 11.928306000016164
}
} |
---|
08:46:44.574 | 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": [
371814
],
"durationInMs": 9.971607999992557
}
} |
---|
08:46:44.574 | debug | kysely.query | {
"kysely": {
"sql": "select `bi`.`target_feed_post_id`, `bi`.`id` from `bookmark_item` as `bi` inner join `bookmark` as `b` on `b`.`id` = `bi`.`bookmark_id` where `bi`.`target_feed_post_id` in (?, ?) and (? is not null and `b`.`user_id` = ?) group by `bi`.`target_feed_post_id`",
"parameters": [
988,
987,
null,
null
],
"durationInMs": 9.936121999984607
}
} |
---|
08:46:44.581 | debug | kysely.query | {
"kysely": {
"sql": "select `r`.`target_feed_post_id`, `r`.`id` from `reaction` as `r` where `r`.`target_feed_post_id` in (?, ?) and (? is not null and `r`.`user_author_id` = ?) group by `r`.`target_feed_post_id`",
"parameters": [
988,
987,
null,
null
],
"durationInMs": 16.620510999986436
}
} |
---|
08:46:44.589 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user` where `user`.`id` in (?, ?, ?, ?, ?, ?, ?)",
"parameters": [
397765,
37755,
342054,
406803,
392287,
330582,
407635
],
"durationInMs": 32.3561359999876
}
} |
---|
08:46:44.591 | debug | kysely.query | {
"kysely": {
"sql": "select `author_id`, count(`id`) as `count` from `following` where `author_id` in (?) group by `author_id`",
"parameters": [
139209
],
"durationInMs": 19.144487999990815
}
} |
---|
08:46:44.591 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category` where `category`.`id` in (?)",
"parameters": [
126
],
"durationInMs": 19.319481999991694
}
} |
---|
08:46:44.592 | debug | kysely.query | {
"kysely": {
"sql": "select * from `link_meta_data` where `id` in (?, ?)",
"parameters": [
437,
435
],
"durationInMs": 19.73059099999955
}
} |
---|
08:46:44.592 | debug | kysely.query | {
"kysely": {
"sql": "select * from `feed_post` where `id` in (?, ?)",
"parameters": [
961,
978
],
"durationInMs": 19.23125800001435
}
} |
---|
08:46:44.594 | debug | kysely.query | {
"kysely": {
"sql": "select `feed_media`.`media_id`, `feed_media`.`feed_post_id` from `feed_media` where `feed_media`.`feed_post_id` in (?, ?)",
"parameters": [
961,
978
],
"durationInMs": 20.25909799998044
}
} |
---|
08:46:44.594 | debug | kysely.query | {
"kysely": {
"sql": "select `pl`.`feed_post_id`, `pl`.`link_meta_data_id` from `feed_post_link_meta_data` as `pl` where `pl`.`feed_post_id` in (?, ?)",
"parameters": [
961,
978
],
"durationInMs": 20.420006000000285
}
} |
---|
08:46:44.594 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
123,
"fr"
],
"durationInMs": 20.203214999986812
}
} |
---|
08:46:44.595 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category` where `category`.`id` in (?)",
"parameters": [
123
],
"durationInMs": 13.507795000012266
}
} |
---|
08:46:44.604 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
112
],
"durationInMs": 33.327121000009356
}
} |
---|
08:46:44.605 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
489,
"fr"
],
"durationInMs": 14.002530000027036
}
} |
---|
08:46:44.605 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category` where `category`.`id` in (?)",
"parameters": [
489
],
"durationInMs": 13.670036000024993
}
} |
---|
08:46:44.605 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?)",
"parameters": [
184922
],
"durationInMs": 13.141127999988385
}
} |
---|
08:46:44.606 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?, ?, ?, ?, ?, ?, ?)",
"parameters": [
278657,
251194,
231465,
277357,
264256,
216108,
278037
],
"durationInMs": 12.174850999988848
}
} |
---|
08:46:44.606 | 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` = ?) 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": [
196,
"fr",
546,
"fr",
59,
"fr",
696,
"fr",
369,
"fr"
],
"durationInMs": 12.234661000024062
}
} |
---|
08:46:44.606 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category` where `category`.`id` in (?, ?, ?, ?, ?)",
"parameters": [
196,
546,
59,
696,
369
],
"durationInMs": 12.194307000027038
}
} |
---|
08:46:44.607 | debug | kysely.query | {
"kysely": {
"sql": "select * from `company` where `company`.`id` in (?, ?)",
"parameters": [
37338,
13499
],
"durationInMs": 12.415535999985877
}
} |
---|
08:46:44.608 | 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": [
37338,
13499
],
"durationInMs": 12.732423000008566
}
} |
---|
08:46:44.610 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?)",
"parameters": [
1903
],
"durationInMs": 19.789440000022296
}
} |
---|
08:46:44.610 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?, ?)",
"parameters": [
286612,
287192
],
"durationInMs": 5.636952999979258
}
} |
---|
08:46:44.611 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
113
],
"durationInMs": 5.666859000019031
}
} |
---|
08:46:44.611 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
401
],
"durationInMs": 5.520887999999104
}
} |
---|
08:46:44.611 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
698,
"fr"
],
"durationInMs": 5.101683000015328
}
} |
---|
08:46:44.611 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?, ?, ?, ?, ?)",
"parameters": [
176,
440,
55,
1147,
319
],
"durationInMs": 5.050247000006493
}
} |
---|
08:46:44.612 | 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` = ?) or (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?))",
"parameters": [
194,
"fr",
49,
"fr",
265,
"fr",
3,
"fr"
],
"durationInMs": 4.886495000013383
}
} |
---|
08:46:44.612 | 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": [
25,
"fr",
37,
"fr"
],
"durationInMs": 4.187261999992188
}
} |
---|
08:46:44.612 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category` where `category`.`id` in (?, ?)",
"parameters": [
25,
37
],
"durationInMs": 4.221745999995619
}
} |
---|
08:46:44.612 | 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": [
37338,
13499
],
"durationInMs": 7.861755999998422
}
} |
---|
08:46:44.613 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
1208
],
"durationInMs": 1.2894040000101086
}
} |
---|
08:46:44.613 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?, ?, ?, ?)",
"parameters": [
174,
46,
231,
1
],
"durationInMs": 0.9337260000174865
}
} |
---|
08:46:44.613 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?, ?)",
"parameters": [
23,
35
],
"durationInMs": 0.8743660000036471
}
} |
---|
08:46:44.613 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
18,
"fr"
],
"durationInMs": 0.7425830000138376
}
} |
---|
08:46:44.615 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?, ?)",
"parameters": [
14893,
257908
],
"durationInMs": 4.541075999994064
}
} |
---|
08:46:44.615 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
16
],
"durationInMs": 1.9725970000145026
}
} |
---|
08:46:44.714 | info | http.response | {
"svelte": {
"route": {
"id": "/(frontend)/[[_country]]/user/[userId=integer]-[[userSlug]]"
},
"params": {
"_country": "bj",
"userId": "139209",
"userSlug": "kris-demide"
},
"clientAddress": "216.73.216.18",
"isDataRequest": false,
"isSubRequest": false
},
"http": {
"request": {
"id": "Td8kB5xl5rC2VnX0FP60",
"method": "GET",
"bytes": null,
"mime_type": null,
"referrer": null,
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, br, zstd, deflate",
"connection": "close",
"cookie": "goafrica-ad-id=68944bc89037f5.83598139; PHPSESSID=536e5e6d48da0faf806f37771ff9b2e7; GOAFRICA_NEXT_SESSION_ID=qjpyugGSWEyaQnmTpd8K5m5V8RceKUPa7gGy3gKS",
"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": 251893,
"mime_type": "text/html",
"status_code": 200,
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, br, zstd, deflate",
"connection": "close",
"cookie": "goafrica-ad-id=68944bc89037f5.83598139; PHPSESSID=536e5e6d48da0faf806f37771ff9b2e7; GOAFRICA_NEXT_SESSION_ID=qjpyugGSWEyaQnmTpd8K5m5V8RceKUPa7gGy3gKS",
"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/bj/user/139209-kris-demide",
"original": "https://www.goa.goafrica.syazen.cloud/bj/user/139209-kris-demide",
"path": "/bj/user/139209-kris-demide",
"domain": "www.goa.goafrica.syazen.cloud",
"port": null,
"username": null,
"query": null,
"scheme": "https"
},
"profiling": {
"memoryUsage": 285429760,
"memoryUsageHuman": "272.2 MiB",
"requestTimeInMs": 216
}
} |
---|