> 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/apache.md).

# Apache 로그

## 개요

Panther는 common을 통해 Apache 로그를 수집하는 것을 지원합니다. [데이터 전송](https://docs.panther.com/data-onboarding/data-transports) 옵션: Amazon Web Services(AWS) S3 및 SQS.

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

이 로그를 Panther에 연결하려면:

1. Panther Console의 왼쪽 탐색 모음에서 **로그 소스**.
2. 클릭합니다 **새로 만들기**.
3. “Apache”를 검색한 다음 해당 타일을 클릭합니다.
4. 다음 **전송 메커니즘** 드롭다운에서 이 통합에 사용할 데이터 전송 방법을 선택한 다음, 해당 방법을 구성하기 위한 Panther의 지침을 따르세요:
   * [AWS S3 버킷](/ko/data-onboarding/data-transports/aws/s3.md)
   * [AWS SQS](/ko/data-onboarding/data-transports/aws/sqs.md)
5. 클릭합니다 **설정 시작**.
6. Apache를 구성하여 로그를 Data Transport 소스로 푸시합니다.
   * 선택한 Data Transport 소스로 로그를 푸시하는 방법은 Apache 문서를 참조하세요.

## 지원되는 로그 유형

### Apache.AccessCombined

combined 형식을 사용하는 Apache HTTP 서버 액세스 로그 `combined` 형식.

자세한 내용은 다음을 참조하세요 [Combined Log Format에 대한 Apache 문서](https://httpd.apache.org/docs/current/logs.html#combined).

```yaml
스키마: Apache.AccessCombined
파서:
    fastmatch:
        match:
            - '%{remote_host_ip_address} %{client_identity_rfc_1413} %{request_user} [%{request_time}] "%{request_method} %{request_uri} %{request_protocol}" %{response_status} %{response_size} "%{referer}" "%{user_agent}"'
        emptyValues:
            - '-'
        trimSpace: true
설명: 'combined' 형식을 사용하는 Apache HTTP 서버 액세스 로그
참조 URL: https://httpd.apache.org/docs/current/logs.html#combined
필드:
    - name: remote_host_ip_address
      description: 이 요청을 서버에 보낸 클라이언트(원격 호스트)의 IP 주소입니다. HostnameLookups가 On으로 설정되어 있으면 서버는 호스트 이름을 확인하여 IP 주소 대신 해당 값을 기록하려고 시도합니다.
      유형: string
      지표:
        - 호스트 이름
    - name: client_identity_rfc_1413
      description: 클라이언트 컴퓨터의 identd가 식별한 클라이언트의 RFC 1413 ID입니다.
      유형: string
    - name: request_user
      description: HTTP 인증에 의해 확인된 문서를 요청한 사람의 사용자 ID입니다.
      유형: string
      지표:
        - username
    - name: request_time
      description: 요청이 수신된 시간입니다.
      유형: timestamp
      시간 형식:
        - '%d/%b/%Y:%H:%M:%S %z'
      이벤트 시간 여부: true
    - name: request_method
      description: HTTP 요청 메서드
      유형: string
    - name: request_uri
      description: HTTP 요청 URI
      유형: string
    - name: request_protocol
      description: HTTP 요청 프로토콜
      유형: string
    - name: response_status
      description: 응답의 HTTP 상태
      유형: smallint
    - name: response_size
      description: HTTP 응답의 바이트 단위 크기
      유형: bigint
    - 이름: user_agent
      설명: User-Agent HTTP 헤더
      유형: string
    - 이름: referer
      설명: Referer HTTP 헤더
      유형: string
```

### Apache.AccessCommon

combined 형식을 사용하는 Apache HTTP 서버 액세스 로그 `common` 형식.

자세한 내용은 다음을 참조하세요 [Common Log Format에 대한 Apache 문서](https://httpd.apache.org/docs/current/logs.html#common).

```yaml
스키마: Apache.AccessCommon
파서:
    fastmatch:
        match:
            - '%{remote_host_ip_address} %{client_identity_rfc_1413} %{request_user} [%{request_time}] "%{request_method} %{request_uri} %{request_protocol}" %{response_status} %{response_size}'
        emptyValues:
            - '-'
        trimSpace: true
설명: 'common' 형식을 사용하는 Apache HTTP 서버 액세스 로그
참조 URL: https://httpd.apache.org/docs/current/logs.html#common
필드:
    - name: remote_host_ip_address
      description: 이 요청을 서버에 보낸 클라이언트(원격 호스트)의 IP 주소입니다. HostnameLookups가 On으로 설정되어 있으면 서버는 호스트 이름을 확인하여 IP 주소 대신 해당 값을 기록하려고 시도합니다.
      유형: string
      지표:
        - 호스트 이름
    - name: client_identity_rfc_1413
      description: 클라이언트 컴퓨터의 identd가 식별한 클라이언트의 RFC 1413 ID입니다.
      유형: string
    - name: request_user
      description: HTTP 인증에 의해 확인된 문서를 요청한 사람의 사용자 ID입니다.
      유형: string
      지표:
        - username
    - name: request_time
      description: 요청이 수신된 시간입니다.
      유형: timestamp
      시간 형식:
        - '%d/%b/%Y:%H:%M:%S %z'
      이벤트 시간 여부: true
    - name: request_method
      description: HTTP 요청 메서드
      유형: string
    - name: request_uri
      description: HTTP 요청 URI
      유형: string
    - name: request_protocol
      description: HTTP 요청 프로토콜
      유형: string
    - name: response_status
      description: 응답의 HTTP 상태
      유형: smallint
    - name: response_size
      description: HTTP 응답의 바이트 단위 크기
      유형: bigint
```


---

# 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
