db.printSlaveReplicationInfo()

Definition

Output

The following is example output from thedb.printSlaveReplicationInfo() method issued on a replica setwith two secondary members:

  1. source: m1.example.net:27017
  2. syncedTo: Thu Apr 10 2014 10:27:47 GMT-0400 (EDT)
  3. 0 secs (0 hrs) behind the primary
  4. source: m2.example.net:27017
  5. syncedTo: Thu Apr 10 2014 10:27:47 GMT-0400 (EDT)
  6. 0 secs (0 hrs) behind the primary

Note

The db.printSlaveReplicationInfo() in the mongo shell does not returnJSON. Use db.printSlaveReplicationInfo() for manual inspection, andrs.status() in scripts.

A delayed member may show as 0seconds behind the primary when the inactivity period on the primary isgreater than the members[n].slaveDelayvalue.