Get MPS Historic Data

Use the REST API endpoint below to get the MPS historic data.

URL Syntax

For a GET:

/management/weblogic/latest/domainRuntime/MPSHistoricData

HTTP Methods

  • GET

Parameters

Table 17-20 URL Parameters

Names Description
links Set to none if you want to remove the links from the response. Set to an enumerated list of the links to return. For example:
.../MPSHistoricData?links=parent
fields Set to an enumerated list of the fields to return. For example:
.../MPSHistoricData?links=none&fields=MPSThisHourReport

Examples

Example 17-58 Get the MPS Historic Details

curl -u 'weblogic:<password>' \
    "http://10.0.0.1:7001/management/weblogic/latest/domainRuntime/MPSHistoricData"

Example response:

{
    "links": [
        {
            "rel": "parent",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/domainRuntime"
        },
        {
            "rel": "self",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/domainRuntime/MPSHistoricData"
        },
        {
            "rel": "canonical",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/domainRuntime/MPSHistoricData"
        }
    ],
    "MPSThisHourReport": [
        "StartTime : Thu Jan 12 06:00:00 IST 2023  EndTime : Thu Jan 12 06:05:00 IST 2023  Average Peak MPS : 0",
        "StartTime : Thu Jan 12 06:04:35 IST 2023  EndTime : Thu Jan 12 06:09:35 IST 2023  Average Peak MPS : 2",
        "StartTime : Thu Jan 12 06:09:10 IST 2023  EndTime : Thu Jan 12 06:14:10 IST 2023  Average Peak MPS : 2",
        "StartTime : Thu Jan 12 06:13:45 IST 2023  EndTime : Thu Jan 12 06:18:45 IST 2023  Average Peak MPS : 0",
        "StartTime : Thu Jan 12 06:18:20 IST 2023  EndTime : Thu Jan 12 06:23:20 IST 2023  Average Peak MPS : 0",
        "StartTime : Thu Jan 12 06:22:55 IST 2023  EndTime : Thu Jan 12 06:27:55 IST 2023  Average Peak MPS : 0",
        "StartTime : Thu Jan 12 06:27:30 IST 2023  EndTime : Thu Jan 12 06:32:30 IST 2023  Average Peak MPS : 0",
        "StartTime : Thu Jan 12 06:32:05 IST 2023  EndTime : Thu Jan 12 06:37:05 IST 2023  Average Peak MPS : 0"
    ],
    "MPSTodayReport": [
        "StartTime : Thu Jan 12 06:00:00 IST 2023  EndTime : Thu Jan 12 06:05:00 IST 2023  Average Peak MPS : 0",
        "StartTime : Thu Jan 12 06:04:35 IST 2023  EndTime : Thu Jan 12 06:09:35 IST 2023  Average Peak MPS : 2",
        "StartTime : Thu Jan 12 06:09:10 IST 2023  EndTime : Thu Jan 12 06:14:10 IST 2023  Average Peak MPS : 2",
        "StartTime : Thu Jan 12 06:13:45 IST 2023  EndTime : Thu Jan 12 06:18:45 IST 2023  Average Peak MPS : 0",
        "StartTime : Thu Jan 12 06:18:20 IST 2023  EndTime : Thu Jan 12 06:23:20 IST 2023  Average Peak MPS : 0",
        "StartTime : Thu Jan 12 06:22:55 IST 2023  EndTime : Thu Jan 12 06:27:55 IST 2023  Average Peak MPS : 0",
        "StartTime : Thu Jan 12 06:27:30 IST 2023  EndTime : Thu Jan 12 06:32:30 IST 2023  Average Peak MPS : 0",
        "StartTime : Thu Jan 12 06:32:05 IST 2023  EndTime : Thu Jan 12 06:37:05 IST 2023  Average Peak MPS : 0"
    ]
}

Example 17-59 Get the MPS Historic Details by Date

curl -u 'weblogic:<password>' \
    "http://10.0.0.1:7001/management/weblogic/latest/domainRuntime/MPSHistoricData/MPSData?fromDate=12/11/2022&toDate=01/12/2023"

Example response:

{
  "MPSDATA":[
    "StartTime : Thu Jan 12 06:00:00 IST 2023  EndTime : Thu Jan 12 06:05:00 IST 2023  Average Peak MPS : 0",
    "StartTime : Thu Jan 12 06:04:35 IST 2023  EndTime : Thu Jan 12 06:09:35 IST 2023  Average Peak MPS : 2",
    "StartTime : Thu Jan 12 06:09:10 IST 2023  EndTime : Thu Jan 12 06:14:10 IST 2023  Average Peak MPS : 2",
    "StartTime : Thu Jan 12 06:13:45 IST 2023  EndTime : Thu Jan 12 06:18:45 IST 2023  Average Peak MPS : 0",
    "StartTime : Thu Jan 12 06:18:20 IST 2023  EndTime : Thu Jan 12 06:23:20 IST 2023  Average Peak MPS : 0",
    "StartTime : Thu Jan 12 06:22:55 IST 2023  EndTime : Thu Jan 12 06:27:55 IST 2023  Average Peak MPS : 0",
    "StartTime : Thu Jan 12 06:27:30 IST 2023  EndTime : Thu Jan 12 06:32:30 IST 2023  Average Peak MPS : 0",
    "StartTime : Thu Jan 12 06:32:05 IST 2023  EndTime : Thu Jan 12 06:37:05 IST 2023  Average Peak MPS : 0"
  ]
}