Skip to content

Commit

Permalink
fix grafana get metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
qiaojialin committed Mar 2, 2020
1 parent 6f80172 commit 90848fd
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -86,7 +86,7 @@ public List<String> getMetaData() {
ConnectionCallback<Object> connectionCallback = new ConnectionCallback<Object>() {
public Object doInConnection(Connection connection) throws SQLException {
Statement statement = connection.createStatement();
statement.execute("show timeseries" + "root *");
statement.execute("show timeseries");
ResultSet resultSet = statement.getResultSet();
logger.info("Start to get timeseries");
List<String> columnsName = new ArrayList<>();
Expand Down

0 comments on commit 90848fd

Please sign in to comment.