...
Request | Response |
Code Block |
---|
{
"pageName: (레코딩 페이지 명)":"페이지이름"
} |
| Code Block |
---|
{
"data": [
{
"start_time": (시작 시간),
"end_time": (종료 시간),
"min_sec": (분 / 초)
},
…
]
} |
|
수집 데이터 목록 가져오기
...
Request | Response |
Code Block |
---|
{
"tagArr":
[
"TAG1",
"TAG2",
"TAG3"
],
"startTime":"yyyy/MM/dd hh:mm:ss",
"endTime":"yyyy/MM/dd hh:mm:ss"
} |
| Code Block |
---|
{
"data":[
{
"time": (시간),
"tag_name": (태그 이름),
"tag_value": (태그 값)
},
…
]
} |
|
...
Request | Response |
Code Block |
---|
{
"startTime":"yyyy/MM/dd hh:mm:ss",
"endTime":"yyyy/MM/dd hh:mm:ss",
"order":"asc"
} |
| Code Block |
---|
{
"data": [
{
"time": (시간),
"freetime": (해제 시각),
"almtime": (경보 시간),
"occtime": (발생 시간),
"tag_name": (태그 이름),
"value": (태그 값),
"statuscode": (상태 코드),
"status": (상태),
"typecode": (타입 코드),
"type": (타입),
"almlabel": (알람 라벨),
"areacode": (지역 코드),
"area": (지역),
"priority": (등급)
},
…
]
} |
|
네트워크 상태 데이터 가져오기
URL : http://(IP):(PORT)//networkStatus/get_network_status
...
Request | Response |
| Code Block |
---|
{
"data": [
{
"station": (통신 드라이버),
"address": (통신 주소),
"description": (드라이버 설명),
"status": (정상 or 이상),
"read": (읽기 개수),
"readerr": (읽기 에러),
"readprect": (읽기 성공률),
"write": (쓰기 개수),
"writeerr": (쓰기 에러),
"writeprect": (쓰기 성공률)
},
…
]
} |
|