1
0
Fork 0
telegraf/plugins/parsers/avro/testcases/supplied_timestamp_fields_unspecified/telegraf.conf

24 lines
421 B
Text
Raw Permalink Normal View History

[[ inputs.file ]]
files = ["./testcases/supplied_timestamp_fields_unspecified/message.avro"]
data_format = "avro"
avro_measurement = "measurement"
avro_tags = [ "tag" ]
avro_fields = [ "field" ]
avro_schema = '''
{
"type":"record",
"name":"Value",
"namespace":"com.example",
"fields":[
{
"name":"tag",
"type":"string"
},
{
"name":"field",
"type":"long"
}
]
}
'''