RESTful API Functions


 

Additional documentation items that are related to this manual are listed below.

For all API functions in this section, the URI given is the part of the URL that follows “http://tas-ip-address:8080/api”. So, a URI given as “…/sessions/” would have the complete URL: “http://tas-ip-address:8080/api/sessions/”.

Top Level Utilities

These are some simple requests you can make at the top level. For a complete list refer to Swagger UI on Landslide Home Page.

GET libraryIds POST logout
POST startupCode Usage

Test Servers

These are some functions that you can execute on test servers. For a complete list refer to Swagger UI on Landslide Home Page.

GET testservers GET tsUpgrades

Test Sessions

These are some functions that you can execute on test sessions, specifically related to running test sessions. For a complete list refer to Swagger UI on Landslide Home Page.

NOTEs:

  • Parameters in a previously saved Test Session can be overridden/modified and either be saved over original test, saved to a new test, or saved over another existing test.

  • The override part is done similar to how test sessions can be overridden when they are started, so not all parameters can be overridden.  

  • The override and save is done from the …/api/libraries/<ID>/testSessions/<NAME>  URL resource.

  • From this resource you can also delete test sessions.

 

GET runningstests POST runningtests

 

Import a Test Suite to the TAS via the RESTFul API.    

List all Installed Test Suites:  

  • GET …api/testSuites

Retrieve one of the test suites:

  • GET …/api/testSuites/<FILENAME>

 

Delete one of the test suites:

  • DELETE …/api/testSuites/<FILENAME>

Upload one of the test suits:  

  • POST …/api/testSuites/<FILENAME>     (Content-type=application/binary, HTTP body should be the binary file data)

 

 

Examples:

GET libraryIds

Retrieves a list of all the libraries on the TAS and their IDs.

Syntax

Resource

Description

GET …/libraryIds/

Retrieve a JSON listing of all library names and IDs.

 

Query Arguments

None

 

Request JSON

None

 

Response JSON

 

{

   "NAME1": ID1,

   "NAME2": ID2,

   "NAMEn": IDn

}

Errors

HTTP Status

ApiCode

Reason

Description

404

404011

Invalid URL, expected .../libraryIds

The URL is incorrect

405

405010

Invalid Request Method, only GET supported for libraryIds/

The HTTP Request Method is not GET

 

 

Example:

Request

GET /api/libraryIds HTTP/1.1
  Authorization: BASIC ABCDEFG123456
  Content-Length: 0

 
 

Response

HTTP/1.1 200 OK

Api-Version:  1.0

Content-Type:  application/json

Access-Control-Allow-Origin:  *

Content-Length:  1171


{

  "[Basic]": -3,

  "[Global]": 0,

  "[Studio Base Applications]": -500,

  "[Studio Vulnerabilities and Malware]": -501,

  "[Custom Imported]": -502,

  "{DAN}": -54,

  "{tmp}": -44,

  "{Diego}": -43,

  "{CopyMoveTests}": -41,

  "{DMF Analysis}": -40,

  "{REST}": -39,

  "aaron": 1199,

  "chandra": 35,

  "dan": 3581,

  "dan/FromCustomers": 69117,

  "dan/FromPV": 134653,

  "dan/ATandT": 200189,

  "dan/DRA": 265725,

  "dan/IMS": 331261,

  "dan/Training": 396797,

  "dan/NSN": 462333,

  "dan/upgrade": 527869,

  "dan/DMFTesting": 593405,

  "daniel": 20101,

  "sms": 342,

  "sysadmin": 9298,

  "Test": 23631,

  "testadmin": 19866,

  "tester": 5456,

  "tim": 8161

}

POST logout

Forces a logout of the current user.  Returns a 401 code if successful.

Syntax

 

Resource

Description

POST …/logout/

Forces a logout of the current user.

 

Query Arguments

 

None

Request JSON

 

None

Response JSON

 

None

Errors

 

HTTP Status

ApiCode

Reason

Description

404

404011

Invalid URL, expected .../libraryIds

The URL is incorrect

 

 

Example:

Request

POST /api/logout HTTP/1.1
  Authorization: BASIC ABCDEFG123456
  Content-Type: application/json

 

Response

HTTP/1.1 401 Logout

WWW-Authenticate:  Basic realm=TASIP"

Access-Control-Allow-Origin:  *

Content-Length:  0

POST startupCode

Submits a license startup code to the TAS.  Returns a 200 OK with a confirmation in the JSON on success.

