Property
druid
Apache Druid is a real-time analytics database. The information is gathered from the /status endpoint and the SQL API.
| Property Name |
Type |
Description |
Required |
| data_sources |
array of
DruidDataSource
|
Datasources that are stored in the cluster. |
|
| services |
array of
DruidService
|
Services that make up the Druid cluster. |
|
DruidDataSource
| Property Name |
Type |
Description |
Required |
| datasource |
string
|
Name of the datasource. |
|
| total_data_size |
integer
|
Size of the datasource in bytes. |
|
| total_rows |
integer
|
Number of rows that the datasource contains. |
|
DruidService
| Property Name |
Type |
Description |
Required |
| service |
string
|
Host and port of the service. |
|
| service_type |
string
|
Type of Druid service. Ex. coordinator, broker, historical, overlord, router, middle_manager |
|
↑ TopSearch Queries
SearchApache Druid clustersproduct:"Apache Druid"
SearchApache Druid routersproduct:"Apache Druid" port:8888
{
"services": [
{
"service": "localhost:8081",
"service_type": "coordinator"
},
{
"service": "localhost:8082",
"service_type": "broker"
},
{
"service": "localhost:8083",
"service_type": "historical"
},
{
"service": "localhost:8091",
"service_type": "middle_manager"
},
{
"service": "localhost:8888",
"service_type": "router"
}
],
"data_sources": [
{
"datasource": "cmd_test",
"total_data_size": 490,
"total_rows": 0
},
{
"datasource": "verify",
"total_data_size": 824,
"total_rows": 0
}
]
}