12:59:44.162 | info | http.request | {
"svelte": {
"route": {
"id": "/(frontend)/[[_country]]/user/[userId=integer]-[[userSlug]]"
},
"params": {
"_country": "cm",
"userId": "199323",
"userSlug": "mamoudou-ingenieur-d-affaires"
},
"clientAddress": "216.73.216.18",
"isDataRequest": false,
"isSubRequest": false
},
"http": {
"request": {
"id": "82B2PR2okuEZEuyjuCEn",
"method": "GET",
"bytes": null,
"mime_type": null,
"referrer": null,
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, br, zstd, deflate",
"connection": "close",
"cookie": "GOAFRICA_NEXT_SESSION_ID=ez8IhiQdh2GGEfH8Wr9xU7x8e58VQP6r0AB8AeQs; goafrica-ad-id=6891e3c78b4697.18975655; PHPSESSID=067bbae7228e5bbc31e81413aece3019",
"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/cm/user/199323-mamoudou-ingenieur-d-affaires",
"original": "https://www.goa.goafrica.syazen.cloud/cm/user/199323-mamoudou-ingenieur-d-affaires",
"path": "/cm/user/199323-mamoudou-ingenieur-d-affaires",
"domain": "www.goa.goafrica.syazen.cloud",
"port": null,
"username": null,
"query": null,
"scheme": "https"
},
"profiling": {
"memoryUsage": 266821632,
"memoryUsageHuman": "254.5 MiB"
}
} |
---|
12:59:44.168 | debug | kysely.query | {
"kysely": {
"sql": "select `id` from `cms_post` where `cms_post`.`slug` = ? limit ?",
"parameters": [
"questions-go-africa",
1
],
"durationInMs": 0.5710050000343472
}
} |
---|
12:59:44.168 | debug | kysely.query | {
"kysely": {
"sql": "select count(*) as `count` from `cms_post` where `online` = ? and JSON_CONTAINS(`countries`, JSON_ARRAY(?)) = ?",
"parameters": [
1,
"CM",
true
],
"durationInMs": 0.7348390000406653
}
} |
---|
12:59:44.168 | debug | kysely.query | {
"kysely": {
"sql": "select * from `cms_post` as `o` where `o`.`id` in (?)",
"parameters": [
36
],
"durationInMs": 0.32089299999643117
}
} |
---|
12:59:44.170 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user` where `user`.`id` in (?)",
"parameters": [
199323
],
"durationInMs": 3.04077300010249
}
} |
---|
12:59:44.174 | debug | kysely.query | {
"kysely": {
"sql": "select `id` from `portfolio_media` where `user_id` = ? order by `rank` asc",
"parameters": [
199323
],
"durationInMs": 0.8398329999763519
}
} |
---|
12:59:44.174 | 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": [
199323
],
"durationInMs": 1.0774230000097305
}
} |
---|
12:59:44.174 | debug | kysely.query | {
"kysely": {
"sql": "select * from `following` where `author_id` = ? order by `date` desc",
"parameters": [
199323
],
"durationInMs": 1.0360760000767186
}
} |
---|
12:59:44.175 | 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": [
199323,
2
],
"durationInMs": 1.3866639999905601
}
} |
---|
12:59:44.175 | 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": [
199323,
199323,
199323,
1
],
"durationInMs": 1.7131179999560118
}
} |
---|
12:59:44.175 | 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": [
199323,
199323,
199323,
199323,
1,
1
],
"durationInMs": 1.8524459999753162
}
} |
---|
12:59:44.175 | 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": [
199323
],
"durationInMs": 1.6156780000310391
}
} |
---|
12:59:44.175 | 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": [
199323
],
"durationInMs": 1.6975190000375733
}
} |
---|
12:59:44.176 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `status` from `user_job_status` where `user_id` in (?)",
"parameters": [
199323
],
"durationInMs": 1.7962420000694692
}
} |
---|
12:59:44.176 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_resume` where `user_id` in (?)",
"parameters": [
199323
],
"durationInMs": 1.7226149999769405
}
} |
---|
12:59:44.176 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_formation` where `user_id` in (?) order by `rank` asc",
"parameters": [
199323
],
"durationInMs": 1.673975000041537
}
} |
---|
12:59:44.176 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_experience` where `user_id` in (?) order by `rank` asc",
"parameters": [
199323
],
"durationInMs": 1.3457589999306947
}
} |
---|
12:59:44.176 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_lang` where `user_id` in (?)",
"parameters": [
199323
],
"durationInMs": 1.2654599999077618
}
} |
---|
12:59:44.176 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_skill` where `user_id` in (?)",
"parameters": [
199323
],
"durationInMs": 1.1825769999995828
}
} |
---|
12:59:44.176 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_coordinate` where `user_id` in (?) and `type` != ?",
"parameters": [
199323,
""
],
"durationInMs": 1.0673839999362826
}
} |
---|
12:59:44.177 | debug | kysely.query | {
"kysely": {
"sql": "select * from `company` where `company`.`id` in (?)",
"parameters": [
463360
],
"durationInMs": 1.2756890000309795
}
} |
---|
12:59:44.177 | 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": [
463360
],
"durationInMs": 1.8041760000633076
}
} |
---|
12:59:44.178 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `category_id` from `user_interested_category` where `user_id` in (?)",
"parameters": [
199323
],
"durationInMs": 4.004784999997355
}
} |
---|
12:59:44.178 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category` where `category`.`id` in (?)",
"parameters": [
277
],
"durationInMs": 0.7825070000253618
}
} |
---|
12:59:44.178 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
277,
"fr"
],
"durationInMs": 1.087279999977909
}
} |
---|
12:59:44.179 | 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": [
463360
],
"durationInMs": 2.774320000084117
}
} |
---|
12:59:44.179 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
265,
"fr"
],
"durationInMs": 0.45300700003281236
}
} |
---|
12:59:44.179 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
242
],
"durationInMs": 0.44992199994158
}
} |
---|
12:59:44.179 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
231
],
"durationInMs": 0.3184689999325201
}
} |
---|
12:59:44.190 | info | http.response | {
"svelte": {
"route": {
"id": "/(frontend)/[[_country]]/user/[userId=integer]-[[userSlug]]"
},
"params": {
"_country": "cm",
"userId": "199323",
"userSlug": "mamoudou-ingenieur-d-affaires"
},
"clientAddress": "216.73.216.18",
"isDataRequest": false,
"isSubRequest": false
},
"http": {
"request": {
"id": "82B2PR2okuEZEuyjuCEn",
"method": "GET",
"bytes": null,
"mime_type": null,
"referrer": null,
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, br, zstd, deflate",
"connection": "close",
"cookie": "GOAFRICA_NEXT_SESSION_ID=ez8IhiQdh2GGEfH8Wr9xU7x8e58VQP6r0AB8AeQs; goafrica-ad-id=6891e3c78b4697.18975655; PHPSESSID=067bbae7228e5bbc31e81413aece3019",
"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": 127199,
"mime_type": "text/html",
"status_code": 200,
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, br, zstd, deflate",
"connection": "close",
"cookie": "GOAFRICA_NEXT_SESSION_ID=ez8IhiQdh2GGEfH8Wr9xU7x8e58VQP6r0AB8AeQs; goafrica-ad-id=6891e3c78b4697.18975655; PHPSESSID=067bbae7228e5bbc31e81413aece3019",
"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/cm/user/199323-mamoudou-ingenieur-d-affaires",
"original": "https://www.goa.goafrica.syazen.cloud/cm/user/199323-mamoudou-ingenieur-d-affaires",
"path": "/cm/user/199323-mamoudou-ingenieur-d-affaires",
"domain": "www.goa.goafrica.syazen.cloud",
"port": null,
"username": null,
"query": null,
"scheme": "https"
},
"profiling": {
"memoryUsage": 267214848,
"memoryUsageHuman": "254.8 MiB",
"requestTimeInMs": 28
}
} |
---|