For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
    • NVIDIA Switch Infrastructure
    • I want to...
  • Quick Start
    • Start Here
    • Getting Started with Config Manager
    • TUI Wizard Reference
    • Configuration Samples
    • Interfaces
    • Local Development Quick Start
    • First Run Tour
  • Config Manager Overview
    • Config Manager Concepts
    • Getting Started with Nautobot
  • User Guides
    • New Site Bringup
    • Workflow Lifecycle
  • Deployment
    • Hosting Options
    • Network Topology Requirements
    • Firewall Ports
    • Airgapped Deployment
    • Troubleshooting
  • Services
      • Overview
      • Architecture
        • GETCurrent User Info
          • GETCheck cache service status
          • GETTest cache lookup for a device
          • GETList all devices
          • GETSearch devices by name with latest config info
          • DELPermanently delete all configs for a device
          • GETGet database statistics
NVIDIANVIDIA
Developer-friendly docs for your API
Privacy Policy | Your Privacy Choices | Terms of Service | Accessibility | Corporate Policies | Product Security | Contact

Copyright © 2026, NVIDIA Corporation.

LogoLogo
ServicesConfig Store ServiceConfig Store APIadmin

Get database statistics

||View as Markdown|
GET
https://host.com/v1/admin/stats
GET
/v1/admin/stats
$curl https://host.com/v1/admin/stats \
> -H "Content-Type: application/json"
200Retrieved
1{
2 "storage_bytes": 524288000,
3 "storage_mb": 500,
4 "total_config_versions": 12500,
5 "unique_devices": 350,
6 "unique_files": 875
7}
Get statistics about the config store.
Previous

Permanently delete all configs for a device

Next

Get all configs for a device

Response

Successful Response
storage_bytesinteger

Total storage used in bytes (compressed)

storage_mbdouble

Total storage used in MB (compressed)

total_config_versionsinteger
Total number of config file versions
unique_devicesinteger
Number of unique devices with configs
unique_filesinteger

Number of unique config files (device + filename)