prometheusでのdiscourse-prometheusの監視設定方法

Discourse と discourse-prometheus プラグインをインストールし、prometheus.yaml に以下の設定を追加しました。

- job_name: forums
  metrics_path: /metrics
  static_configs:
    - targets:
      - forums.kingsd.top
  scheme: https
  basic_auth:
    username: admin
    password: password

その後、Prometheus の対応するエンドポイントのステータスが常に DOWN であり、エラーログ server returned HTTP status 404 Not Found が表示されることに気づきました。

shared/standalone/log/rails/production.log で以下のエラーログが継続的に表示されます。

Started GET "/metrics" for 123.184.31.122 at 2022-03-17 11:03:34 +0000
ActionController::RoutingError (No route matches [GET] "/metrics")
config/initializers/100-quiet_logger.rb:23:in `call'
config/initializers/100-silence_logger.rb:31:in `call'
lib/middleware/enforce_hostname.rb:23:in `call'
lib/middleware/request_tracker.rb:202:in `call'
  Rendered exceptions/not_found.html.erb within layouts/no_ember (Duration: 0.3ms | Allocations: 193)
  Rendered layout layouts/no_ember.html.erb (Duration: 4.1ms | Allocations: 2216)
  Rendered html template (Duration: 0.0ms | Allocations: 2)

私の設定に何か問題がありますか?助けてください。

申し訳ありません、DISCOURSE_PROMETHEUS_TRUSTED_IP_ALLOWLIST_REGEX の設定を忘れていました。