Navigation
This version of the documentation is archived and no longer supported.

rs.conf()

On this page

Definition

rs.conf()

Returns a document that contains the current replica set configuration.

The method wraps the replSetGetConfig command.

Output Example

The following document provides a representation of a replica set configuration document. The configuration of your replica set may include only a subset of these settings:

{
  _id: <string>,
  version: <int>,
  members: [
    {
      _id: <int>,
      host: <string>,
      arbiterOnly: <boolean>,
      buildIndexes: <boolean>,
      hidden: <boolean>,
      priority: <number>,
      tags: <document>,
      slaveDelay: <int>,
      votes: <number>
    },
    ...
  ],
  settings: {
    getLastErrorDefaults : <document>,
    chainingAllowed : <boolean>,
    getLastErrorModes : <document>,
    heartbeatTimeoutSecs: <int>
  }
}

For a description of the replica set configuration settings, see Replica Set Configuration Fields.

rs.config()

rs.config() is an alias of rs.conf().

←   rs.addArb() rs.freeze()  →