Retrieve Log

get

/services/{version}/replicats/{replicat}/info/logs/{log}

Retrieve a log from the replicat process.

Request

Path Parameters
  • Minimum Length: 5
    Maximum Length: 14
    Pattern: ^[A-Z_$][A-Z0-9_$]{0,7}[-]{0,1}[1-9]{0,1}?[.](log)$

    The name of the log, which is the replicat name, followed by an optional revision number(as -number) and '.log'

  • Minimum Length: 1
    Maximum Length: 8
    Pattern: ^[A-Z_$][A-Z0-9_$]*$

    The name of the replicat. Replicat names are upper case, begin with an alphabetic character followed by up to seven alpha-numeric characters.

  • Oracle GoldenGate Service API version.

    Allowed Values: [ "v2" ]
Back to Top

Response

Supported Media Types

200 Response

Log retrieved successfully.

Body ()
Root Schema : Application log properties
Type: object
Title: Application log properties
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:11001/services/v2/replicats/REP2/info/logs/REP2.log",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services/v2/replicats/REP2/info/logs/REP2.log",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:11001/services/v2/metadata-catalog/replicatLog",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:log",
        "lines":[
            "",
            "INFO  2019-06-11 03:39:38.000375 [main] - Starting Java user-exit",
            "INFO  2019-06-11 03:39:40.000111 [main] - Loading configuration from properties file: GGS_USEREXIT_CONF='dirprm/cass.props' (Java system property (set to file path))",
            "INFO  2019-06-11 03:39:40.000111 [main] - Adding to classpath, gg.dirprm=./dirprm (GoldenGate Parameter Directory)",
            "INFO  2019-06-11 03:39:40.000112 [main] - Adding to classpath, gg.home=. (GoldenGate Installation Directory)",
            "INFO  2019-06-11 03:39:40.000112 [main] - Adding to classpath, gg.classpath=/scratch/sabbabu/ggsci/12.3.2.New/thirdparty/cass/*:/scratch/sabbabu/ggsci/12.3.2.New/thirdparty/cass/lib/* (Additional runtime classpath setting)",
            "INFO  2019-06-11 03:39:40.000953 [main] - ",
            "***********************************************************************",
            "Oracle GoldenGate for Big Data, 12.3.2.1.1.005",
            "Copyright (c) 2007, 2018. Oracle and/or its affiliates. All rights reserved",
            "Built with Java 1.8.0_161  (class version: 52.0)",
            "***********************************************************************",
            "INFO  2019-06-11 03:39:41.000353 [main] - Memory at Initialization : Max: 455.50 MB, Total: 92.50 MB, Free: 71.62 MB, Used: 20.88 MB",
            "INFO  2019-06-11 03:39:41.000396 [main] - Setting handler=cassandra: retry policy defaults. Startup policy: Retry policy: enableRetry=true, numRetry=0, exponentialDelay=no, retryDelayMS=0; Runtime policy:Retry policy: enableRetry=true, numRetry=0, exponentialDelay=no, retryDelayMS=0"
        ]
    }
}
Back to Top