Syntax

Resource

Description

POST …/startupCode/

Posts the startupCode to the TAS, the code is provided in JSON.

POST …/startupCode?code=<CODE>

Posts the startupCode to the TAS, the code is provided in the Query

 

Query Arguments

Parameter

Type

Description

code

String

The BASE64 encoded code or password to unlock the TAS license.    Optionally can be provided in JSON.

 

Request JSON

When the code is not provided in the Query arguments.

{

   "code": STARTUP_CODE_BASE64_ENCODED

}

 

Response JSON

{

   "result": CONFIRMATION_MSG

}

Errors

 

HTTP Status

ApiCode

Reason

Description

404

404002

Invalid URL, expected .../startupCode

The URL is incorrect

405

405001

Invalid Request Method, only POST supported for startupCode/

The HTTP Request Method is not POST

400

400002

startupCode code argument not found in request, in either query or json

The code is missing

400

400003

Invalid startupCode code provided

The code is wrong

410

410003

startupCode was already confirmed

The code was already submitted successfully, the TAS is unlocked

400

400001

Invalid request JSON, <ERROR>

The JSON provided did not parse for some reason

 

 

Example:

Request

POST /api/startupCode?code=ABCDFER12345 HTTP/1.1
  Authorization: BASIC ABCDEFG123456
  Content-Length: 0

  

Response

HTTP/1.1 200 OK

Api-Version:  1.0

Content-Type:  application/json

Access-Control-Allow-Origin:  *

Content-Length:  59


{

  "result": "startupCode accepted, system unlocked"

}  

GET  testServers/

Retrieves a list of the test servers on the TAS.   Returns a 200 OK and a JSON listing of all provisioned test servers on the TAS, with high level information about each.

Syntax

 

Resource

Description

GET …/testServers/

Retrieve a JSON listing of all test servers.

 

Query Arguments

 

None

Request JSON

 

None

Response JSON

 

{

 "testServers": [

    {

      "url": URL_TO_TS,

      "id": TS_ID,

      "name": TS_NAME,

      "status": TS_STATUS,

      "version": TS_VERSION

    },

    {

      …NEXT_TS

    }

  ]

}

Errors

 

HTTP Status

ApiCode

Reason

Description

404

404101

Invalid URL, expected .../testServers

The URL is incorrect

405

405104

Invalid Request Method, only GET supported for testServers/

The HTTP Request Method is not GET

 

 

Example:

Request

GET /api/testServers/ HTTP/1.1
  Authorization: BASIC ABCDEFG123456
  Content-Length: 0

Response

HTTP/1.1 200 OK

Api-Version:  1.0

Content-Type:  application/json

Access-Control-Allow-Origin:  *

Content-Length:  1171

 

{

 "testServers": [

    {

      "url": "http://TASIP:8080/api/testServers/8",

      "id": 8,

      "name": "Coast04",

      "status": "READY 0/3",

      "version": "13.5.0.27"

    },

    {

      "url": "http://TASIP:8080/api/testServers/9",

      "id": 9,

      "name": "Coast06",

      "status": "READY 0/3",

      "version": "13.5.0.27"

    },

    {

      "url": "http://TASIP:8080/api/testServers/10",

      "id": 10,

      "name": "Coast22",

      "status": "NOT_READY (NO COMM)",

      "version": ""

    }

   ]

}

GET  tsUpgrades/

Retrieves a list of the test server upgrade files available on the TAS.   Returns a 200 OK and a JSON listing of all available test server upgrade files on the TAS.

Syntax

 

Resource

Description

GET …/tsUpgrades/

Retrieve a JSON listing of all upgrade files.

 

Query Arguments

 

None

Request JSON

 

None

Response JSON

 

{

 "tsUpgrades": [

    {

      "url": URL_TO_FILE,

      "id": FILE_ID,

      "name": FILE_NAME

    },

    {

      …NEXT_FILE

    }

  ]

}

Errors

 

HTTP Status

ApiCode

Reason

Description

404

404301

Invalid URL, expected .../tsUpgrades

The URL is incorrect

405

405305

Invalid Request Method, only GET supported for tsUpgrades/

The HTTP Request Method is not GET

 

 

Example:

Request

GET /api/tsUpgrades/ HTTP/1.1
  Authorization: BASIC ABCDEFG123456
  Content-Length: 0

 
 

Response

HTTP/1.1 200 OK

