GET api/tsmtimeline/details

Gets summary of TSM timeline based on the date range specified

Resource Information
Requires authentication? Yes (HTTP authentication using user name and API key)
Response formats JSON
Example URL
  api/tsmtimeline/details?nodeGuid=7E08BD44-752F-4839-9F2A-840E5CB028A6&startdate=2016-01-01 00:00&enddate=2016-03-01 00:00  
Parameters
Name Description
nodeGuid
required
Unique identifier for the predatar agent. If not specified, then the data for all the TSM servers with version 6 or above will be retrieved.
nodeGroupId
optional
Id of the node group
startDate
optional
Start date in the format yyyy-MM-dd HH:mm. If not specified, then the default value will be used, which will be seven days before the current date
endDate
optional
End date in the format yyyy-MM-dd HH:mm. If not specified, then the default value will be used, which will be the current date
processView
optional
Can be true or false. If false, then all the process including IDENTIFY and EXPIRATION will be included in the stats, otherwise IDENTIFY and EXPIRATION processes will be excluded. The default is true.
isClientSession
optional
Can be true or false. If true then stats of TSM client sessions will be retrieved. The default value is true.
clientSessionReportType
optional
Type of data to be retrieved (e.g., ClientSessionsDetail, NumberOfClientSessions). The default value is ClientSessionsDetail.
isServerProcess
optional
Can be true or false. If true then stats of TSM server processes will be retrieved. The default value is true.
serverProcessReportType
optional
Type of data to be retrieved (e.g., ServerProcessesDetail, NumberOfServerProcesses). The default value is ServerProcessesDetail.
selectedDateTime
optional
Selected date in the format yyyy-MM-dd HH:mm. If not specified, then the default value will be used, which will be the current date
Example Result
[
  {
    "label": "Client Sessions Details",
    "data": [
      {
        "NodeName": "AG1-SQL-01_SQL",
        "SessionNumber": 194545,
        "Activity": "BACKUP",
        "VolumeName": null,
        "StartTime": "2016-03-13T23:18:12",
        "EndTime": "2016-03-13T23:18:12",
        "CommWait": 0,
        "Idle": 0,
        "Mediaw": 0.0,
        "Bytes": 0.0,
        "Examined": 0.0,
        "Affected": 29.0,
        "Failed": 0.0,
        "Successful": "YES"
      },
      {
        "NodeName": "TSM_AG01_SQL",
        "SessionNumber": 194547,
        "Activity": "BACKUP",
        "VolumeName": null,
        "StartTime": "2016-03-13T23:16:21",
        "EndTime": "2016-03-13T23:16:21",
        "CommWait": 0,
        "Idle": 0,
        "Mediaw": 0.0,
        "Bytes": 0.0,
        "Examined": 0.0,
        "Affected": 57.0,
        "Failed": 0.0,
        "Successful": "YES"
      },
      {
        "NodeName": "TSM_AG01_SQL",
        "SessionNumber": 194549,
        "Activity": "BACKUP",
        "VolumeName": null,
        "StartTime": "2016-03-13T23:16:16",
        "EndTime": "2016-03-13T23:16:16",
        "CommWait": 0,
        "Idle": 0,
        "Mediaw": 0.0,
        "Bytes": 0.0,
        "Examined": 0.0,
        "Affected": 42.0,
        "Failed": 0.0,
        "Successful": "YES"
      },
      {
        "NodeName": "TSM_AG01_SQL",
        "SessionNumber": 194551,
        "Activity": "BACKUP",
        "VolumeName": null,
        "StartTime": "2016-03-13T23:16:16",
        "EndTime": "2016-03-13T23:16:16",
        "CommWait": 0,
        "Idle": 0,
        "Mediaw": 0.0,
        "Bytes": 0.0,
        "Examined": 0.0,
        "Affected": 47.0,
        "Failed": 0.0,
        "Successful": "YES"
     }
    ]
  },
  {
    "label": "TSM Server Processes Details",
    "data": [
      {
        "ProcessID": 0,
        "Activity": "SQL_PR01_XJF",
        "VolumeName": null,
        "StartTime": "2016-03-13T23:52:01",
        "EndTime": "2016-03-13T23:52:01",
        "Entity": "TSM01715",
        "Mediaw": 0.0,
        "Bytes": 48698.88,
        "Examined": 0.0,
        "Affected": 0.0,
        "Failed": 0.0,
        "Successful": "YES"
      },
      {
        "ProcessID": 0,
        "Activity": "REPL_SQL",
        "VolumeName": null,
        "StartTime": "2016-03-13T23:52:01",
        "EndTime": "2016-03-13T23:52:01",
        "Entity": "TSM01715",
        "Mediaw": 0.0,
        "Bytes": 0.0,
        "Examined": 0.0,
        "Affected": 0.0,
        "Failed": 0.0,
        "Successful": "YES"
      },
      {
        "ProcessID": 0,
        "Activity": "REPL_PR01_SQL",
        "VolumeName": null,
        "StartTime": "2016-03-13T23:52:01",
        "EndTime": "2016-03-13T23:52:01",
        "Entity": "TSM01715",
        "Mediaw": 0.0,
        "Bytes": 0.0,
        "Examined": 0.0,
        "Affected": 0.0,
        "Failed": 0.0,
        "Successful": "YES"
      },
      {
        "ProcessID": 0,
        "Activity": "REPL_PR01_SQL",
        "VolumeName": null,
        "StartTime": "2016-03-13T23:52:01",
        "EndTime": "2016-03-13T23:52:01",
        "Entity": "TSM01715",
        "Mediaw": 0.0,
        "Bytes": 2151.37,
        "Examined": 0.0,
        "Affected": 0.0,
        "Failed": 0.0,
        "Successful": "YES"
     }
    ]
  }
]