Examples
Practical examples of using Kassie.
Quick Examples
Basic Queries
Learn how to browse keyspaces, tables, and rows.
bash
kassie tui --profile local
# Navigate to system_schema keyspace
# Select tables table
# View all tables in your clusterFiltering
Apply WHERE clauses to find specific data.
cql
# Filter by partition key
id = '550e8400-e29b-41d4-a716-446655440000'
# Range query
created_at > '2024-01-01' AND created_at < '2024-02-01'Custom Configuration
Configure profiles for different environments.
json
{
"profiles": [
{
"name": "local",
"hosts": ["localhost"],
"port": 9042
},
{
"name": "production",
"hosts": ["prod-1.example.com"],
"port": 9042,
"ssl": { "enabled": true }
}
]
}Example Guides
Explore detailed example guides:
- Basic Queries — Browsing keyspaces, tables, and rows
- Advanced Filtering — WHERE clauses, operators, and filter patterns
- Custom Configurations — Multi-env profiles, SSL/TLS, themes
- Scripting & Automation — API scripts, health checks, and CI/CD