-
Is your feature request related to a problem? Please describe. Describe the solution you'd like Describe alternatives you've considered Additional context |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
check http://localhost:8080/admin/#apiExplorer curl --header "X-OpenIDM-Username: openidm-admin" --header "X-OpenIDM-Password: openidm-admin" 'http://localhost:8080/openidm/health/os'
{
"_id": "",
"_rev": "",
"availableProcessors": 8,
"systemLoadAverage": 2.546875,
"operatingSystemArchitecture": "amd64",
"operatingSystemName": "Linux",
"operatingSystemVersion": "6.6.26-linuxkit"
}
curl --header "X-OpenIDM-Username: openidm-admin" --header "X-OpenIDM-Password: openidm-admin" 'http://localhost:8080/openidm/health/memory'
{
"_id": "",
"_rev": "",
"objectPendingFinalization": 0,
"heapMemoryUsage": {
"init": 50331648,
"used": 106042160,
"committed": 186646528,
"max": 780140544
},
"nonHeapMemoryUsage": {
"init": 7667712,
"used": 136360512,
"committed": 139722752,
"max": -1
}
}
curl --header "X-OpenIDM-Username: openidm-admin" --header "X-OpenIDM-Password: openidm-admin" 'http://localhost:8080/openidm/health/recon'
{
"_id": "",
"_rev": "",
"activeThreads": 0,
"corePoolSize": 10,
"largestPoolSize": 0,
"maximumPoolSize": 10,
"currentPoolSize": 0
}
curl --header "X-OpenIDM-Username: openidm-admin" --header "X-OpenIDM-Password: openidm-admin" 'http://localhost:8080/openidm/health/jdbc'
{
"code": 503,
"reason": "Service Unavailable",
"message": "BoneCP statistics mbean not enabled"
} |
Beta Was this translation helpful? Give feedback.
-
Thank you, I'm just wondering why in OpenIg the necessary is displayed on the url "/monitor", and in OpenIDM - a set of different queries? |
Beta Was this translation helpful? Give feedback.
check http://localhost:8080/admin/#apiExplorer