// Check the system keyspace
boolean isSystem = cassandraService.isSystemKeyspace(keyspaceName);
if (isSystem) {
model.put("system", true);
} else {
List<TokenRange> tokenRange = client.describe_ring(keyspaceName);
Collections.sort(tokenRange);
model.put("tokenRanges", tokenRange);
}
return "/keyspace";