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