Hi.
I would like to know the data type of a field within my bucket. Is there a possibillity to get a list of all metrics in my bucket, like name:datatype?
hallo, in UI influx_2 go to your dashboard/cell and use Configure and set ‘VIEW RAW DATA’
also there you can hit CSV export
for me ,more fun is to export data via CLI as anotated CSV
$influx query --raw ‘from(bucket: “aaa”) |> range(start: -6h)’ > your_export.csv
and first few lines is your data_type
#group,false,false,true,true,false,false,true,true,true,true,true
#datatype,string,long,dateTime:RFC3339,dateTime:RFC3339,dateTime:RFC3339,double,string,string,string,string,string
#default,_result,
,result,table,_start,_stop,_time,_value,TempSenKey,TempUlId,_field,_measurement,host
,0,2021-05-06T10:20:01.694225654Z,2021-05-06T11:20:01.694225654Z,2021-05-06T10:20:22Z,3149.8,585,6972,TempDecimal,temperature,pro_bee
pavel