This page displays detailed information about backup snapshots, including snapshot history and performance metadata. Use the snapshot details to monitor backup performance, analyze transfer speeds, and troubleshoot completion issues.
Note
Snapshot metadata features are available in Ops Manager 8.0+, 7.0.2, and 6.0.23 or later versions.
View Snapshot Details
The Snapshots page displays a table of recent snapshots with basic information including snapshot timestamps and completion status.
To view detailed snapshot metadata, click the json button next to any snapshot entry. The system displays comprehensive metadata about the snapshot operation in JSON format, including transfer speed, duration metrics, file counts, and storage size information.
Snapshot Metadata Fields
When you click the json button for a snapshot, Ops Manager displays detailed metadata in JSON format. The following table describes the metadata fields available in the Admin interface:
Field | Type | Description |
|---|---|---|
| number | Total number of files included in the snapshot. |
| string | Replica set identifier for the snapshot source. |
| string | Unique identifier for the snapshot. |
| string | Hostname and port of the source MongoDB instance from which the
snapshot was taken (e.g., |
| object | BSON timestamp object when the snapshot process started. Contains
|
| string | Current state of the snapshot. Common values include |
| number | Total storage size of the snapshot in bytes. |
| object | BSON timestamp object representing the oplog timestamp when the
snapshot was taken. Contains |
| number | Total time taken to complete the snapshot in seconds. |
| number | Average transfer speed during snapshot creation in megabytes per second. |
| object | BSON timestamp object containing the latest update time. Contains
|
| object | BSON timestamp object when the snapshot description was created.
Contains |
| object | BSON timestamp object when data transfer began. Contains |
| object | BSON timestamp object when the snapshot process ended. Contains
|
| string | Error message if the snapshot operation failed or encountered issues. |
| boolean | Indicates whether this snapshot uses incremental backup technology. |
| number | Total size of files in the snapshot in bytes. |
| number | Total size of data in the snapshot in bytes. |
| number | Total size of indexes in the snapshot in bytes. |
| number | Total compressed size of the snapshot in bytes. |
| number | Time taken to upload the file list in seconds. |
| number | Time taken to finalize the file list in seconds. |
| number | Time taken to upload data blocks in seconds. |
| number | Total number of blocks in the snapshot (incremental backups only). |
| number | Number of new blocks in the snapshot (incremental backups only). |
Example JSON Output
The following example shows typical snapshot metadata JSON output:
{ "numFiles": 65, "rsId": "rs0", "snapshotId": "507f1f77bcf86cd799439011", "sourceMongodHostName": "mongodb-host:27017", "startTimeTs": { "time": 1640995200, "inc": 1 }, "state": "COMPLETE", "storageSize": 2748416, "timestamp": { "time": 1640995260, "inc": 1 }, "totalDuration": 64, "transferSpeed": 1.03645833333333, "latestUpdateTs": { "time": 1640995264, "inc": 1 }, "endTimeTs": { "time": 1640995264, "inc": 1 }, "incrementalBackup": false, "fileSize": 2748416, "dataSize": 2500000, "indexSize": 248416, "compressedSize": 1800000, "fileListUploadDuration": 5, "finalizeFileListDuration": 3, "dataBlockUploadDuration": 56 }
Note
Snapshot metadata fields are available in Ops Manager 8.0+, 7.0.2, and 6.0.23.