Api-Version:  1.0

Content-Type:  application/json

Access-Control-Allow-Origin:  *

Content-Length:  235

 

{

"tsUpgrades": [

    {

      "url": "http://TASIP:8080/api/tsUpgrades/0",

      "id": "0",

      "name": "coast_13.3.1.12.tsu",

    },

    {

      "url": "http://TASIP:8080/api/tsUpgrades/1",

      "id": "1",

      "name": "coast_12.5.0.8.tsu",

    },

    {

      "url": "http://TASIP:8080/api/tsUpgrades/2",

      "id": "2",

      "name": "coast_12.0.0.7.tsu",

    },

    {

      "url": "http://TASIP:8080/api/tsUpgrades/3",

      "id": "3",

      "name": "coast_13.5.0.26.tsu",

    },

    {

      "url": "http://TASIP:8080/api/tsUpgrades/4",

      "id": "4",

      "name": "coast_13.3.0.25.tsu",

    },

    {

      "url": "http://TASIP:8080/api/tsUpgrades/5",

      "id": "5",

      "name": "coast_13.5.0.25.tsu",

    },

    {

      "url": "http://TASIP:8080/api/tsUpgrades/6",

      "id": "6",

      "name": "coast_13.0.0.23.tsu",

    },

    {

      "url": "http://TASIP:8080/api/tsUpgrades/7",

      "id": "7",

      "name": "coast_13.3.1.8.tsu",

    }

   ]

}

 

GET  runningTests/

Retrieves a list of the running or completed (live) test sessions currently on the TAS.   Returns a 200 OK and a JSON listing of all live test sessions on the TAS, with high level information about each.

Syntax

 

Resource

Description

GET …/runningTests/

Retrieve a JSON listing of all live test sessions.

 

Query Arguments

 

None

Request JSON

 

None

Response JSON

 

{

 "runningtests": [

   {

   "url": TEST_URL,

   "measurementsUrl": TEST_MEASUREMENTS_URL,

   "id": TEST_RUN_ID,

   "library": TEST_LIBRARY_ID,

   "name": TEST_NAME,

   "user": TEST_USER_THAT_STARTED,

   "criteriaStatus": TEST_PASS_FAIL_STATUS,

   "testStateOrStep": TEST_OVERALL_STATE_OR_STEP

   },

   {

     …NEXT_TEST

   }

  ]

}

Errors

 

HTTP Status

ApiCode

Reason

Description

404

404101

Invalid URL, expected .../runningTests

The URL is incorrect

405

405208

Invalid Request Method, only GET/POST supported for runningTests/

The HTTP Request Method is not GET or POST

 

 

Example:

Request

GET /api/runningTests/ HTTP/1.1
  Authorization: BASIC ABCDEFG123456
  Content-Length: 0

 
 

Response

HTTP/1.1 200 OK

Api-Version:  1.0

Content-Type:  application/json

Access-Control-Allow-Origin:  *

Content-Length:  300

 

{

 "runningtests": [

   {

   "url": "http://TASIP:8080/api/runningtests/1",

   "measurementsUrl": "http://TASIP:8080/api/runningtests/1/measurements",

   "id": 1,

   "library": -39,

   "name": "SGW_Node_SUT",

   "user": "sms",

   "passfailstatus": "NA",

   "status": "RUNNING"

   }

  ]

}

POST  runningTests/

Starts a test session.   Returns a 201 Created and a JSON short listing of the started test session on success.

Syntax

 

Resource

Description

POST …/runningTests/

Starts a test session.

 

Query Arguments

 

None

Request JSON

 

To start a test as defined:

{

   "library": LIBRARY_TEST_SESSION_IS_IN,

   "name": NAME_OF_TEST_SESSION_TO_START

}

To start a test and override configuration, provide an overlay of the TsGroups and TestCases, with the parameters that should be overridden:

{

   "library": LIBRARY_TEST_SESSION_IS_IN,

   "name": NAME_OF_TEST_SESSION_TO_START,

   "tsGroups": [

      {

        "tsId": NEW_TS_ID,

        "testcases": [

         {

            "parameters": {

               "NAME1": NEW_VALUE1,

               "NAME2": NEW_VALUE2,

               "NAMEn": NEW_VALUEn

            }

         },

         {

            "parameters": {

               "NAME1": NEW_VALUE1,

               "NAME2": NEW_VALUE2,

               "NAMEn": NEW_VALUEn

            }

         }

       ]

     }

   ]

}

