ServerMonitoringDetailsDisk

(Difference between revisions)
Jump to: navigation, search
Line 1: Line 1:
 +
=='''GET''' /servers/'''id'''/monitoring/disk?''scope=monitoringScope''&''startDate=startDate''&''endDate=endDate''&''period=monitoringPeriod''&''method=statisticsMethod'''''==
 
This operation will list Disk monitoring details for a specific [[Server]].
 
This operation will list Disk monitoring details for a specific [[Server]].
  
='''GET''' /servers/'''id'''/monitoring/disk?''scope=monitoringScope''&''startDate=startDate''&''endDate=endDate''&''period=monitoringPeriod''&''method=statisticsMethod'''''=
+
=== Parameters ===
 
+
== Parameters ==
+
 
; id
 
; id
 
: The unique identifier of the server.
 
: The unique identifier of the server.
Line 22: Line 21:
 
: Statistics method used.  Possible values: '''avg''','''sum''','''min''' and '''max'''.
 
: Statistics method used.  Possible values: '''avg''','''sum''','''min''' and '''max'''.
  
== Result ==
+
=== Result ===
=== JSON ===
+
==== JSON ====
 
  [
 
  [
 
     {
 
     {
Line 46: Line 45:
 
: The sample value calculated depending on statistics method used.
 
: The sample value calculated depending on statistics method used.
  
== Response Codes ==
+
=== Response Codes ===
 
; Success:  
 
; Success:  
 
:''HTTP/1.1 200 OK''
 
:''HTTP/1.1 200 OK''
Line 55: Line 54:
 
:''HTTP/1.1 404 Not Found'' - The resource does not exist.
 
:''HTTP/1.1 404 Not Found'' - The resource does not exist.
  
== Examples ==
+
=== Examples ===
 
'''Successfully get Disk usage monitoring data'''
 
'''Successfully get Disk usage monitoring data'''
 
:'''GET''' http(s)://{api_server}/servers/{server_name}/monitoring/disk?scope=usage&startDate=2012-05-07&endDate=2012-05-10&period=86400&method=avg
 
:'''GET''' http(s)://{api_server}/servers/{server_name}/monitoring/disk?scope=usage&startDate=2012-05-07&endDate=2012-05-10&period=86400&method=avg
Line 294: Line 293:
 
     does not understand how to supply the credentials required.
 
     does not understand how to supply the credentials required.
  
 
+
[[Category:Hostway API]]
[[Category:API]]
+
[[Category:FlexCloud Server API]]
  
 
<!--  THIS CODE ENABLES DISQUS COMMENTS ON THE PAGE - DELETE TO DISABLE COMMENTING-->
 
<!--  THIS CODE ENABLES DISQUS COMMENTS ON THE PAGE - DELETE TO DISABLE COMMENTING-->

Revision as of 18:05, 14 December 2012

Contents

GET /servers/id/monitoring/disk?scope=monitoringScope&startDate=startDate&endDate=endDate&period=monitoringPeriod&method=statisticsMethod

This operation will list Disk monitoring details for a specific Server.

Parameters

id
The unique identifier of the server.
scope
The monitoring scope used. Possible values: usage, read_count, write_count, read_bytes and write_bytes.
startDate
Start date for monitoring details report in format yyyy-mm-dd hh:mm:ss.
endDate
End date for monitoring details report in format yyyy-mm-dd hh:mm:ss.
period
The time period in seconds used for data interval. Possible values: 3600(one hour) or 86400(one day).
method
Statistics method used. Possible values: avg,sum,min and max.

Result

JSON

[
   {
      "count": 144, 
      "date": "2012-05-07 00:00:00", 
      "values": 3.2083333333333002
   }, 
   {
      "count": 143, 
      "date": "2012-05-08 00:00:00", 
      "values": 6.0
   }
]
count - integer
The count of disk operations for the period specified.
date - string
The date and time stamp for the period specified.
values - float
The sample value calculated depending on statistics method used.

Response Codes

Success
HTTP/1.1 200 OK
The request is accepted for processing.
Failure
HTTP/1.1 400 Bad Request
HTTP/1.1 401 Unauthorized - This server could not verify that you are authorized to access the document you requested. Either you supplied the wrong credentials (e.g., bad password), or your browser does not understand how to supply the credentials required.
HTTP/1.1 404 Not Found - The resource does not exist.

Examples

Successfully get Disk usage monitoring data

GET http(s)://{api_server}/servers/{server_name}/monitoring/disk?scope=usage&startDate=2012-05-07&endDate=2012-05-10&period=86400&method=avg

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded username & password string

Response Code:

HTTP/1.1 200 OK

Response Body:

[
   {
      "count": 144, 
      "date": "2012-05-07 00:00:00", 
      "values": 3.2083333333333002
   }, 
   {
      "count": 143, 
      "date": "2012-05-08 00:00:00", 
      "values": 6.0
   }, 
   {
      "count": 144, 
      "date": "2012-05-09 00:00:00", 
      "values": 6.0
   }
]

Failure while trying to get Disk usage monitoring data with a bad scope parameter

GET http(s)://{api_server}/servers/{server_name}/monitoring/disk?scope=fake-scope&startDate=2012-05-07&endDate=2012-05-10&period=86400&method=avg

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded username & password string

Response Code:

HTTP/1.1 400 Bad Request

Response Body:

{
   "badRequest": {
      "message": "Bad request", 
      "code": 400, 
      "details": "The disk monitoring scope is not supported" 
   }
}

Failure while trying to get Disk usage monitoring data with a bad date parameter

GET http(s)://{api_server}/servers/{server_name}/monitoring/disk?scope=usage&startDate=fake-date&endDate=2012-05-10&period=86400&method=avg

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded username & password string

Response Code:

HTTP/1.1 400 Bad Request

Response Body:

{
   "badRequest": {
      "message": "Bad request", 
      "code": 400, 
      "details": {
         "startDate": "Invalid date"
      }
   }
}

Failure while trying to get Disk usage monitoring data with a bad period parameter

GET http(s)://{api_server}/servers/{server_name}/monitoring/disk?scope=usage&startDate=2012-05-07&endDate=2012-05-10&period=fake-period&method=avg

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded username & password string

Response Code:

HTTP/1.1 400 Bad Request

Response Body:

{
   "badRequest": {
      "message": "Bad request", 
      "code": 400, 
      "details": {
         "period": "\"fake-period\" is not a number"
      }
   }
}

Failure while trying to get Disk usage monitoring data with a bad method parameter

GET http(s)://{api_server}/servers/{server_name}/monitoring/disk?scope=usage&startDate=2012-05-07&endDate=2012-05-10&period=86400&method=fake-method

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded username & password string

Response Code:

HTTP/1.1 400 Bad Request

Response Body:

{
   "badRequest": {
      "message": "Bad request", 
      "code": 400, 
      "details": "Invalid statistics_method"
   }
}

Failure while trying to get Disk usage monitoring data with a missing scope parameter

GET http(s)://{api_server}/servers/{server_name}/monitoring/disk?startDate=2012-05-07&endDate=2012-05-10&period=86400&method=avg

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded username & password string

Response Code:

HTTP/1.1 400 Bad Request

Response Body:

{
   "badRequest": {
      "message": "Bad request", 
      "code": 400, 
      "details": "The disk monitoring scope is missing" 
   }
}

Failure while trying to get Disk usage monitoring data with a missing date parameter

GET http(s)://{api_server}/servers/{server_name}/monitoring/disk?scope=usage&endDate=2012-05-10&period=86400&method=avg

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded username & password string

Response Code:

HTTP/1.1 400 Bad Request

Response Body:

{
   "badRequest": {
      "message": "Bad request", 
      "code": 400, 
      "details": {
         "startDate": "Required"
      }
   }
}

Failure while trying to get Disk usage monitoring data with a missing period parameter

GET http(s)://{api_server}/servers/{server_name}/monitoring/disk?scope=usage&startDate=2012-05-07&endDate=2012-05-10&method=avg

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded username & password string

Response Code:

HTTP/1.1 400 Bad Request

Response Body:

{
   "badRequest": {
      "message": "Bad request", 
      "code": 400, 
      "details": {
         "period": "Required"
      }
   }
}

Failure while trying to get Disk usage monitoring data with a missing method parameter

GET http(s)://{api_server}/servers/{server_name}/monitoring/disk?scope=usage&startDate=2012-05-07&endDate=2012-05-10&period=86400

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded username & password string

Response Code:

HTTP/1.1 400 Bad Request

Response Body:

{
   "badRequest": {
      "message": "Bad request", 
      "code": 400, 
      "details": {
         "method": "Required"
      }
   }
}

Failure while trying to get disk usage monitoring data for a non-existent server

GET http(s)://{api_server}/servers/{fake-server_name}/monitoring/disk?scope=usage&startDate=2012-05-07&endDate=2012-05-10&period=86400&method=avg

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded username & password string

Response Code:

HTTP/1.1 404 Not Found

Response Body:

{
   "itemNotFound": {
      "message": "Resource not found", 
      "code": 404, 
      "details": ""
   }
}

Unauthorized access

GET http(s)://{api_server}/servers/{server_name}/monitoring/disk?scope=usage&startDate=2012-05-07&endDate=2012-05-10&period=86400&method=avg

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded fake_authentication_string

Response Code:

HTTP/1.1 401 Unauthorized

Response Body:

    401 Unauthorized
    This server could not verify that you are authorized to
    access the document you requested.  Either you supplied the
    wrong credentials (e.g., bad password), or your browser
    does not understand how to supply the credentials required.


blog comments powered by Disqus


Personal tools
Namespaces
Variants
Actions
APIs
Navigation
Toolbox