1<?php
2
3// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
4// See the LICENCE file in the repository root for full licence text.
5
6namespace App\Libraries\User;
7
8class DatadogLoginAttempt
9{
10 public static function log($failReasonOrNull)
11 {
12 $success = $failReasonOrNull === null;
13
14 datadog_increment('login_attempts', [
15 'success' => (int) $success,
16 'reason' => $failReasonOrNull,
17 ]);
18 }
19}