You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ge...@apache.org on 2020/02/23 15:14:51 UTC

[incubator-iotdb] branch http updated (fca8eaa -> 90b6cf7)

This is an automated email from the ASF dual-hosted git repository.

geniuspig pushed a change to branch http
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.


    from fca8eaa  update metrics
     add 083a566  change jsonObject to jsonArray.
     add 7d55178  add .ingnore
     add 4f70ca9  add web
     add 2290ff7  ingnore package-lock.json
     add ff04f1e  update .ingonre
     add 9283486  add pom.xml
     add 90b6cf7  make it can run.

No new revisions were added by this update.

Summary of changes:
 .gitignore                                         |   5 +
 pom.xml                                            |   3 +
 .../org/apache/iotdb/db/concurrent/ThreadName.java |   2 +-
 .../org/apache/iotdb/db/metrics/MetricsSystem.java |  33 +++----
 .../iotdb/db/rest/controller/RestController.java   |   2 +-
 .../org/apache/iotdb/db/rest/util/RestUtil.java    |   9 +-
 .../java/org/apache/iotdb/db/service/IoTDB.java    |   2 +-
 .../{MetricsService.java => RestService.java}      |  29 +++---
 ...ricsServiceMBean.java => RestServiceMBean.java} |  10 +-
 .../org/apache/iotdb/db/service/ServiceType.java   |   2 +-
 .../java/org/apache/iotdb/db/rest/RestTest.java    |   8 +-
 .../apache/iotdb/spark/db/EnvironmentUtils.java    |   5 +-
 .../write/writer/IDataWriter.java => web/index.css |   6 +-
 web/index.html                                     |  28 ++++++
 web/package.json                                   |  31 ++++++
 web/pom.xml                                        |  71 ++++++++++++++
 .../ArgsErrorException.java => web/src/App.js      |  23 +++--
 .../ArgsErrorException.java => web/src/Header.css  |  36 +++++--
 web/src/Header.js                                  |  61 ++++++++++++
 .../src/ServerInfo.css                             |  37 +++++--
 web/src/ServerInfo.js                              |  56 +++++++++++
 .../ArgsErrorException.java => web/src/Table.css   |  22 +++--
 web/src/Table.js                                   | 109 +++++++++++++++++++++
 .../IExpression.java => web/src/index.js           |  11 +--
 web/src/iotdb-logo.png                             | Bin 0 -> 1768 bytes
 web/webpack.config.js                              |  55 +++++++++++
 26 files changed, 568 insertions(+), 88 deletions(-)
 rename server/src/main/java/org/apache/iotdb/db/service/{MetricsService.java => RestService.java} (88%)
 rename server/src/main/java/org/apache/iotdb/db/service/{MetricsServiceMBean.java => RestServiceMBean.java} (83%)
 copy tsfile/src/main/java/org/apache/iotdb/tsfile/write/writer/IDataWriter.java => web/index.css (91%)
 create mode 100644 web/index.html
 create mode 100644 web/package.json
 create mode 100644 web/pom.xml
 copy client/src/main/java/org/apache/iotdb/exception/ArgsErrorException.java => web/src/App.js (75%)
 copy client/src/main/java/org/apache/iotdb/exception/ArgsErrorException.java => web/src/Header.css (53%)
 create mode 100644 web/src/Header.js
 copy server/src/main/java/org/apache/iotdb/db/service/JDBCServiceMBean.java => web/src/ServerInfo.css (65%)
 create mode 100644 web/src/ServerInfo.js
 copy client/src/main/java/org/apache/iotdb/exception/ArgsErrorException.java => web/src/Table.css (74%)
 create mode 100644 web/src/Table.js
 copy tsfile/src/main/java/org/apache/iotdb/tsfile/read/expression/IExpression.java => web/src/index.js (84%)
 create mode 100644 web/src/iotdb-logo.png
 create mode 100644 web/webpack.config.js