How to convert this cURL to RestSharp?
curl -i -XPOST 'http://localhost:8086/write?db=mydb' --data-binary 'cpu_load_short,host=server01,region=us-west value=0.64'
This is how one can write records to an InfluxDB instance using cURL but I need the RestSharp equivalent.
Thank you!