Monitoring
Docker Container Monitoring
The light form of monitoring is provided out of box by Portainer. For detailed information about status of docker container, please use external, third-party monitoring solutions.
Functional Monitoring
Health page executes periodically (default each 10s) functional test. This Health Page provides basic functional test and operation status information.
Note: See more details in Deployment - Health Check
Load Balancing Target Well Known Configuration or Health Page
GET https://{hostname}/auth/realms/{realm}/.well-known/openid-configuration
Well Known Configuration
https://{hostname}/auth/realms//{realm}/.well-known/openid-configuration
Response 200 OK
{
"issuer": "https://{hostname}/auth/realms/{realm}",
"authorization_endpoint": "https://{hostname}/auth/realms/{realm}/protocol/openid-connect/auth",
"token_endpoint": "https://{hostname}/auth/realms/{realm}/protocol/openid-connect/token",
"token_introspection_endpoint": "https://{hostname}/auth/realms/{realm}/protocol/openid-connect/token/introspect",
"userinfo_endpoint": "https://{hostname}/auth/realms/{realm}/protocol/openid-connect/userinfo",
"end_session_endpoint": "https://{hostname}/auth/realms/{realm}/protocol/openid-connect/logout",
"jwks_uri": "https://{hostname}/auth/realms/{realm}/protocol/openid-connect/certs",
"check_session_iframe": "https://{hostname}/auth/realms/{realm}/protocol/openid-connect/login-status-iframe.html",
"grant_types_supported": [
"authorization_code",
"implicit",
"refresh_token",
"password",
"client_credentials"
],
"response_types_supported": [
"code",
"none",
"id_token",
"token",
"id_token token",
"code id_token",
"code token",
"code id_token token"
],
"subject_types_supported": [
"public",
"pairwise"
],
"id_token_signing_alg_values_supported": [
"ES384",
"RS384",
"HS256",
"HS512",
"ES256",
"RS256",
"HS384",
"ES512",
"RS512"
],
"userinfo_signing_alg_values_supported": [
"ES384",
"RS384",
"HS256",
"HS512",
"ES256",
"RS256",
"HS384",
"ES512",
"RS512",
"none"
],
"request_object_signing_alg_values_supported": [
"none",
"RS256"
],
"response_modes_supported": [
"query",
"fragment",
"form_post"
],
"registration_endpoint": "https://hostname.de/auth/realms/{realm}/clients-registrations/openid-connect",
"token_endpoint_auth_methods_supported": [
"private_key_jwt",
"client_secret_basic",
"client_secret_post",
"client_secret_jwt"
],
"token_endpoint_auth_signing_alg_values_supported": [
"RS256"
],
"claims_supported": [
"sub",
"iss",
"auth_time",
"name",
"given_name",
"family_name",
"preferred_username",
"email"
],
"claim_types_supported": [
"normal"
],
"claims_parameter_supported": false,
"scopes_supported": [
"openid",
"email",
"address",
"profile",
"offline_access",
"phone"
],
"request_parameter_supported": true,
"request_uri_parameter_supported": true,
"code_challenge_methods_supported": [
"plain",
"S256"
],
"tls_client_certificate_bound_access_tokens": true
}
Response 503 Service Unavailable
<html><body><b/>Http/1.1 Service Unavailable<b/></body> </html>
Note: This may vary according to versions and configurations.