For overriding, the Parameter “NAME” must already exist in the test case.  You only have to provide the parameters you will override.  Only Basic, Tdf, Array, TestNode, Sut, WifiNode, MessageEditor, LongHex, and LibraryItemInfo classes support parameterization.

Response JSON

 

{

   "url": TEST_URL,

   "id": TEST_RUN_ID,

   "library": TEST_LIBRARY_ID,

   "name": TEST_NAME,

   "user": TEST_USER_THAT_STARTED,

   "testStateOrStep": TEST_OVERALL_STATE_OR_STEP

}

Errors

 

HTTP Status

ApiCode

Reason

Description

404

404101

Invalid URL, expected .../runningTests

The URL is incorrect

405

405208

Invalid Request Method, only GET/POST supported for runningTests/

The HTTP Request Method is not GET or POST

 

 

Example:

Request

POST /api/runningTests/ HTTP/1.1
  Authorization: BASIC ABCDEFG123456
  Content-Type: application/json

  Content-Length: 55

 

{

   "library": -39,

   "name": "SGW_Node_SUT"

}
 

Response

HTTP/1.1 201 Created

Api-Version:  1.0

Content-Type:  application/json

Access-Control-Allow-Origin:  *

Content-Length:  122

 

{

   "url": "http://TASIP:8080/api/runningtests/1",

   "id": 1,

   "library": -39,

   "name": "SGW_Node_SUT",

   "user": "sms",

   "testStateOrStep": "STARTED"

}

 

Usage

 

RESTFul API comes in three options:    TASIP:8080/api/usage,  TASIP:8080/api/usage?period=hourly, TASIP:8080/api/usage?period=daily

The Hourly file is updated every hour, Daily file is updated every day at midnight.    RESTful API will reflect most current values

 

Added four new queries, user=[username], dayOfYear=[1-366], hour=[0-23], date=[yyyy-MM-dd].

 

If the user has not been active at all, the user query will return blank data, and all other queries that include users will just not show an entry for that user.   And if you delete a user from the TAS, that user's old stats will still be queryable until the day rolls over (hourly stats), or the year rolls over (daily stats).

 

NOTE: Upgrade/Downgrade considerations:
  • The stats on your current TAS will be maintained when you upgrade to 15.0.  However if you downgrade back to <15.0, your 15.0 stats will be lost, as the <15.0 TAS will not know how to read the persistent data.  
  • For existing files, the new fields/columns have been added to the end so if you have any tools already parsing the existing information they should still work for the original fields/columns.

 


CSV Usage Stat files:

We are now writing out multiple lines for the same hour/day, when you stop/start a TAS.   The last row for the given hour or day would contain the most accurate values.  We added two new files, UserHourlyUsasge.csv and UserDailyUsage.csv, which can be retrieved from http just like the others.

These files have an additional column for the user, in the second column.
hour,user,....
day,user....
You get one line for each user-hour and each user-day.


Standard query returns current/previous totals only

 

http://10.71.114.99:8080/api/usage

 

