본문으로 건너뛰기

Vector Transform(변환하기)

Transform 설정 방법

vector-values.yaml
customConfig:
transforms:
<transformID>:
type: <transformType>
inputs:
- <sourceID|transformID>
<option>: <value>

Remap with VRL

Vector Remap Language(VRL)을 사용하여 데이터를 수정하는 기능입니다.

vector-values.yaml
customConfig:
transforms:
<transformID>:
type: remap
inputs:
- <sourceID|transformID>
source: |
<VRL>
<option>: <value>

Reduce

조건에 따라 여러 이벤트를 하나로 합치는 기능입니다.

vector-values.yaml
customConfig:
transforms:
<transformID>:
type: reduce
inputs:
- <sourceID|transformID>
<option>: <value>
  • <option>: <value>
    • merge_strategies
      • <field>: <strategy>
    • starts_when
      • type: vrl|datadog_search|is_log|is_metric|is_trace
      • source: <condition>
      • 짧은 형태로 starts_when: <VRL>를 사용할 수 있습니다.