Get a list of the deployment extracts with their trail files

get

/services/{version}/exttrails

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Body ()
Root Schema : Oracle GoldenGate List of extracts and their trail files
Type: object
Title: Oracle GoldenGate List of extracts and their trail files
Show Source
Nested Schema : extracts
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 32767
List of extracts and their trail files info
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : trails
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 32767
List of trail files for this extract
Show Source
Nested Schema : items
Type: object
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:9002/services/v2/exttrails",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:9002/services/v2/exttrails",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:extractTrailsList",
        "extracts":[
            {
                "isRunning":true,
                "name":"EXT1",
                "trails":[
                    {
                        "name":"X1",
                        "offset":1448,
                        "sequence":1,
                        "sequenceLength":9,
                        "sequenceLengthFlip":false,
                        "sizeMB":500
                    }
                ]
            },
            {
                "isRunning":true,
                "name":"EXT2",
                "trails":[
                    {
                        "name":"X2",
                        "offset":1389,
                        "sequence":0,
                        "sequenceLength":9,
                        "sequenceLengthFlip":false,
                        "sizeMB":500
                    }
                ]
            },
            {
                "isRunning":true,
                "name":"EXT3",
                "trails":[
                    {
                        "name":"X3",
                        "offset":1389,
                        "sequence":0,
                        "sequenceLength":9,
                        "sequenceLengthFlip":false,
                        "sizeMB":500
                    },
                    {
                        "name":"X4",
                        "offset":0,
                        "sequence":0,
                        "sequenceLength":6,
                        "sequenceLengthFlip":true,
                        "sizeMB":500
                    },
                    {
                        "name":"X5",
                        "offset":0,
                        "sequence":0,
                        "sequenceLength":6,
                        "sequenceLengthFlip":true,
                        "sizeMB":500
                    }
                ]
            }
        ]
    }
}
Back to Top