2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

LaravelでSlackへの通知設定してるとき、例外発生時にスタックトレースを送らないようにする

Posted at

やりたかったこと

LaravelでSlackに直接ログを通知するようにしてるとき。
例外が発生したときのSlack通知で。
スタックトレースは送らないようにしたい。
(Slackの通知用チャンネルがエライことになった)

実行環境

Laravel 5.7

やったこと

logging.php に設定追加すれば完了!

        'slack' => [
            'driver' => 'slack',
            'url' => env('LOG_SLACK_WEBHOOK_URL'),
            'username' => 'Laravel Log',
            'emoji' => ':boom:',
            'level' => 'critical',
+           'context' => false,
        ],

どうなるのか

こういう通知が届くようになります。
恐ろしく長いスタックトレースで流されずにすみます。
スクリーンショット 2020-03-07 1.30.33.png

(設定ミスったままmigrateを実行した図)

ドキュメントに載ってなかったけど、コード読んでたら見つけました。

vendor/laravel/framework/src/Illuminate/Log/LogManager.php
    /**
     * Create an instance of the Slack log driver.
     *
     * @param  array  $config
     * @return \Psr\Log\LoggerInterface
     */
    protected function createSlackDriver(array $config)
    {
        return new Monolog($this->parseChannel($config), [
            $this->prepareHandler(new SlackWebhookHandler(
                $config['url'],
                $config['channel'] ?? null,
                $config['username'] ?? 'Laravel',
                $config['attachment'] ?? true,
                $config['emoji'] ?? ':boom:',
                $config['short'] ?? false,
                $config['context'] ?? true,
                $this->level($config),
                $config['bubble'] ?? true,
                $config['exclude_fields'] ?? []
            ), $config),
        ]);
    }

引数はこちらで
https://github.com/Seldaek/monolog/blob/master/src/Monolog/Handler/SlackWebhookHandler.php#L40-L49

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?