mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 18:26:15 +01:00
adeb7694cc
* Publish events to Kafka for consumption * Commit avro idl's for event schemas * convert client to use github.com/dpkp/kafka-python * events loaded into clickhouse from Kafka * remove cruft * Publish events to Kafka for consumption * convert client to use github.com/dpkp/kafka-python * remove cruft * include kafka migrations * bugfixes for migrations * use constants for consistency * wrap up local migrations * small fixes * tune ups
54 lines
814 B
Plaintext
54 lines
814 B
Plaintext
{
|
|
"namespace": "com.posthog.ee",
|
|
"name": "element",
|
|
"type": "record",
|
|
"fields" : [
|
|
{
|
|
"name" : "text",
|
|
"type" : "string"
|
|
},
|
|
{
|
|
"name" : "tag_name",
|
|
"type" : "string"
|
|
},
|
|
{
|
|
"name" : "href",
|
|
"type" : "string"
|
|
},
|
|
{
|
|
"name" : "attr_id",
|
|
"type" : "string"
|
|
},
|
|
{
|
|
"name" : "attr_class",
|
|
"type" : "string"
|
|
},
|
|
{
|
|
"name" : "nth_child",
|
|
"type" : "string"
|
|
},
|
|
{
|
|
"name" : "nth_of_type",
|
|
"type" : "string"
|
|
},
|
|
{
|
|
"name" : "attributes",
|
|
"type" : "map",
|
|
"values" : "string"
|
|
},
|
|
{
|
|
"name" : "order",
|
|
"type" : "long"
|
|
},
|
|
{
|
|
"name" : "team_id",
|
|
"type" : "long"
|
|
},
|
|
{
|
|
"name" : "group_id",
|
|
"type" : "long"
|
|
}
|
|
]
|
|
}
|
|
|