29 lines
464 B
Text
29 lines
464 B
Text
|
[[ inputs.file ]]
|
||
|
files = ["./testcases/no-timestamp-format/message.avro"]
|
||
|
data_format = "avro"
|
||
|
|
||
|
avro_measurement = "measurement"
|
||
|
avro_tags = [ "tag" ]
|
||
|
avro_timestamp = "timestamp"
|
||
|
avro_schema = '''
|
||
|
{
|
||
|
"type":"record",
|
||
|
"name":"Value",
|
||
|
"namespace":"com.example",
|
||
|
"fields":[
|
||
|
{
|
||
|
"name":"tag",
|
||
|
"type":"string"
|
||
|
},
|
||
|
{
|
||
|
"name":"field",
|
||
|
"type":"long"
|
||
|
},
|
||
|
{
|
||
|
"name":"timestamp",
|
||
|
"type":"long"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
'''
|