Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Request

Response

Code Block
{
  pageName: (레코딩 페이지 명)
}

Code Block
{
  "data": [
    { 
      start_time: (시작 시간), 
      end_time: (종료 시간), 
      min_sec: (분 / 초)
    },
   
  ]
}

2. 데이터 수집

수집 데이터 목록 가져오기

...

Request

Response

Code Block
{
  "tagArr": 
    [
      TAG1, 
      TAG2, 
      TAG3
    ],
  start_time: (시작 시간), 
  end_time: (종료 시간)
}

Code Block
{
  "data":[
 [   { 
      time: (시간), 
      tag_name: (태그 이름), 
      tag_value: (태그 값)
    },
    
  ]
}

3. 과거 경보

과거 경보 데이터 가져오기

...

Request

Response

Code Block
{
 start_time: (시작 시간), 
 end_time: (종료 시간),
 order: (‘desc’ or ‘asc’)
}

Code Block
{
  "data": [
    { 
      time: (시간), 
      freetime: (해제 시각),
      almtime: (경보 시간),
      occtime: (발생 시간),
      tag_name: (태그 이름), 
      value: (태그 값),
      statuscode: (상태 코드),
      status: (상태),
      typecode: (타입 코드),
      type: (타입),
      almlabel: (알람 라벨),
      areacode: (지역 코드),
      area: (지역),
      priority: (등급)
    },
   
  ]
}

4. 네트워크 상태

네트워크 상태 데이터 가져오기

...

Request

Response

Code Block

Code Block
{
  "data": [
    { 
      station: (통신 드라이버), 
      address: (통신 주소),
      description: (드라이버 설명),
      status: (정상 or 이상),
      read: (읽기 개수), 
      readerr: (읽기 에러),
      readprect: (읽기 성공률),
      write: (쓰기 개수),
      writeerr: (쓰기 에러),
      writeprect: (쓰기 성공률)
    },
   
  ]
}