-
Notifications
You must be signed in to change notification settings - Fork 22
List All Tenants
[Table of Contents](https://github.com/dell-oss/Doradus/wiki/Doradus Administration: Table-of-Contents) | [Previous](https://github.com/dell-oss/Doradus/wiki/Creating a New Tenant) | [Next](https://github.com/dell-oss/Doradus/wiki/List Tenant)
[Multi-Tenant Configuration](https://github.com/dell-oss/Doradus/wiki/Multi-Tenant Configuration): List All Tenants
This command lists all existing tenants:
GET /_tenants
This command returns each tenant’s name and the list of applications owned by each tenant. An example response in XML is shown below:
<tenant name="Doradus">
SmokeTest
App_Default
<tenant name="Bibliotecha">
App_Biblio
As with all REST commands, a JSON response can be requested by adding ?format=json to the URI. Example:
GET /_tenants?format=json
Which returns:
{"tenants": {
"Doradus": {
"applications": [
"SmokeTest",
"App_Default"
]
},
"Bibliotecha": {
"applications": [
"App_Biblio"
]
}
}}
Technical Documentation
[Doradus OLAP Databases](https://github.com/dell-oss/Doradus/wiki/Doradus OLAP Databases)
- Architecture
- OLAP Database Overview
- OLAP Data Model
- Doradus Query Language (DQL)
- OLAP Object Queries
- OLAP Aggregate Queries
- OLAP REST Commands
- Architecture
- Spider Database Overview
- Spider Data Model
- Doradus Query Language (DQL)
- Spider Object Queries
- Spider Aggregate Queries
- Spider REST Commands
- [Installing and Running Doradus](https://github.com/dell-oss/Doradus/wiki/Installing and Running Doradus)
- [Deployment Guidelines](https://github.com/dell-oss/Doradus/wiki/Deployment Guidelines)
- [Doradus Configuration and Operation](https://github.com/dell-oss/Doradus/wiki/Doradus Configuration and Operation)
- [Cassandra Configuration and Operation](https://github.com/dell-oss/Doradus/wiki/Cassandra Configuration and Operation)