This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
galaxy-deployment-schema-up…/testSchemaFiles/top_urls_log.json
2023-09-26 14:48:35 +08:00

37 lines
622 B
JSON

{
"type": "record",
"name": "top_urls_log",
"namespace": "druid",
"doc": {
"partition_key": "__time"
},
"fields": [
{
"name": "__time",
"label": "Time",
"type": "string",
"doc": {
"constraints": {
"type": "timestamp"
},
"visibility": "enabled"
}
},
{
"name": "url",
"label": "URL",
"doc": {
"visibility": "enabled"
},
"type": "string"
},
{
"name": "session_num",
"label": "Sessions",
"doc": {
"visibility": "enabled"
},
"type": "long"
}
]
}