OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
email
/
vendor
/
aws
/
aws-sdk-php
/
src
/
ClientSideMonitoring
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
07/10/2024 05:27:40 AM
rwxr-xr-x
📄
AbstractMonitoringMiddleware.php
8.9 KB
07/10/2024 05:23:24 AM
rw-r--r--
📄
ApiCallAttemptMonitoringMiddleware.php
8.47 KB
07/10/2024 05:23:24 AM
rw-r--r--
📄
ApiCallMonitoringMiddleware.php
4.85 KB
07/10/2024 05:23:24 AM
rw-r--r--
📄
Configuration.php
1.68 KB
07/10/2024 05:23:24 AM
rw-r--r--
📄
ConfigurationInterface.php
879 bytes
07/10/2024 05:23:24 AM
rw-r--r--
📄
ConfigurationProvider.php
8.82 KB
07/10/2024 05:23:24 AM
rw-r--r--
📁
Exception
-
07/10/2024 05:26:15 AM
rwxr-xr-x
📄
MonitoringMiddlewareInterface.php
827 bytes
07/10/2024 05:23:24 AM
rw-r--r--
Editing: MonitoringMiddlewareInterface.php
Close
<?php namespace Aws\ClientSideMonitoring; use Aws\CommandInterface; use Aws\Exception\AwsException; use Aws\ResultInterface; use GuzzleHttp\Psr7\Request; use Psr\Http\Message\RequestInterface; /** * @internal */ interface MonitoringMiddlewareInterface { /** * Data for event properties to be sent to the monitoring agent. * * @param RequestInterface $request * @return array */ public static function getRequestData(RequestInterface $request); /** * Data for event properties to be sent to the monitoring agent. * * @param ResultInterface|AwsException|\Exception $klass * @return array */ public static function getResponseData($klass); public function __invoke(CommandInterface $cmd, RequestInterface $request); }