2022-01-23 00:28:13 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2022-01-23 00:28:13 +01:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\DataMapper\Analytics;
|
|
|
|
|
|
|
|
use Turbo124\Beacon\ExampleMetric\GenericMixedMetric;
|
|
|
|
|
|
|
|
class AccountPlatform extends GenericMixedMetric
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The type of Sample.
|
|
|
|
*
|
|
|
|
* Monotonically incrementing counter
|
|
|
|
*
|
|
|
|
* - counter
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $type = 'mixed_metric';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the counter.
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $name = 'account.platform';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The datetime of the counter measurement.
|
|
|
|
*
|
|
|
|
* date("Y-m-d H:i:s")
|
|
|
|
*
|
2023-04-26 08:55:49 +02:00
|
|
|
* @var \DateTime
|
2022-01-23 00:28:13 +01:00
|
|
|
*/
|
|
|
|
public $datetime;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Class failure name
|
|
|
|
* set to 0.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $string_metric5 = 'platform';
|
|
|
|
|
|
|
|
public $string_metric6 = 'user_agent';
|
|
|
|
|
|
|
|
public $string_metric7 = 'ip_address';
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
public function __construct($string_metric5, $string_metric6, $string_metric7)
|
|
|
|
{
|
2022-01-23 00:28:13 +01:00
|
|
|
$this->string_metric5 = $string_metric5;
|
|
|
|
$this->string_metric6 = $string_metric6;
|
|
|
|
$this->string_metric7 = $string_metric7;
|
|
|
|
}
|
|
|
|
}
|