如何通过API调用从Influxdb中提取数据?

时间:2017-12-08 10:54:56

标签: curl post influxdb

我已使用数据库中的以下api调用推送数据" dbvishnutest"

curl -XPOST http://<localhost>:8086/write?db=dbvishnutest --data-binary "weather,location=us-midwest temperature=82 1465839830100400200"

现在我正在尝试使用以下api调用撤回数据。

curl -i -XPOST -G http://<localhost>:8086/query?pretty=true --data-urlencode "dbvishnutest" --data-urlencode "q=select * from weather where location=us-midwest"

我收到以下错误:

HTTP/1.1 200 OK
Content-Type: application/json
Request-Id: 1966e27f-dc05-11e7-8087-000000000000
X-Influxdb-Build: OSS
X-Influxdb-Version: 1.4.2
X-Request-Id: 1966e27f-dc05-11e7-8087-000000000000
Date: Fri, 08 Dec 2017 10:46:51 GMT
Transfer-Encoding: chunked

{
    "results": [
        {
            "statement_id": 0,
            "error": "database name required"
        }
    ]
}

我是新手涌入db,我试过修复我无法解决这个问题。

有人可以纠正我的错误吗?提前谢谢:)

1 个答案:

答案 0 :(得分:1)

仔细观察涌入doc

应指定&#34; db =&#34;

--data-urlencode "db=dbvishnutest"