> For the complete documentation index, see [llms.txt](https://docs.panther.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.panther.com/ko/data-onboarding/supported-logs/axonius.md).

# Axonius 로그

## 개요

Panther가 수집하는 [Axonius](https://www.axonius.com/) Axonius를 Panther의 HTTP 엔드포인트로 로그를 전송하도록 구성하여 활동 로그를 수집합니다.

Axonius는 환경 내의 디바이스, 사용자, 소프트웨어에 대한 가시성과 제어를 제공하는 사이버 보안 자산 관리 플랫폼입니다.

## Axonius 로그를 Panther에 온보딩하는 방법

### 1단계: Panther에서 새 Axonius 소스 생성

1. Panther Console의 왼쪽 탐색 모음에서 클릭 **구성** > **로그 소스**.
2. 다음을 클릭합니다: **새로 만들기**.
3. "Axonius"를 검색한 다음 해당 타일을 클릭합니다.
4. 슬라이드아웃 패널에서 **설정 시작**.

   <figure><img src="/files/56469747e09455e403284007e2f8b4b05f570dc8" alt=""><figcaption></figcaption></figure>
5. 다음을 따르세요 [HTTP Source를 구성하기 위한 Panther의 안내](/ko/data-onboarding/data-transports/http.md#how-to-set-up-an-http-log-source-in-panther)5단계부터 시작합니다.
   * 설정할 때 **인증 방법** 소스에 대해 다음 중에서 선택하게 됩니다 [공유 비밀](/ko/data-onboarding/data-transports/http.md#shared-secret), [베어러](/ko/data-onboarding/data-transports/http.md#bearer), 그리고 [기본](/ko/data-onboarding/data-transports/http.md#basic). 공유 비밀을 사용하는 것이 권장됩니다.
     * 선택하는 경우 **SharedSecret**, 다음 **헤더 이름** 다음 값으로 잠깁니다 `x-panther-axonius`.
   * 이 소스로 전송되는 페이로드는 [모든 HTTP 소스에 대한 페이로드 요구 사항](/ko/data-onboarding/data-transports/http.md#payload-requirements).
   * HTTP 엔드포인트 생성이 완료될 때까지 다음 단계로 진행하지 마세요.

### 2단계: Axonius에서 HTTPS 웹훅 생성

* 다음의 지침에 따라 Axonius에서 HTTPS 웹훅을 생성합니다. [Axonius HTTPS 로그 설정 구성 문서](https://docs.axonius.com/docs/configuring-https-log-settings).
  * 다음의 **HTTPS 로그 호스트** 필드에 1단계에서 생성한 URL을 입력합니다.
  * 1단계에서 사용한 방법에 따라 인증을 구성합니다:
    * 공유 비밀 인증을 사용한 경우, **사용자 지정 요청 헤더(JSON 형식)**, 입력 `{"x-panther-axonius": "[your-shared-secret-token]"}`.
    * 베어러 인증을 사용한 경우, **Authorization 헤더** 필드에 다음을 입력합니다 `Bearer <your-bearer-token>`.
    * 기본 인증을 사용한 경우, **Authorization 헤더** 필드에 다음을 입력합니다 `Basic <your-basic-token>`.

## 지원되는 로그 유형

### Axonius.Activity

```yaml
schema: Axonius.Activity
description: Axonius 활동 로깅에서 생성된 활동 이벤트
referenceURL: https://docs.axonius.com/docs/activities
fields:
  - 이름: time
    required: true
    description: 이벤트가 생성된 시점의 타임스탬프
    type: timestamp
    timeFormats:
      - unix
    isEventTime: true
  - 이름: source
    required: true
    description: 활동 이벤트를 생성하는 소스 시스템
    type: string
  - name: event
    required: true
    description: 활동 이벤트와 관련된 필드 모음
    type: object
    fields:
      - 이름: action
        required: true
        description: 수행된 특정 작업
        type: string
      - name: category
        required: true
        description: 활동 이벤트의 카테고리
        type: string
      - 이름: type
        required: true
        description: 이벤트의 유형/심각도 수준
        type: string
      - 이름: user
        description: 이벤트와 연결된 사용자(user-initiated actions)
        type: string
      - name: params
        description: 이벤트에 대한 추가 매개변수 및 세부 정보(구조는 이벤트 카테고리에 따라 다름)
        type: object
        fields:
          - 이름: source
            description: 작업에 관련된 소스 시스템 또는 통합(UserManagement events)
            type: string
          - 이름: user_name
            description: 작업에 관련된 사용자의 사용자 이름 또는 이메일(UserManagement events)
            type: string
          - name: adapter
            description: 작업에 관련된 어댑터 이름(CustomDiscovery, Adapters events)
            type: string
          - name: client_id
            description: 어댑터 인스턴스의 클라이언트 식별자(Adapters events)
            type: string
          - name: devices_count
            description: 처리된 디바이스 수(Adapters events)
            type: bigint
          - name: users_count
            description: 처리된 사용자 수(Adapters events)
            type: bigint
          - name: duration
            description: HH:MM:SS 형식의 어댑터 작업 지속 시간(Adapters events)
            type: string
          - name: generic_counts_msg
            description: 처리된 엔터티에 대한 포괄적인 통계를 포함한 상세 카운트 메시지(Adapters events)
            type: string
          - name: space_id
            description: 대시보드 공간의 고유 식별자(Dashboard events)
            type: string
          - name: space_name
            description: 대시보드 공간의 사람이 읽을 수 있는 이름(Dashboard events)
            type: string
          - 이름: IP
            description: 사용자 세션과 연결된 IP 주소(UserSession events)
            type: string
            표시자:
              - ip
          - 이름: status
            description: 인증 시도의 상태(UserSession events)
            type: string
          - 이름: name
            description: 적용 룰, 정책, 워크플로 또는 저장된 쿼리의 이름(Enforcements, Workflows, SavedQueries events)
            type: string
          - name: access_type
            description: 저장된 쿼리의 접근 수준(SavedQueries events)
            type: string
          - name: module
            description: 저장된 쿼리가 대상으로 하는 데이터 모듈(SavedQueries events)
            type: string
          - name: action_name
            description: 실행 중인 작업의 설명적 이름(RunAction events)
            type: string
          - name: enforcement
            description: 실행 중인 적용 룰 식별자(Enforcements RunAction events)
            type: string
          - 이름: workflow
            description: 실행 중인 워크플로 식별자 또는 이름(Workflows RunAction events)
            type: string
          - name: run_id
            description: 작업 실행 추적을 위한 실행 ID(RunAction events)
            type: string
          - 이름: id
            description: 액세스 중인 데이터 항목의 고유 식별자(Users ViewItem events)
            type: string
          - name: config_id
            description: 웹훅 구성 식별자(WebhookManagement events)
            type: string
          - 이름: vendor_name
            description: 외부 공급업체 또는 서비스 이름(WebhookManagement events)
            type: string
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.panther.com/ko/data-onboarding/supported-logs/axonius.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
