OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
zzXpress
/
vendor
/
aws
/
aws-sdk-php
/
src
/
ClientSideMonitoring
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:23 AM
rwxr-xr-x
📄
AbstractMonitoringMiddleware.php
8.9 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
ApiCallAttemptMonitoringMiddleware.php
8.47 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
ApiCallMonitoringMiddleware.php
4.85 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
Configuration.php
1.68 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
ConfigurationInterface.php
879 bytes
05/19/2025 10:07:22 AM
rw-r--r--
📄
ConfigurationProvider.php
8.82 KB
05/19/2025 10:07:22 AM
rw-r--r--
📁
Exception
-
05/19/2025 10:07:22 AM
rwxr-xr-x
📄
MonitoringMiddlewareInterface.php
827 bytes
05/19/2025 10:07:22 AM
rw-r--r--
Editing: ConfigurationInterface.php
Close
<?php namespace Aws\ClientSideMonitoring; /** * Provides access to client-side monitoring configuration options: * 'client_id', 'enabled', 'host', 'port' */ interface ConfigurationInterface { /** * Checks whether or not client-side monitoring is enabled. * * @return bool */ public function isEnabled(); /** * Returns the Client ID, if available. * * @return string|null */ public function getClientId(); /** * Returns the configured host. * * @return string|null */ public function getHost(); /** * Returns the configured port. * * @return int|null */ public function getPort(); /** * Returns the configuration as an associative array. * * @return array */ public function toArray(); }