{

   "asOf": "2019/03/20 15:20",

   "usersUrl": "http://10.71.114.99:8080/api/usage/users",

   "currentHour": {

 

      "maxRunningTestServers": 0,

      "testServerUtilizationPercentage": 0,

      "totalGuiLogins": 0,

      "totalLoggedInMinutes": 19,

      "totalRestRequests": 1,

      "totalSaves": 0,

      "totalTclLogins": 0,

      "totalTestCaseMinutes": 0,

      "totalTestCases": 0,

      "totalTestServerProcessMinutes": 0,

      "users": {

 

         "sms": {

             "totalGuiLogins": 0,

             "totalLoggedInMinutes": 19,

             "totalRestRequests": 1,

             "totalSaves": 0,

             "totalTestCaseMinutes": 0,

             "totalTestCases": 0,

             "totalTclLogins": 0

          }

       }

   },

   "lastHour": {

 

      "maxRunningTestServers": 0,

      "testServerUtilizationPercentage": 0,

      "totalGuiLogins": 0,

      "totalLoggedInMinutes": 59,

      "totalRestRequests": 0,

      "totalSaves": 0,

      "totalTclLogins": 0,

      "totalTestCaseMinutes": 0,

      "totalTestCases": 0,

      "totalTestServerProcessMinutes": 0,

      "users": {

 

         "sms": {

             "totalGuiLogins": 0,

             "totalLoggedInMinutes": 59,

             "totalRestRequests": 0,

             "totalSaves": 0,

             "totalTestCaseMinutes": 0,

             "totalTestCases": 0,

             "totalTclLogins": 0

          }

       }

   },

   "today": {

 

      "maxRunningTestServers": 0,

      "testServerUtilizationPercentage": 0,

      "totalGuiLogins": 0,

      "totalLoggedInMinutes": 919,

      "totalRestRequests": 29,

      "totalSaves": 0,

      "totalTclLogins": 0,

      "totalTestCaseMinutes": 0,

      "totalTestCases": 0,

      "totalTestServerProcessMinutes": 0,

      "users": {

 

         "sms": {

             "totalGuiLogins": 0,

             "totalLoggedInMinutes": 919,

             "totalRestRequests": 29,

             "totalSaves": 0,

             "totalTestCaseMinutes": 0,

             "totalTestCases": 0,

             "totalTclLogins": 0

         }

      }

   },

   "yesterday": {

 

      "maxRunningTestServers": 0,

      "testServerUtilizationPercentage": 0,

      "totalGuiLogins": 0,

      "totalLoggedInMinutes": 1440,

      "totalRestRequests": 66,

      "totalSaves": 0,

      "totalTclLogins": 0,

      "totalTestCaseMinutes": 0,

      "totalTestCases": 0,

      "totalTestServerProcessMinutes": 0,

      "users": {

 

         "sms": {

             "totalGuiLogins": 0,

             "totalLoggedInMinutes": 1440,

             "totalRestRequests": 66,

             "totalSaves": 0,

             "totalTestCaseMinutes": 0,

             "totalTestCases": 0,

             "totalTclLogins": 0

          }

       }

 

   }

}

 

http://10.71.114.99:8080/api/usage?period=hourly

 

{
   "asOf": "2019/03/20 15:25",
   "usersUrl": "http://10.71.114.99:8080/api/usage/users?period=hourly",
   "hourlyUsage": {
      "0": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 59,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "1": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 59,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 59,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "3": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 59,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "4": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 59,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "5": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 59,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "6": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 59,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "7": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 59,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "8": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 59,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "9": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 59,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "10": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 59,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "11": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 60,
         "totalRestRequests": 26,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "12": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 59,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "13": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 60,
         "totalRestRequests": 2,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "14": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 59,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "15": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 24,
         "totalRestRequests": 3,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      }
   }
}

 

http://10.71.114.99:8080/api/usage?period=daily

 

{
   "asOf": "2019/03/20 15:25",
   "usersUrl": "http://10.71.114.99:8080/api/usage/users?period=daily",
   "dailyUsage": {
      "2019/01/01": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/02": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/03": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/04": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/05": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/06": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/07": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/08": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/09": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/10": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/11": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/12": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/13": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/14": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/15": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/16": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/17": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/18": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/19": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/20": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/21": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/22": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/23": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/24": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/25": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/26": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/27": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/28": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/29": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/30": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/01/31": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/01": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/02": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/03": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/04": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/05": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/06": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/07": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/08": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/09": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/10": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/11": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/12": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/13": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/14": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/15": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/16": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/17": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/18": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/19": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/20": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/21": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/22": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/23": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/24": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/25": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/26": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/27": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/02/28": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/01": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/02": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/03": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/04": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/05": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/06": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/07": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/08": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/09": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/10": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/11": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/12": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/13": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/14": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/15": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/16": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/17": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 0,
         "totalRestRequests": 0,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/18": {
         "maxRunningTestServers": 8,
         "testServerUtilizationPercentage": 38,
         "totalGuiLogins": 1,
         "totalLoggedInMinutes": 570,
         "totalRestRequests": 34,
         "totalSaves": 7,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 1736,
         "totalTestCases": 8,
         "totalTestServerProcessMinutes": 1733
      },
      "2019/03/19": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 1440,
         "totalRestRequests": 66,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      },
      "2019/03/20": {
         "maxRunningTestServers": 0,
         "testServerUtilizationPercentage": 0,
         "totalGuiLogins": 0,
         "totalLoggedInMinutes": 924,
         "totalRestRequests": 32,
         "totalSaves": 0,
         "totalTclLogins": 0,
         "totalTestCaseMinutes": 0,
         "totalTestCases": 0,
         "totalTestServerProcessMinutes": 0
      }
   }
}