zzangae / PRTGtoExcelConverter

PRTG to Excel Converter (Devices, Columns)
HomePage
0 stars 0 forks source link

PRTG devices, columns URL 가져오기

<예제 URL>

https://PRTGSERVER/api/table.csv?content=devices&columns=objid,name,host,group,probe,parentid&count=*&username=PRTGUSER&passhash=PASSHASH

<추가 컬럼>

favorite,condition,upsens,downsens,downacksens,partialdownsens,warnsens,pausedsens,unusualsens,undefinedsens,totalsens,schedule,basetype,baselink,notifiesx,intervalx,access,dependency,position,status,comments,priority,message,tags,type,active

PRTG devices, columns 를 엑셀파일로 가져오기

1. JSON 설정 파일 만들기

우선, PRTG 서버 정보, ID, 비밀번호를 JSON 파일로 저장합니다. 예를 들어 config.json 파일을 다음과 같이 작성합니다.

{
    "prtg_server": "https://PRTG_SERVER",
    "username": "USERNAME",
    "password": "PASSWORD"
}