Unable to scrape data from nc

Currently i’m already enable the nextcloud node exporter app info to true thru helm chart but unfortunately can’t scrape any data.

Node Exporter Config:

    metrics:
      enabled: true
      tlsSkipVerify: false
      info:
        apps: true
<?php
$CONFIG = array (
  'htaccess.RewriteBase' => '/',
  'memcache.local' => '\\OC\\Memcache\\APCu',
  'apps_paths' =>
  array (
    0 =>
    array (
      'path' => '/var/www/html/apps',
      'url' => '/apps',
      'writable' => false,
    ),
    1 =>
    array (
      'path' => '/var/www/html/custom_apps',
      'url' => '/custom_apps',
      'writable' => true,
    ),
  ),
  'memcache.distributed' => '\\OC\\Memcache\\Redis',
  'memcache.locking' => '\\OC\\Memcache\\Redis',
  'redis' =>
  array (
    'host' => 'nextcloud-redis-master',
    'password' => xxxxx',
    'port' => 6379,
  ),
  'upgrade.disable-web' => true,
  'passwordsalt' => '<<<redacted by wwe>>>',
  'secret' => '<<<redacted by wwe>>>',
  'trusted_domains' =>
  array (
    0 => 'localhost',
    1 => 'nextcloud-metrics.nextcloud.svc.cluster.local:9205'
  ),
  'datadirectory' => '/var/www/html/data',
  'dbtype' => 'sqlite3',
  'version' => '30.0.10.1',
  'overwrite.cli.url' => 'http://localhost',
  'dbname' => 'nextcloud',
  'installed' => true,
  'instanceid' => '<<<redacted by wwe>>>',
  'overwriteprotocol' => 'https',
  'loglevel' => 2,
  'maintenance' => false,
);

Error Logs:

in the system info config settings you will find the URL where metrics are exposed and you can access this URL using browser, curl or any other tool. Please try and show the result (repeat from nextcloud-exporter container if your desktop works)