다음을 통해 공유


geo_info_from_ip_address()

적용 대상: ✅Microsoft Fabric✅Azure Data ExplorerAzure MonitorMicrosoft Sentinel

IPv4 또는 IPv6 주소에 대한 지리적 위치 정보를 검색합니다.

구문

geo_info_from_ip_address(IpAddress )

구문 규칙에 대해 자세히 알아봅니다.

매개 변수

이름 Type 필수 설명
IpAddress string ✔️ 지리적 위치 정보를 검색하는 IPv4 또는 IPv6 주소입니다.

반품

IP 주소 위치(정보를 사용할 수 있는 경우)에 대한 정보를 포함하는 동적 개체입니다. 개체에는 다음 필드가 포함됩니다.

속성 형식 설명
country string 국가 이름
state string 상태(세분화) 이름
city string 도시 이름
latitude real 위도 좌표
longitude real 경도 좌표

참고 항목

  • IP 지리적 위치는 본질적으로 정확하지 않습니다. 위치는 종종 모집단의 중심 근처에 있습니다. 이 함수에서 제공하는 모든 위치는 특정 주소 또는 가정을 식별하는 데 사용해서는 안 됩니다.
  • 이 함수는 MaxMind에서 https://www.maxmind.com만든 GeoLite2 데이터를 사용합니다.
  • 이 함수는 ISC 라이선스에 따라 제공되는 MaxMind DB 판독기 라이브러리를 기반으로 합니다.

참고 항목

결과 배열을 추가로 조작하려면 동적 개체 접근자를 참조 하세요.

예제

print ip_location=geo_info_from_ip_address('20.53.203.50')

출력

ip_location
{"country": "Australia", "state": "New South Wales", "city": "Sydney", "latitude": -33.8715, "longitude": 151.2006}
print ip_location=geo_info_from_ip_address('2a03:2880:f12c:83:face:b00c::25de')

출력

ip_location
{"country": "United States", "state": "Florida", "city": "Boca Raton", "latitude": 26.3594, "longitude": -80.0771}