Skip to content

Commit

Permalink
https://github.com/uavorg/uavstack/issues/244
Browse files Browse the repository at this point in the history
1.modify log when openTSDB returns to the 200 state;
2.modify openTSDB insert data URI is /api/put?summary;
3.modify real time data view bug
  • Loading branch information
linlinwang3 committed Apr 12, 2018
1 parent 231eaae commit 79683cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2551,7 +2551,7 @@ var mvcObj={

var metric=metrics[i];

if(mprefix=="clientResp"&&metric=="RC"||mprefix!="clientResp"&&metric=="AC"){
if(mprefix=="clientResp"&&metric=="RC"||mprefix!="clientResp"&&metric=="AC"||mprefix!="clientResp"&&metric=="EXT"){
continue;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public int getState() {

private static final String HTTP_HEAD = "http://";
private static final String HTTP_QUERY = "/api/query";
private static final String HTTP_PUT_PREFIX = "/api/put";
private static final String HTTP_PUT_PREFIX = "/api/put?summary";

private static final int ACTIONOK = 2;
private static final int ACTIONFAIL = 0;
Expand Down

0 comments on commit 79683cb

Please sign in to comment.