Logo de Go Africa Online

GET
https://www.goa.goafrica.syazen.cloud/ne/user/237121-amadou-boube-abdoulaye

Response:
200
IP:
216.73.216.18
Date:
4 août 2025 à 22:56:53
Total execution time:
46 ms
Token:
cmOAJay2cS-p6d72REb7

Log Messages

Time Level Message Context
22:56:53.232
info
http.request
{
    "svelte": {
        "route": {
            "id": "/(frontend)/[[_country]]/user/[userId=integer]-[[userSlug]]"
        },
        "params": {
            "_country": "ne",
            "userId": "237121",
            "userSlug": "amadou-boube-abdoulaye"
        },
        "clientAddress": "216.73.216.18",
        "isDataRequest": false,
        "isSubRequest": false
    },
    "http": {
        "request": {
            "id": "cmOAJay2cS-p6d72REb7",
            "method": "GET",
            "bytes": null,
            "mime_type": null,
            "referrer": null,
            "headers": {
                "accept": "*/*",
                "accept-encoding": "gzip, br, zstd, deflate",
                "connection": "close",
                "cookie": "GOAFRICA_NEXT_SESSION_ID=0U7aYaMPyfY1EQWFoxyS4CDe0ZK3Myr35v4akD2W; goafrica-ad-id=68911e72748222.95126569; PHPSESSID=45baf616458739fd6b4a30f05253a435",
                "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/ne/user/237121-amadou-boube-abdoulaye",
        "original": "https://www.goa.goafrica.syazen.cloud/ne/user/237121-amadou-boube-abdoulaye",
        "path": "/ne/user/237121-amadou-boube-abdoulaye",
        "domain": "www.goa.goafrica.syazen.cloud",
        "port": null,
        "username": null,
        "query": null,
        "scheme": "https"
    },
    "profiling": {
        "memoryUsage": 246677504,
        "memoryUsageHuman": "235.3 MiB"
    }
}
22:56:53.238
debug
kysely.query
{
    "kysely": {
        "sql": "select `id` from `cms_post` where `cms_post`.`slug` = ? limit ?",
        "parameters": [
            "questions-go-africa",
            1
        ],
        "durationInMs": 0.7140809996053576
    }
}
22:56:53.241
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `user` where `user`.`id` in (?)",
        "parameters": [
            237121
        ],
        "durationInMs": 3.0810859999619424
    }
}
22:56:53.247
debug
kysely.query
{
    "kysely": {
        "sql": "select count(*) as `count` from `cms_post` where `online` = ? and JSON_CONTAINS(`countries`, JSON_ARRAY(?)) = ?",
        "parameters": [
            1,
            "NE",
            true
        ],
        "durationInMs": 9.338948000222445
    }
}
22:56:53.248
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": [
            237121
        ],
        "durationInMs": 2.4969860003329813
    }
}
22:56:53.248
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `cms_post` as `o` where `o`.`id` in (?)",
        "parameters": [
            36
        ],
        "durationInMs": 9.422852999996394
    }
}
22:56:53.248
debug
kysely.query
{
    "kysely": {
        "sql": "select `id` from `portfolio_media` where `user_id` = ? order by `rank` asc",
        "parameters": [
            237121
        ],
        "durationInMs": 2.90703499969095
    }
}
22:56:53.248
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `following` where `author_id` = ? order by `date` desc",
        "parameters": [
            237121
        ],
        "durationInMs": 2.8514829999767244
    }
}
22:56:53.249
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": [
            237121,
            2
        ],
        "durationInMs": 3.0138330003246665
    }
}
22:56:53.249
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": [
            237121,
            237121,
            237121,
            1
        ],
        "durationInMs": 3.435482000000775
    }
}
22:56:53.249
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": [
            237121,
            237121,
            237121,
            237121,
            1,
            1
        ],
        "durationInMs": 3.4808060000650585
    }
}
22:56:53.249
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": [
            237121
        ],
        "durationInMs": 3.111983999609947
    }
}
22:56:53.249
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": [
            237121
        ],
        "durationInMs": 3.2012990000657737
    }
}
22:56:53.249
debug
kysely.query
{
    "kysely": {
        "sql": "select `user_id`, `category_id` from `user_interested_category` where `user_id` in (?)",
        "parameters": [
            237121
        ],
        "durationInMs": 1.629323000088334
    }
}
22:56:53.250
debug
kysely.query
{
    "kysely": {
        "sql": "select `user_id`, `id` from `user_resume` where `user_id` in (?)",
        "parameters": [
            237121
        ],
        "durationInMs": 1.4814800000749528
    }
}
22:56:53.250
debug
kysely.query
{
    "kysely": {
        "sql": "select `user_id`, `id` from `user_formation` where `user_id` in (?) order by `rank` asc",
        "parameters": [
            237121
        ],
        "durationInMs": 1.4668419999070466
    }
}
22:56:53.250
debug
kysely.query
{
    "kysely": {
        "sql": "select `user_id`, `id` from `user_experience` where `user_id` in (?) order by `rank` asc",
        "parameters": [
            237121
        ],
        "durationInMs": 1.687579999677837
    }
}
22:56:53.251
debug
kysely.query
{
    "kysely": {
        "sql": "select `user_id`, `id` from `user_lang` where `user_id` in (?)",
        "parameters": [
            237121
        ],
        "durationInMs": 1.9570689997635782
    }
}
22:56:53.251
debug
kysely.query
{
    "kysely": {
        "sql": "select `user_id`, `id` from `user_skill` where `user_id` in (?)",
        "parameters": [
            237121
        ],
        "durationInMs": 2.059598000254482
    }
}
22:56:53.251
debug
kysely.query
{
    "kysely": {
        "sql": "select `user_id`, `id` from `user_coordinate` where `user_id` in (?) and `type` != ?",
        "parameters": [
            237121,
            ""
        ],
        "durationInMs": 1.9920839997939765
    }
}
22:56:53.251
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,
            485,
            1
        ],
        "durationInMs": 2.0007389998063445
    }
}
22:56:53.251
debug
kysely.query
{
    "kysely": {
        "sql": "select `user_id`, `status` from `user_job_status` where `user_id` in (?)",
        "parameters": [
            237121
        ],
        "durationInMs": 3.8877590000629425
    }
}
22:56:53.252
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `media__media` as `m` where `m`.`id` in (?)",
        "parameters": [
            151833
        ],
        "durationInMs": 2.462201999966055
    }
}
22:56:53.252
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `user_formation` where `id` in (?)",
        "parameters": [
            585
        ],
        "durationInMs": 2.2560609998181462
    }
}
22:56:53.253
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `user_experience` where `id` in (?, ?, ?)",
        "parameters": [
            549,
            548,
            547
        ],
        "durationInMs": 2.933182999957353
    }
}
22:56:53.254
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `user_lang` where `id` in (?, ?, ?, ?, ?, ?)",
        "parameters": [
            1642,
            1643,
            1644,
            1645,
            1646,
            1647
        ],
        "durationInMs": 3.1240570000372827
    }
}
22:56:53.254
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
        "parameters": [
            85,
            "fr"
        ],
        "durationInMs": 2.8210260001942515
    }
}
22:56:53.254
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
        "parameters": [
            485,
            "fr"
        ],
        "durationInMs": 5.117161999922246
    }
}
22:56:53.255
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": [
            580389
        ],
        "durationInMs": 1.5279359999112785
    }
}
22:56:53.255
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `company` where `company`.`id` in (?)",
        "parameters": [
            580389
        ],
        "durationInMs": 1.9183269999921322
    }
}
22:56:53.256
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `company` where `company`.`id` in (?)",
        "parameters": [
            25969
        ],
        "durationInMs": 1.80022899992764
    }
}
22:56:53.256
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
        "parameters": [
            77
        ],
        "durationInMs": 1.5271939998492599
    }
}
22:56:53.256
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": [
            580389
        ],
        "durationInMs": 3.2801450002007186
    }
}
22:56:53.257
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": [
            25969
        ],
        "durationInMs": 2.7510270001366735
    }
}
22:56:53.257
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": [
            25969
        ],
        "durationInMs": 2.788246000185609
    }
}
22:56:53.257
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `category` where `category`.`id` in (?)",
        "parameters": [
            188
        ],
        "durationInMs": 1.4963469998911023
    }
}
22:56:53.257
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
        "parameters": [
            188,
            "fr"
        ],
        "durationInMs": 1.7544139996170998
    }
}
22:56:53.258
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
        "parameters": [
            199,
            "fr"
        ],
        "durationInMs": 2.032286999747157
    }
}
22:56:53.258
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
        "parameters": [
            398
        ],
        "durationInMs": 3.3834359999746084
    }
}
22:56:53.258
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `category` where `category`.`id` in (?)",
        "parameters": [
            199
        ],
        "durationInMs": 2.3346959999762475
    }
}
22:56:53.258
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
        "parameters": [
            183,
            "fr"
        ],
        "durationInMs": 1.4836130002513528
    }
}
22:56:53.259
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
        "parameters": [
            169
        ],
        "durationInMs": 0.9172859997488558
    }
}
22:56:53.259
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
        "parameters": [
            178
        ],
        "durationInMs": 0.817181000020355
    }
}
22:56:53.259
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
        "parameters": [
            165
        ],
        "durationInMs": 0.34550900012254715
    }
}
22:56:53.259
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
        "parameters": [
            197,
            "fr"
        ],
        "durationInMs": 0.6961770001798868
    }
}
22:56:53.259
debug
kysely.query
{
    "kysely": {
        "sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
        "parameters": [
            177
        ],
        "durationInMs": 0.1748629999347031
    }
}
22:56:53.278
info
http.response
{
    "svelte": {
        "route": {
            "id": "/(frontend)/[[_country]]/user/[userId=integer]-[[userSlug]]"
        },
        "params": {
            "_country": "ne",
            "userId": "237121",
            "userSlug": "amadou-boube-abdoulaye"
        },
        "clientAddress": "216.73.216.18",
        "isDataRequest": false,
        "isSubRequest": false
    },
    "http": {
        "request": {
            "id": "cmOAJay2cS-p6d72REb7",
            "method": "GET",
            "bytes": null,
            "mime_type": null,
            "referrer": null,
            "headers": {
                "accept": "*/*",
                "accept-encoding": "gzip, br, zstd, deflate",
                "connection": "close",
                "cookie": "GOAFRICA_NEXT_SESSION_ID=0U7aYaMPyfY1EQWFoxyS4CDe0ZK3Myr35v4akD2W; goafrica-ad-id=68911e72748222.95126569; PHPSESSID=45baf616458739fd6b4a30f05253a435",
                "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": 178824,
            "mime_type": "text/html",
            "status_code": 200,
            "headers": {
                "accept": "*/*",
                "accept-encoding": "gzip, br, zstd, deflate",
                "connection": "close",
                "cookie": "GOAFRICA_NEXT_SESSION_ID=0U7aYaMPyfY1EQWFoxyS4CDe0ZK3Myr35v4akD2W; goafrica-ad-id=68911e72748222.95126569; PHPSESSID=45baf616458739fd6b4a30f05253a435",
                "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/ne/user/237121-amadou-boube-abdoulaye",
        "original": "https://www.goa.goafrica.syazen.cloud/ne/user/237121-amadou-boube-abdoulaye",
        "path": "/ne/user/237121-amadou-boube-abdoulaye",
        "domain": "www.goa.goafrica.syazen.cloud",
        "port": null,
        "username": null,
        "query": null,
        "scheme": "https"
    },
    "profiling": {
        "memoryUsage": 255254528,
        "memoryUsageHuman": "243.4 MiB",
        "requestTimeInMs": 46
    }
}