logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 414902cd9e61d19d4dcd848f60b47beaf23c095f
parent: 20deff75f153ffbd5076e992c7ed3c19ac551535
Author: kaniini <nenolod@gmail.com>
Date:   Mon, 22 Apr 2019 18:31:01 +0000

Merge branch 'add-healthcheck-setting-to-config' into 'develop'

added healthcheck setting to instance config

See merge request pleroma/pleroma!1088

Diffstat:

Mconfig/config.exs3++-
Mdocs/config.md1+
Mlib/pleroma/web/twitter_api/controllers/util_controller.ex9+++++++--
3 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/config/config.exs b/config/config.exs @@ -230,7 +230,8 @@ config :pleroma, :instance, welcome_user_nickname: nil, welcome_message: nil, max_report_comment_size: 1000, - safe_dm_mentions: false + safe_dm_mentions: false, + healthcheck: false config :pleroma, :markup, # XXX - unfortunately, inline images must be enabled by default right now, because diff --git a/docs/config.md b/docs/config.md @@ -103,6 +103,7 @@ config :pleroma, Pleroma.Emails.Mailer, * `welcome_user_nickname`: The nickname of the local user that sends the welcome message. * `max_report_comment_size`: The maximum size of the report comment (Default: `1000`) * `safe_dm_mentions`: If set to true, only mentions at the beginning of a post will be used to address people in direct messages. This is to prevent accidental mentioning of people when talking about them (e.g. "@friend hey i really don't like @enemy"). (Default: `false`) +* `healthcheck`: if set to true, system data will be shown on ``/api/pleroma/healthcheck``. ## :logger * `backends`: `:console` is used to send logs to stdout, `{ExSyslogger, :ex_syslogger}` to log to syslog, and `Quack.Logger` to log to Slack diff --git a/lib/pleroma/web/twitter_api/controllers/util_controller.ex b/lib/pleroma/web/twitter_api/controllers/util_controller.ex @@ -365,10 +365,15 @@ defmodule Pleroma.Web.TwitterAPI.UtilController do end def healthcheck(conn, _params) do - info = Pleroma.Healthcheck.system_info() + info = + if Pleroma.Config.get([:instance, :healthcheck]) do + Pleroma.Healthcheck.system_info() + else + %{} + end conn = - if info.healthy do + if info[:healthy] do conn else Plug.Conn.put_status(conn, :service_unavailable)