����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 18.221.79.24 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/public_html/vendor/rackspace/php-opencloud/doc/services/monitoring/ |
Upload File : |
Zones ===== A monitoring zone is a location that Rackspace Cloud Monitoring collects data from. Examples of monitoring zones are "US West", "DFW1" or "ORD1". It is an abstraction for a general location from which data is collected. An "endpoint," also known as a "collector," collects data from the monitoring zone. The endpoint is mapped directly to an individual machine or a virtual machine. A monitoring zone contains many endpoints, all of which will be within the IP address range listed in the response. The opposite is not true, however, as there may be unallocated IP addresses or unrelated machines within that IP address range. A check references a list of monitoring zones it should be run from. Get details about a zone ------------------------ .. code-block:: php $zone = $monitoringService->getMonitoringZone('{zoneId}'); +-----------------+------------------+-----------------------------------+------------------------+ | Name | Description | Data type | Method | +=================+==================+===================================+========================+ | country_code | Country Code | String longer than 2 characters | ``getCountryCode()`` | +-----------------+------------------+-----------------------------------+------------------------+ | label | Label | String | ``getLabel()`` | +-----------------+------------------+-----------------------------------+------------------------+ | source_ips | Source IP list | Array | ``getSourceIps()`` | +-----------------+------------------+-----------------------------------+------------------------+ List all zones --------------- .. code-block:: php $zones = $service->getMonitoringZones(); Perform a traceroute -------------------- .. code-block:: php $traceroute = $zone->traceroute(array( 'target' => 'http://test.com', 'target_resolver' => 'IPv4' )); // How many hops? echo count($traceroute); // What was the first hop's IP? echo $traceroute[0]->ip;