Retrieve

get

/services/{version}/datastore

Required Role: User

Retrieve the details of the datastore

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Body ()
Root Schema : Oracle GoldenGate Performance Metrics Service Data Store
Type: object
Title: Oracle GoldenGate Performance Metrics Service Data Store
Show Source
  • Allowed Values: [ "monitoring:datastore" ]
  • Minimum Value: 5000
    Maximum Value: 50000
    Default Value: 10000
    Mpoint Collector Queue max size
  • Minimum Value: 3
    Maximum Value: 25
    Default Value: 5
    Mpoint Collector Number of Worker Threads
  • Minimum Value: 5000
    Maximum Value: 10000
    Default Value: 5000
    Max Databases
  • Minimum Value: 5
    Maximum Value: 60
    Default Value: 10
    Process monitoring heartbeat timeout in seconds
  • Minimum Length: 1
    Maximum Length: 4096
    The path for the datastore storage. If not set, the datastore will be created in a default directory.
  • If set to true, the datastore will be reinitialized upon restart.
  • If set to true, the datastore will be repaired upon restart.
  • Minimum Value: 0
    Maximum Value: 365
    Default Value: 0
    The number of days to retain performance metrics data. If zero, data will be retained indefinitely.
  • Default Value: BDB
    Allowed Values: [ "BDB", "LMDB" ]
    The type of datastore storage, either Berkeley Database (BDB) or Lightning Memory-Mapped Database (LMDB).
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "rel":"canonical",
            "href":"http://127.0.0.1:9015/services/v2/datastore",
            "mediaType":"application/json"
        },
        {
            "rel":"self",
            "href":"http://127.0.0.1:9015/services/v2/datastore",
            "mediaType":"application/json"
        },
        {
            "rel":"describedby",
            "href":"http://127.0.0.1:9015/services/v2/metadata-catalog/datastore",
            "mediaType":"application/schema+json"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"monitoring:datastore",
        "type":"LMDB",
        "retentionDays":"30",
        "collectorWorkerThreads":"5",
        "collectorWorkerQueueLimit":"10000",
        "monitorHeartBeatTimeout":"10",
        "dataStoreMaxDBs":"5000"
    }
}
Back to Top