From 60e20ceeb13da9147c1d2a63034b4657fbf38369 Mon Sep 17 00:00:00 2001 From: James Cole Date: Mon, 25 May 2020 19:30:38 +0200 Subject: [PATCH] Add another telemetry entry --- app/Console/Commands/UpgradeFireflyInstructions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Console/Commands/UpgradeFireflyInstructions.php b/app/Console/Commands/UpgradeFireflyInstructions.php index 639a36936f..7b44c41c29 100644 --- a/app/Console/Commands/UpgradeFireflyInstructions.php +++ b/app/Console/Commands/UpgradeFireflyInstructions.php @@ -60,6 +60,7 @@ class UpgradeFireflyInstructions extends Command // collect system telemetry app('telemetry')->feature('system.php.version', PHP_VERSION); app('telemetry')->feature('system.os.version', PHP_OS); + app('telemetry')->feature('system.os.is_docker', env('IS_DOCKER', 'false')); app('telemetry')->feature('system.command.executed', $this->signature); return 0; }