Debug Controller Resource

GET /debug/system-time

Response Body
media type data type description
application/json StringDTO (JSON)

Example

Request
GET /debug/system-time
Content-Type: */*
Accept: application/json

                
...
                
              
Response
HTTP/1.1 200 OK
Content-Type: application/json

                
{ }
                
              

GET /debug/logs/levels

Response Body
media type data type description
application/json LogLevelSummaryResponseDto (JSON)

Example

Request
GET /debug/logs/levels
Content-Type: */*
Accept: application/json

                
...
                
              
Response
HTTP/1.1 200 OK
Content-Type: application/json

                
{ }
                
              

PUT /debug/logs/levels

Request Body
media type data type
application/json ChangeLogLevelRequestDto (JSON)

Example

Request
PUT /debug/logs/levels
Content-Type: application/json

                
{ }
                
              
Response
HTTP/1.1 204 No Content

              

GET /debug/logs/levels/{category}

Request Parameters
name type description
category path
Response Body
media type data type description
application/json LogLevelEntryResponseDto (JSON)

Example

Request
GET /debug/logs/levels/{category}
Content-Type: */*
Accept: application/json

                
...
                
              
Response
HTTP/1.1 200 OK
Content-Type: application/json

                
{ }
                
              

PUT /debug/logs/levels/{category}

Request Parameters
name type description
category path
Request Body
media type data type
application/json ChangeLogLevelRequestDto (JSON)

Example

Request
PUT /debug/logs/levels/{category}
Content-Type: application/json

                
{ }
                
              
Response
HTTP/1.1 204 No Content