Export and Analysis
Export your volume data for reporting, analysis, and documentation purposes.
Exporting Volume Data
Export Overview
The Volumes Dashboard provides data export functionality to download all volume information for external analysis and reporting.
Export Benefits
- Create infrastructure documentation
- Analyze storage distribution
- Generate compliance reports
- Share with team members
- Import into analysis tools
- Maintain records
- Plan capacity
- Track costs
Export Process
Step 1: Prepare Data
- Navigate to Volumes Dashboard
- All volumes automatically included
- No filtering required
- Refresh for latest data
Step 2: Access Export
- Locate header area
- Click overflow menu (three dots)
- Find "Export Volumes" option
- Click to start export
Step 3: Download File
- Export begins
- JSON file generated
- Browser automatically downloads
- File saves to Downloads folder
- Notification confirms export
Step 4: File Received
- File named: volumes-YYYY-MM-DD.json
- Contains all volume data
- Ready for analysis
- Portable format
Export File Format
JSON Structure
File Format
[
{
"app": "application-name",
"volume": "volume-name",
"size": 50,
"region": "us-east-1",
"created": "2024-01-15T10:30:00Z"
}
]
Data Fields
| Field | Description |
|---|---|
| app | Application name owning volume |
| volume | Volume name/identifier |
| size | Storage size in GB |
| region | Geographic region |
| created | ISO 8601 timestamp |
Data Included
Comprehensive Data
- All applications with volumes
- Every volume per application
- Complete size information
- Region details
- Creation timestamps
- Application associations
Data Completeness
- Includes all deployed applications
- Shows all volumes
- Current state captured
- Snapshot time recorded
- No data filtered
Opening Exported Files
Using JSON Files
Text Editor
- Open any text editor
- File → Open
- Select volumes JSON file
- View content
- Format appears structured
JSON Viewer
- Use online JSON viewer
- Paste file content
- Visual tree display
- Easier navigation
- Format highlighting
Command Line
# View file content
cat volumes-2024-01-15.json
# Pretty print
cat volumes-2024-01-15.json | jq .
# Filter specific app
cat volumes-2024-01-15.json | jq '.[] | select(.app == "payment-service")'
Importing to Tools
Spreadsheet Application
- Open Google Sheets or Excel
- File → Import
- Select volumes JSON file
- Configure import settings
- Data appears in spreadsheet
Database
- Connect to database
- Import JSON data
- Create volumes table
- Query and analyze
- Generate reports
Analysis Tools
- Load JSON into tool
- Configure data mapping
- Create visualizations
- Generate reports
- Export results
Analysis and Reporting
Volume Statistics
Calculate Metrics
Total Storage
Sum of all volume sizes
= Sum(size for all volumes)
By Application
Total per app
= Sum(size for volumes in app)
By Region
Total per region
= Sum(size for volumes in region)
Average Values
Average volume size
= Total storage / Number of volumes
Average per app
= Total storage / Number of apps
Common Analyses
Distribution Analysis
- Storage by application
- Storage by region
- Application storage needs
- Regional distribution
- Identify outliers
Capacity Planning
- Current usage trends
- Growth projections
- Future requirements
- Budget planning
- Resource allocation
Cost Analysis
- Storage by region (costs vary)
- Large volume identification
- Optimization opportunities
- Budget tracking
- Cost forecasting
Report Generation
Summary Report
Volume Summary Report
====================
Total Applications: 5
Total Volumes: 12
Total Storage: 2,190 GB
By Application:
- payment-service: 80 GB (3 volumes)
- user-api: 300 GB (2 volumes)
- analytics-worker: 850 GB (3 volumes)
- media-processor: 1,000 GB (1 volume)
- notification-service: 40 GB (2 volumes)
By Region:
- us-east-1: 170 GB
- eu-west-1: 10 GB
- ap-south-1: 300 GB
- us-west-2: 550 GB
- eu-central-1: 300 GB
- ap-northeast-1: 1,000 GB
Using Exported Data
Documentation
Infrastructure Documentation
- Export current volumes
- Include in runbooks
- Add to architecture docs
- Share with team
- Update regularly
Compliance Documentation
- Volume inventory
- Storage locations
- Data residency
- Retention policies
- Audit trail
Team Sharing
Share with Stakeholders
- Export volume data
- Create summary report
- Share spreadsheet
- Present findings
- Discuss optimization
Team Collaboration
- Upload to shared drive
- Team members review
- Discuss findings
- Plan improvements
- Document decisions
Integration
With Other Systems
- Import to billing system
- Feed into monitoring tools
- Sync with documentation
- Update configuration management
- Integrate with automation
Data Validation
Verify Exported Data
Check Completeness
- Count applications
- Count volumes
- Verify totals match dashboard
- Check all regions included
- Confirm timestamps
Sample Verification
- Pick random volume
- Find in dashboard
- Compare details
- Verify accuracy
- Confirm data quality
Data Quality
Ensure Accuracy
- Compare with dashboard
- Check creation dates
- Verify sizes
- Validate regions
- Confirm counts
Fresh Data
- Export current data
- Refresh before export
- Note timestamp of export
- Document data age
- Regular exports
File Management
Organizing Exports
File Naming
volumes-2024-01-15.json # Daily
volumes-2024-12-31.json # Specific
volumes-backup.json # Archive
volumes-analysis.json # Processed
Folder Structure
volumes/
├── 2024-01/
│ ├── volumes-2024-01-01.json
│ ├── volumes-2024-01-15.json
│ └── volumes-2024-01-31.json
├── 2024-02/
│ ├── volumes-2024-02-01.json
│ └── volumes-2024-02-28.json
└── archive/
├── volumes-2023-12-31.json
└── volumes-2023-11-30.json
Storage and Backup
Local Storage
- Keep on computer
- Regular backups
- Version control
- Encrypted storage
- Access restrictions
Cloud Storage
- Upload to Google Drive
- Save to Dropbox
- Store in AWS S3
- Archive in company repository
- Automated backups
Retention Policy
Keep Exports For
- Current month: Keep all
- Past 3 months: Keep weekly
- Past year: Keep monthly
- Older: Archive as needed
- Compliance: Follow requirements
Troubleshooting Export
Export Issues
File Won't Download
- Check browser download settings
- Disable pop-up blockers
- Try different browser
- Check available disk space
- Try again after page refresh
File Size Issues
- Large files may take time
- Check file actually downloaded
- Verify file size in Downloads
- Try downloading again
- Contact support if issues persist
File Corrupted
- Try export again
- Try different browser
- Check disk space
- File may be incomplete
- Retry operation
Cannot Open File
- Use JSON viewer
- Try text editor
- Check file extension is .json
- Verify file not empty
- Try online JSON parser
Export Best Practices
Regular Exports
Scheduled Exports
- Weekly: Trend tracking
- Monthly: Documentation
- Quarterly: Capacity planning
- Annually: Compliance
- Custom: As needed
Before Major Changes
- Export current state
- Document baseline
- Reference for rollback
- Change comparison
- Audit trail
Secure Handling
Data Protection
- Encrypt sensitive exports
- Limit distribution
- Secure storage
- Access controls
- Delete after use
Privacy
- Only share necessary data
- Anonymize if needed
- Redact sensitive info
- Control access
- Track distribution
Documentation
Record Exports
- Note export date
- Document reason
- Track findings
- Record decisions
- Update regularly
Version Control
- Date-named files
- Folder organization
- Change notes
- Archive old exports
- Maintain history
Advanced Analysis
Volume Optimization
Identify Large Volumes
- Export volume data
- Sort by size descending
- Find largest volumes
- Review usage
- Identify reduction opportunities
Identify Underutilized
- Export all volumes
- Check creation date
- Identify old volumes
- Research usage
- Plan cleanup
Right-Sizing
- Analyze growth trends
- Project future needs
- Compare to allocated
- Plan optimal sizes
- Implement changes
Growth Trends
Track Over Time
- Monthly exports
- Calculate growth rate
- Project future capacity
- Plan upgrades
- Budget resources
Forecasting
- Historical growth data
- Linear regression
- Seasonal patterns
- Capacity planning
- Resource allocation
Summary: Using Export Data Effectively
Exporting volume data enables you to:
Documentation
- Create infrastructure inventory
- Document storage allocation
- Maintain compliance records
- Share with team members
Analysis
- Calculate storage metrics
- Identify growth trends
- Plan capacity upgrades
- Analyze distribution patterns
Optimization
- Find unused volumes
- Identify optimization opportunities
- Plan cost reductions
- Right-size storage allocation
Integration
- Feed data to BI tools
- Sync with external systems
- Automate reporting
- Enable data pipelines
Regular exports (weekly/monthly) help you maintain accurate infrastructure documentation and identify optimization opportunities.
Next Steps
- Managing Volumes - Create and manage volume storage
- Snapshot Management - Backup and recovery operations
- Volume Details - View volume information and properties
- Volumes Overview - Return to volumes dashboard guide