# Limit 연산자

## 개요

반환되는 결과 수를 다음으로 제한합니다 `제한`.

```kusto
| limit <정수>
```

어떤 레코드가 반환될지는 다음과 같은 경우가 아니면 보장되지 않습니다. [`정렬`](/ko/pantherflow/operators/sort.md) 가 데이터에 대해 이미 수행되어야 합니다.

## 예시

{% hint style="info" %}
예시 데이터

```kusto
let aws_alb = datatable [
  {"type": "https", "p_event_time": "2023-09-16 05:59:04.058", "sentBytes": 167},
  {"type": "https", "p_event_time": "2023-09-16 05:45:34.863", "sentBytes": 329},
  {"type": "https", "p_event_time": "2023-09-16 05:36:09.017", "sentBytes": 167},
  {"type": "https", "p_event_time": "2023-09-16 05:27:39.177", "sentBytes": 468992}
];
```

{% endhint %}

### 하나의 결과로 제한

```kusto
aws_alb
| limit 1
```

| 이벤트                                                                                |
| ---------------------------------------------------------------------------------- |
| `{ "p_event_time": "2023-09-16 05:59:04.058", "sentBytes": 167, "type": "https" }` |


---

# Agent Instructions: 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/pantherflow/operators/limit.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.
