datadog.LogsCustomPipeline
Explore with Pulumi AI
Provides a Datadog Logs Pipeline API resource, which is used to create and manage Datadog logs custom pipelines. Each datadog.LogsCustomPipeline
resource defines a complete pipeline. The order of the pipelines is maintained in a different resource: datadog.LogsPipelineOrder
. When creating a new pipeline, you need to explicitly add this pipeline to the datadog.LogsPipelineOrder
resource to track the pipeline. Similarly, when a pipeline needs to be destroyed, remove its references from the datadog.LogsPipelineOrder
resource.
Example Usage
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.datadog.LogsCustomPipeline;
import com.pulumi.datadog.LogsCustomPipelineArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineFilterArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineProcessorArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineProcessorArithmeticProcessorArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineProcessorAttributeRemapperArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineProcessorCategoryProcessorArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineProcessorDateRemapperArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineProcessorGeoIpParserArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineProcessorGrokParserArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineProcessorGrokParserGrokArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineProcessorLookupProcessorArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineProcessorMessageRemapperArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineProcessorPipelineArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineProcessorServiceRemapperArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineProcessorStatusRemapperArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineProcessorStringBuilderProcessorArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineProcessorTraceIdRemapperArgs;
import com.pulumi.datadog.inputs.LogsCustomPipelineProcessorUserAgentParserArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var samplePipeline = new LogsCustomPipeline("samplePipeline", LogsCustomPipelineArgs.builder()
.filters(LogsCustomPipelineFilterArgs.builder()
.query("source:foo")
.build())
.isEnabled(true)
.name("sample pipeline")
.processors(
LogsCustomPipelineProcessorArgs.builder()
.arithmeticProcessor(LogsCustomPipelineProcessorArithmeticProcessorArgs.builder()
.expression("(time1 - time2)*1000")
.isEnabled(true)
.isReplaceMissing(true)
.name("sample arithmetic processor")
.target("my_arithmetic")
.build())
.build(),
LogsCustomPipelineProcessorArgs.builder()
.attributeRemapper(LogsCustomPipelineProcessorAttributeRemapperArgs.builder()
.isEnabled(true)
.name("sample attribute processor")
.overrideOnConflict(false)
.preserveSource(true)
.sourceType("tag")
.sources("db.instance")
.target("db")
.targetFormat("string")
.targetType("attribute")
.build())
.build(),
LogsCustomPipelineProcessorArgs.builder()
.categoryProcessor(LogsCustomPipelineProcessorCategoryProcessorArgs.builder()
.category(
%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.isEnabled(true)
.name("sample category processor")
.target("foo.severity")
.build())
.build(),
LogsCustomPipelineProcessorArgs.builder()
.dateRemapper(LogsCustomPipelineProcessorDateRemapperArgs.builder()
.isEnabled(true)
.name("sample date remapper")
.sources(
"_timestamp",
"published_date")
.build())
.build(),
LogsCustomPipelineProcessorArgs.builder()
.geoIpParser(LogsCustomPipelineProcessorGeoIpParserArgs.builder()
.isEnabled(true)
.name("sample geo ip parser")
.sources("network.client.ip")
.target("network.client.geoip")
.build())
.build(),
LogsCustomPipelineProcessorArgs.builder()
.grokParser(LogsCustomPipelineProcessorGrokParserArgs.builder()
.grok(LogsCustomPipelineProcessorGrokParserGrokArgs.builder()
.matchRules("Rule %%{word:my_word2} %%{number:my_float2}")
.supportRules("")
.build())
.isEnabled(true)
.name("sample grok parser")
.samples("sample log 1")
.source("message")
.build())
.build(),
LogsCustomPipelineProcessorArgs.builder()
.lookupProcessor(LogsCustomPipelineProcessorLookupProcessorArgs.builder()
.defaultLookup("unknown service")
.isEnabled(true)
.lookupTable("1,my service")
.name("sample lookup processor")
.source("service_id")
.target("service_name")
.build())
.build(),
LogsCustomPipelineProcessorArgs.builder()
.messageRemapper(LogsCustomPipelineProcessorMessageRemapperArgs.builder()
.isEnabled(true)
.name("sample message remapper")
.sources("msg")
.build())
.build(),
LogsCustomPipelineProcessorArgs.builder()
.pipeline(LogsCustomPipelineProcessorPipelineArgs.builder()
.filter(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.isEnabled(true)
.name("nested pipeline")
.processor(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build())
.build(),
LogsCustomPipelineProcessorArgs.builder()
.serviceRemapper(LogsCustomPipelineProcessorServiceRemapperArgs.builder()
.isEnabled(true)
.name("sample service remapper")
.sources("service")
.build())
.build(),
LogsCustomPipelineProcessorArgs.builder()
.statusRemapper(LogsCustomPipelineProcessorStatusRemapperArgs.builder()
.isEnabled(true)
.name("sample status remapper")
.sources(
"info",
"trace")
.build())
.build(),
LogsCustomPipelineProcessorArgs.builder()
.stringBuilderProcessor(LogsCustomPipelineProcessorStringBuilderProcessorArgs.builder()
.isEnabled(true)
.isReplaceMissing(false)
.name("sample string builder processor")
.target("user_activity")
.template("%%{user.name} logged in at %%{timestamp}")
.build())
.build(),
LogsCustomPipelineProcessorArgs.builder()
.traceIdRemapper(LogsCustomPipelineProcessorTraceIdRemapperArgs.builder()
.isEnabled(true)
.name("sample trace id remapper")
.sources("dd.trace_id")
.build())
.build(),
LogsCustomPipelineProcessorArgs.builder()
.userAgentParser(LogsCustomPipelineProcessorUserAgentParserArgs.builder()
.isEnabled(true)
.isEncoded(false)
.name("sample user agent parser")
.sources(
"user",
"agent")
.target("http_agent")
.build())
.build())
.build());
}
}
Coming soon!
Coming soon!
resources:
samplePipeline:
type: datadog:LogsCustomPipeline
properties:
filters:
- query: source:foo
isEnabled: true
name: sample pipeline
processors:
- arithmeticProcessor:
expression: (time1 - time2)*1000
isEnabled: true
isReplaceMissing: true
name: sample arithmetic processor
target: my_arithmetic
- attributeRemapper:
isEnabled: true
name: sample attribute processor
overrideOnConflict: false
preserveSource: true
sourceType: tag
sources:
- db.instance
target: db
targetFormat: string
targetType: attribute
- categoryProcessor:
category:
- filter:
query: '@severity: "."'
name: debug
- filter:
query: '@severity: "-"'
name: verbose
isEnabled: true
name: sample category processor
target: foo.severity
- dateRemapper:
isEnabled: true
name: sample date remapper
sources:
- _timestamp
- published_date
- geoIpParser:
isEnabled: true
name: sample geo ip parser
sources:
- network.client.ip
target: network.client.geoip
- grokParser:
grok:
matchRules: Rule %%{word:my_word2} %%{number:my_float2}
supportRules:
isEnabled: true
name: sample grok parser
samples:
- sample log 1
source: message
- lookupProcessor:
defaultLookup: unknown service
isEnabled: true
lookupTable:
- 1,my service
name: sample lookup processor
source: service_id
target: service_name
- messageRemapper:
isEnabled: true
name: sample message remapper
sources:
- msg
- pipeline:
filter:
- query: source:foo
isEnabled: true
name: nested pipeline
processor:
- urlParser:
name: sample url parser
normalizeEndingSlashes: true
sources:
- url
- extra
target: http_url
- serviceRemapper:
isEnabled: true
name: sample service remapper
sources:
- service
- statusRemapper:
isEnabled: true
name: sample status remapper
sources:
- info
- trace
- stringBuilderProcessor:
isEnabled: true
isReplaceMissing: false
name: sample string builder processor
target: user_activity
template: '%%{user.name} logged in at %%{timestamp}'
- traceIdRemapper:
isEnabled: true
name: sample trace id remapper
sources:
- dd.trace_id
- userAgentParser:
isEnabled: true
isEncoded: false
name: sample user agent parser
sources:
- user
- agent
target: http_agent
Create LogsCustomPipeline Resource
new LogsCustomPipeline(name: string, args: LogsCustomPipelineArgs, opts?: CustomResourceOptions);
@overload
def LogsCustomPipeline(resource_name: str,
opts: Optional[ResourceOptions] = None,
filters: Optional[Sequence[LogsCustomPipelineFilterArgs]] = None,
is_enabled: Optional[bool] = None,
name: Optional[str] = None,
processors: Optional[Sequence[LogsCustomPipelineProcessorArgs]] = None)
@overload
def LogsCustomPipeline(resource_name: str,
args: LogsCustomPipelineArgs,
opts: Optional[ResourceOptions] = None)
func NewLogsCustomPipeline(ctx *Context, name string, args LogsCustomPipelineArgs, opts ...ResourceOption) (*LogsCustomPipeline, error)
public LogsCustomPipeline(string name, LogsCustomPipelineArgs args, CustomResourceOptions? opts = null)
public LogsCustomPipeline(String name, LogsCustomPipelineArgs args)
public LogsCustomPipeline(String name, LogsCustomPipelineArgs args, CustomResourceOptions options)
type: datadog:LogsCustomPipeline
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LogsCustomPipelineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args LogsCustomPipelineArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args LogsCustomPipelineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LogsCustomPipelineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LogsCustomPipelineArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
LogsCustomPipeline Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The LogsCustomPipeline resource accepts the following input properties:
- filters List<Property Map>
- name String
- is
Enabled Boolean - processors List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the LogsCustomPipeline resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing LogsCustomPipeline Resource
Get an existing LogsCustomPipeline resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: LogsCustomPipelineState, opts?: CustomResourceOptions): LogsCustomPipeline
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
filters: Optional[Sequence[LogsCustomPipelineFilterArgs]] = None,
is_enabled: Optional[bool] = None,
name: Optional[str] = None,
processors: Optional[Sequence[LogsCustomPipelineProcessorArgs]] = None) -> LogsCustomPipeline
func GetLogsCustomPipeline(ctx *Context, name string, id IDInput, state *LogsCustomPipelineState, opts ...ResourceOption) (*LogsCustomPipeline, error)
public static LogsCustomPipeline Get(string name, Input<string> id, LogsCustomPipelineState? state, CustomResourceOptions? opts = null)
public static LogsCustomPipeline get(String name, Output<String> id, LogsCustomPipelineState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- filters List<Property Map>
- is
Enabled Boolean - name String
- processors List<Property Map>
Supporting Types
LogsCustomPipelineFilter, LogsCustomPipelineFilterArgs
- Query string
Filter criteria of the category.
- Query string
Filter criteria of the category.
- query String
Filter criteria of the category.
- query string
Filter criteria of the category.
- query str
Filter criteria of the category.
- query String
Filter criteria of the category.
LogsCustomPipelineProcessor, LogsCustomPipelineProcessorArgs
- Arithmetic
Processor LogsCustom Pipeline Processor Arithmetic Processor Arithmetic Processor. More information can be found in the official docs
- Attribute
Remapper LogsCustom Pipeline Processor Attribute Remapper Attribute Remapper Processor. More information can be found in the official docs
- Category
Processor LogsCustom Pipeline Processor Category Processor Category Processor. More information can be found in the official docs
- Date
Remapper LogsCustom Pipeline Processor Date Remapper Date Remapper Processor. More information can be found in the official docs
- Geo
Ip LogsParser Custom Pipeline Processor Geo Ip Parser Date GeoIP Processor. More information can be found in the official docs
- Grok
Parser LogsCustom Pipeline Processor Grok Parser Grok Processor. More information can be found in the official docs
- Lookup
Processor LogsCustom Pipeline Processor Lookup Processor Lookup Processor. More information can be found in the official docs
- Message
Remapper LogsCustom Pipeline Processor Message Remapper Message Remapper Processor. More information can be found in the official docs
- Pipeline
Logs
Custom Pipeline Processor Pipeline - Reference
Table LogsLookup Processor Custom Pipeline Processor Reference Table Lookup Processor Reference Table Lookup Processor. Reference Tables are in public beta. More information can be found in the official docs
- Service
Remapper LogsCustom Pipeline Processor Service Remapper Service Remapper Processor. More information can be found in the official docs
- Status
Remapper LogsCustom Pipeline Processor Status Remapper Status Remapper Processor. More information can be found in the official docs
- String
Builder LogsProcessor Custom Pipeline Processor String Builder Processor String Builder Processor. More information can be found in the official docs
- Trace
Id LogsRemapper Custom Pipeline Processor Trace Id Remapper Trace ID Remapper Processor. More information can be found in the official docs
- Url
Parser LogsCustom Pipeline Processor Url Parser URL Parser Processor. More information can be found in the official docs
- User
Agent LogsParser Custom Pipeline Processor User Agent Parser User-Agent Parser Processor. More information can be found in the official docs
- Arithmetic
Processor LogsCustom Pipeline Processor Arithmetic Processor Arithmetic Processor. More information can be found in the official docs
- Attribute
Remapper LogsCustom Pipeline Processor Attribute Remapper Attribute Remapper Processor. More information can be found in the official docs
- Category
Processor LogsCustom Pipeline Processor Category Processor Category Processor. More information can be found in the official docs
- Date
Remapper LogsCustom Pipeline Processor Date Remapper Date Remapper Processor. More information can be found in the official docs
- Geo
Ip LogsParser Custom Pipeline Processor Geo Ip Parser Date GeoIP Processor. More information can be found in the official docs
- Grok
Parser LogsCustom Pipeline Processor Grok Parser Grok Processor. More information can be found in the official docs
- Lookup
Processor LogsCustom Pipeline Processor Lookup Processor Lookup Processor. More information can be found in the official docs
- Message
Remapper LogsCustom Pipeline Processor Message Remapper Message Remapper Processor. More information can be found in the official docs
- Pipeline
Logs
Custom Pipeline Processor Pipeline - Reference
Table LogsLookup Processor Custom Pipeline Processor Reference Table Lookup Processor Reference Table Lookup Processor. Reference Tables are in public beta. More information can be found in the official docs
- Service
Remapper LogsCustom Pipeline Processor Service Remapper Service Remapper Processor. More information can be found in the official docs
- Status
Remapper LogsCustom Pipeline Processor Status Remapper Status Remapper Processor. More information can be found in the official docs
- String
Builder LogsProcessor Custom Pipeline Processor String Builder Processor String Builder Processor. More information can be found in the official docs
- Trace
Id LogsRemapper Custom Pipeline Processor Trace Id Remapper Trace ID Remapper Processor. More information can be found in the official docs
- Url
Parser LogsCustom Pipeline Processor Url Parser URL Parser Processor. More information can be found in the official docs
- User
Agent LogsParser Custom Pipeline Processor User Agent Parser User-Agent Parser Processor. More information can be found in the official docs
- arithmetic
Processor LogsCustom Pipeline Processor Arithmetic Processor Arithmetic Processor. More information can be found in the official docs
- attribute
Remapper LogsCustom Pipeline Processor Attribute Remapper Attribute Remapper Processor. More information can be found in the official docs
- category
Processor LogsCustom Pipeline Processor Category Processor Category Processor. More information can be found in the official docs
- date
Remapper LogsCustom Pipeline Processor Date Remapper Date Remapper Processor. More information can be found in the official docs
- geo
Ip LogsParser Custom Pipeline Processor Geo Ip Parser Date GeoIP Processor. More information can be found in the official docs
- grok
Parser LogsCustom Pipeline Processor Grok Parser Grok Processor. More information can be found in the official docs
- lookup
Processor LogsCustom Pipeline Processor Lookup Processor Lookup Processor. More information can be found in the official docs
- message
Remapper LogsCustom Pipeline Processor Message Remapper Message Remapper Processor. More information can be found in the official docs
- pipeline
Logs
Custom Pipeline Processor Pipeline - reference
Table LogsLookup Processor Custom Pipeline Processor Reference Table Lookup Processor Reference Table Lookup Processor. Reference Tables are in public beta. More information can be found in the official docs
- service
Remapper LogsCustom Pipeline Processor Service Remapper Service Remapper Processor. More information can be found in the official docs
- status
Remapper LogsCustom Pipeline Processor Status Remapper Status Remapper Processor. More information can be found in the official docs
- string
Builder LogsProcessor Custom Pipeline Processor String Builder Processor String Builder Processor. More information can be found in the official docs
- trace
Id LogsRemapper Custom Pipeline Processor Trace Id Remapper Trace ID Remapper Processor. More information can be found in the official docs
- url
Parser LogsCustom Pipeline Processor Url Parser URL Parser Processor. More information can be found in the official docs
- user
Agent LogsParser Custom Pipeline Processor User Agent Parser User-Agent Parser Processor. More information can be found in the official docs
- arithmetic
Processor LogsCustom Pipeline Processor Arithmetic Processor Arithmetic Processor. More information can be found in the official docs
- attribute
Remapper LogsCustom Pipeline Processor Attribute Remapper Attribute Remapper Processor. More information can be found in the official docs
- category
Processor LogsCustom Pipeline Processor Category Processor Category Processor. More information can be found in the official docs
- date
Remapper LogsCustom Pipeline Processor Date Remapper Date Remapper Processor. More information can be found in the official docs
- geo
Ip LogsParser Custom Pipeline Processor Geo Ip Parser Date GeoIP Processor. More information can be found in the official docs
- grok
Parser LogsCustom Pipeline Processor Grok Parser Grok Processor. More information can be found in the official docs
- lookup
Processor LogsCustom Pipeline Processor Lookup Processor Lookup Processor. More information can be found in the official docs
- message
Remapper LogsCustom Pipeline Processor Message Remapper Message Remapper Processor. More information can be found in the official docs
- pipeline
Logs
Custom Pipeline Processor Pipeline - reference
Table LogsLookup Processor Custom Pipeline Processor Reference Table Lookup Processor Reference Table Lookup Processor. Reference Tables are in public beta. More information can be found in the official docs
- service
Remapper LogsCustom Pipeline Processor Service Remapper Service Remapper Processor. More information can be found in the official docs
- status
Remapper LogsCustom Pipeline Processor Status Remapper Status Remapper Processor. More information can be found in the official docs
- string
Builder LogsProcessor Custom Pipeline Processor String Builder Processor String Builder Processor. More information can be found in the official docs
- trace
Id LogsRemapper Custom Pipeline Processor Trace Id Remapper Trace ID Remapper Processor. More information can be found in the official docs
- url
Parser LogsCustom Pipeline Processor Url Parser URL Parser Processor. More information can be found in the official docs
- user
Agent LogsParser Custom Pipeline Processor User Agent Parser User-Agent Parser Processor. More information can be found in the official docs
- arithmetic_
processor LogsCustom Pipeline Processor Arithmetic Processor Arithmetic Processor. More information can be found in the official docs
- attribute_
remapper LogsCustom Pipeline Processor Attribute Remapper Attribute Remapper Processor. More information can be found in the official docs
- category_
processor LogsCustom Pipeline Processor Category Processor Category Processor. More information can be found in the official docs
- date_
remapper LogsCustom Pipeline Processor Date Remapper Date Remapper Processor. More information can be found in the official docs
- geo_
ip_ Logsparser Custom Pipeline Processor Geo Ip Parser Date GeoIP Processor. More information can be found in the official docs
- grok_
parser LogsCustom Pipeline Processor Grok Parser Grok Processor. More information can be found in the official docs
- lookup_
processor LogsCustom Pipeline Processor Lookup Processor Lookup Processor. More information can be found in the official docs
- message_
remapper LogsCustom Pipeline Processor Message Remapper Message Remapper Processor. More information can be found in the official docs
- pipeline
Logs
Custom Pipeline Processor Pipeline - reference_
table_ Logslookup_ processor Custom Pipeline Processor Reference Table Lookup Processor Reference Table Lookup Processor. Reference Tables are in public beta. More information can be found in the official docs
- service_
remapper LogsCustom Pipeline Processor Service Remapper Service Remapper Processor. More information can be found in the official docs
- status_
remapper LogsCustom Pipeline Processor Status Remapper Status Remapper Processor. More information can be found in the official docs
- string_
builder_ Logsprocessor Custom Pipeline Processor String Builder Processor String Builder Processor. More information can be found in the official docs
- trace_
id_ Logsremapper Custom Pipeline Processor Trace Id Remapper Trace ID Remapper Processor. More information can be found in the official docs
- url_
parser LogsCustom Pipeline Processor Url Parser URL Parser Processor. More information can be found in the official docs
- user_
agent_ Logsparser Custom Pipeline Processor User Agent Parser User-Agent Parser Processor. More information can be found in the official docs
- arithmetic
Processor Property Map Arithmetic Processor. More information can be found in the official docs
- attribute
Remapper Property Map Attribute Remapper Processor. More information can be found in the official docs
- category
Processor Property Map Category Processor. More information can be found in the official docs
- date
Remapper Property Map Date Remapper Processor. More information can be found in the official docs
- geo
Ip Property MapParser Date GeoIP Processor. More information can be found in the official docs
- grok
Parser Property Map Grok Processor. More information can be found in the official docs
- lookup
Processor Property Map Lookup Processor. More information can be found in the official docs
- message
Remapper Property Map Message Remapper Processor. More information can be found in the official docs
- pipeline Property Map
- reference
Table Property MapLookup Processor Reference Table Lookup Processor. Reference Tables are in public beta. More information can be found in the official docs
- service
Remapper Property Map Service Remapper Processor. More information can be found in the official docs
- status
Remapper Property Map Status Remapper Processor. More information can be found in the official docs
- string
Builder Property MapProcessor String Builder Processor. More information can be found in the official docs
- trace
Id Property MapRemapper Trace ID Remapper Processor. More information can be found in the official docs
- url
Parser Property Map URL Parser Processor. More information can be found in the official docs
- user
Agent Property MapParser User-Agent Parser Processor. More information can be found in the official docs
LogsCustomPipelineProcessorArithmeticProcessor, LogsCustomPipelineProcessorArithmeticProcessorArgs
- Expression string
- Target string
- Is
Enabled bool - Is
Replace boolMissing - Name string
- Expression string
- Target string
- Is
Enabled bool - Is
Replace boolMissing - Name string
- expression String
- target String
- is
Enabled Boolean - is
Replace BooleanMissing - name String
- expression string
- target string
- is
Enabled boolean - is
Replace booleanMissing - name string
- expression str
- target str
- is_
enabled bool - is_
replace_ boolmissing - name str
- expression String
- target String
- is
Enabled Boolean - is
Replace BooleanMissing - name String
LogsCustomPipelineProcessorAttributeRemapper, LogsCustomPipelineProcessorAttributeRemapperArgs
- Source
Type string - Sources List<string>
- Target string
- Target
Type string - Is
Enabled bool - Name string
- Override
On boolConflict - Preserve
Source bool - Target
Format string
- Source
Type string - Sources []string
- Target string
- Target
Type string - Is
Enabled bool - Name string
- Override
On boolConflict - Preserve
Source bool - Target
Format string
- source
Type String - sources List<String>
- target String
- target
Type String - is
Enabled Boolean - name String
- override
On BooleanConflict - preserve
Source Boolean - target
Format String
- source
Type string - sources string[]
- target string
- target
Type string - is
Enabled boolean - name string
- override
On booleanConflict - preserve
Source boolean - target
Format string
- source_
type str - sources Sequence[str]
- target str
- target_
type str - is_
enabled bool - name str
- override_
on_ boolconflict - preserve_
source bool - target_
format str
- source
Type String - sources List<String>
- target String
- target
Type String - is
Enabled Boolean - name String
- override
On BooleanConflict - preserve
Source Boolean - target
Format String
LogsCustomPipelineProcessorCategoryProcessor, LogsCustomPipelineProcessorCategoryProcessorArgs
- categories
List<Logs
Custom Pipeline Processor Category Processor Category> - target String
- is
Enabled Boolean - name String
- categories
Logs
Custom Pipeline Processor Category Processor Category[] - target string
- is
Enabled boolean - name string
- categories List<Property Map>
- target String
- is
Enabled Boolean - name String
LogsCustomPipelineProcessorCategoryProcessorCategory, LogsCustomPipelineProcessorCategoryProcessorCategoryArgs
- filter Property Map
- name String
LogsCustomPipelineProcessorCategoryProcessorCategoryFilter, LogsCustomPipelineProcessorCategoryProcessorCategoryFilterArgs
- Query string
Filter criteria of the category.
- Query string
Filter criteria of the category.
- query String
Filter criteria of the category.
- query string
Filter criteria of the category.
- query str
Filter criteria of the category.
- query String
Filter criteria of the category.
LogsCustomPipelineProcessorDateRemapper, LogsCustomPipelineProcessorDateRemapperArgs
- sources Sequence[str]
- is_
enabled bool - name str
LogsCustomPipelineProcessorGeoIpParser, LogsCustomPipelineProcessorGeoIpParserArgs
- sources Sequence[str]
- target str
- is_
enabled bool - name str
LogsCustomPipelineProcessorGrokParser, LogsCustomPipelineProcessorGrokParserArgs
- grok
Logs
Custom Pipeline Processor Grok Parser Grok - source str
- is_
enabled bool - name str
- samples Sequence[str]
LogsCustomPipelineProcessorGrokParserGrok, LogsCustomPipelineProcessorGrokParserGrokArgs
- Match
Rules string - Support
Rules string
- Match
Rules string - Support
Rules string
- match
Rules String - support
Rules String
- match
Rules string - support
Rules string
- match_
rules str - support_
rules str
- match
Rules String - support
Rules String
LogsCustomPipelineProcessorLookupProcessor, LogsCustomPipelineProcessorLookupProcessorArgs
- Lookup
Tables List<string> - Source string
- Target string
- Default
Lookup string - Is
Enabled bool - Name string
- Lookup
Tables []string - Source string
- Target string
- Default
Lookup string - Is
Enabled bool - Name string
- lookup
Tables List<String> - source String
- target String
- default
Lookup String - is
Enabled Boolean - name String
- lookup
Tables string[] - source string
- target string
- default
Lookup string - is
Enabled boolean - name string
- lookup_
tables Sequence[str] - source str
- target str
- default_
lookup str - is_
enabled bool - name str
- lookup
Tables List<String> - source String
- target String
- default
Lookup String - is
Enabled Boolean - name String
LogsCustomPipelineProcessorMessageRemapper, LogsCustomPipelineProcessorMessageRemapperArgs
- sources Sequence[str]
- is_
enabled bool - name str
LogsCustomPipelineProcessorPipeline, LogsCustomPipelineProcessorPipelineArgs
- filters List<Property Map>
- name String
- is
Enabled Boolean - processors List<Property Map>
LogsCustomPipelineProcessorPipelineFilter, LogsCustomPipelineProcessorPipelineFilterArgs
- Query string
Filter criteria of the category.
- Query string
Filter criteria of the category.
- query String
Filter criteria of the category.
- query string
Filter criteria of the category.
- query str
Filter criteria of the category.
- query String
Filter criteria of the category.
LogsCustomPipelineProcessorPipelineProcessor, LogsCustomPipelineProcessorPipelineProcessorArgs
- Arithmetic
Processor LogsCustom Pipeline Processor Pipeline Processor Arithmetic Processor Arithmetic Processor. More information can be found in the official docs
- Attribute
Remapper LogsCustom Pipeline Processor Pipeline Processor Attribute Remapper Attribute Remapper Processor. More information can be found in the official docs
- Category
Processor LogsCustom Pipeline Processor Pipeline Processor Category Processor Category Processor. More information can be found in the official docs
- Date
Remapper LogsCustom Pipeline Processor Pipeline Processor Date Remapper Date Remapper Processor. More information can be found in the official docs
- Geo
Ip LogsParser Custom Pipeline Processor Pipeline Processor Geo Ip Parser Date GeoIP Processor. More information can be found in the official docs
- Grok
Parser LogsCustom Pipeline Processor Pipeline Processor Grok Parser Grok Processor. More information can be found in the official docs
- Lookup
Processor LogsCustom Pipeline Processor Pipeline Processor Lookup Processor Lookup Processor. More information can be found in the official docs
- Message
Remapper LogsCustom Pipeline Processor Pipeline Processor Message Remapper Message Remapper Processor. More information can be found in the official docs
- Reference
Table LogsLookup Processor Custom Pipeline Processor Pipeline Processor Reference Table Lookup Processor Reference Table Lookup Processor. Reference Tables are in public beta. More information can be found in the official docs
- Service
Remapper LogsCustom Pipeline Processor Pipeline Processor Service Remapper Service Remapper Processor. More information can be found in the official docs
- Status
Remapper LogsCustom Pipeline Processor Pipeline Processor Status Remapper Status Remapper Processor. More information can be found in the official docs
- String
Builder LogsProcessor Custom Pipeline Processor Pipeline Processor String Builder Processor String Builder Processor. More information can be found in the official docs
- Trace
Id LogsRemapper Custom Pipeline Processor Pipeline Processor Trace Id Remapper Trace ID Remapper Processor. More information can be found in the official docs
- Url
Parser LogsCustom Pipeline Processor Pipeline Processor Url Parser URL Parser Processor. More information can be found in the official docs
- User
Agent LogsParser Custom Pipeline Processor Pipeline Processor User Agent Parser User-Agent Parser Processor. More information can be found in the official docs
- Arithmetic
Processor LogsCustom Pipeline Processor Pipeline Processor Arithmetic Processor Arithmetic Processor. More information can be found in the official docs
- Attribute
Remapper LogsCustom Pipeline Processor Pipeline Processor Attribute Remapper Attribute Remapper Processor. More information can be found in the official docs
- Category
Processor LogsCustom Pipeline Processor Pipeline Processor Category Processor Category Processor. More information can be found in the official docs
- Date
Remapper LogsCustom Pipeline Processor Pipeline Processor Date Remapper Date Remapper Processor. More information can be found in the official docs
- Geo
Ip LogsParser Custom Pipeline Processor Pipeline Processor Geo Ip Parser Date GeoIP Processor. More information can be found in the official docs
- Grok
Parser LogsCustom Pipeline Processor Pipeline Processor Grok Parser Grok Processor. More information can be found in the official docs
- Lookup
Processor LogsCustom Pipeline Processor Pipeline Processor Lookup Processor Lookup Processor. More information can be found in the official docs
- Message
Remapper LogsCustom Pipeline Processor Pipeline Processor Message Remapper Message Remapper Processor. More information can be found in the official docs
- Reference
Table LogsLookup Processor Custom Pipeline Processor Pipeline Processor Reference Table Lookup Processor Reference Table Lookup Processor. Reference Tables are in public beta. More information can be found in the official docs
- Service
Remapper LogsCustom Pipeline Processor Pipeline Processor Service Remapper Service Remapper Processor. More information can be found in the official docs
- Status
Remapper LogsCustom Pipeline Processor Pipeline Processor Status Remapper Status Remapper Processor. More information can be found in the official docs
- String
Builder LogsProcessor Custom Pipeline Processor Pipeline Processor String Builder Processor String Builder Processor. More information can be found in the official docs
- Trace
Id LogsRemapper Custom Pipeline Processor Pipeline Processor Trace Id Remapper Trace ID Remapper Processor. More information can be found in the official docs
- Url
Parser LogsCustom Pipeline Processor Pipeline Processor Url Parser URL Parser Processor. More information can be found in the official docs
- User
Agent LogsParser Custom Pipeline Processor Pipeline Processor User Agent Parser User-Agent Parser Processor. More information can be found in the official docs
- arithmetic
Processor LogsCustom Pipeline Processor Pipeline Processor Arithmetic Processor Arithmetic Processor. More information can be found in the official docs
- attribute
Remapper LogsCustom Pipeline Processor Pipeline Processor Attribute Remapper Attribute Remapper Processor. More information can be found in the official docs
- category
Processor LogsCustom Pipeline Processor Pipeline Processor Category Processor Category Processor. More information can be found in the official docs
- date
Remapper LogsCustom Pipeline Processor Pipeline Processor Date Remapper Date Remapper Processor. More information can be found in the official docs
- geo
Ip LogsParser Custom Pipeline Processor Pipeline Processor Geo Ip Parser Date GeoIP Processor. More information can be found in the official docs
- grok
Parser LogsCustom Pipeline Processor Pipeline Processor Grok Parser Grok Processor. More information can be found in the official docs
- lookup
Processor LogsCustom Pipeline Processor Pipeline Processor Lookup Processor Lookup Processor. More information can be found in the official docs
- message
Remapper LogsCustom Pipeline Processor Pipeline Processor Message Remapper Message Remapper Processor. More information can be found in the official docs
- reference
Table LogsLookup Processor Custom Pipeline Processor Pipeline Processor Reference Table Lookup Processor Reference Table Lookup Processor. Reference Tables are in public beta. More information can be found in the official docs
- service
Remapper LogsCustom Pipeline Processor Pipeline Processor Service Remapper Service Remapper Processor. More information can be found in the official docs
- status
Remapper LogsCustom Pipeline Processor Pipeline Processor Status Remapper Status Remapper Processor. More information can be found in the official docs
- string
Builder LogsProcessor Custom Pipeline Processor Pipeline Processor String Builder Processor String Builder Processor. More information can be found in the official docs
- trace
Id LogsRemapper Custom Pipeline Processor Pipeline Processor Trace Id Remapper Trace ID Remapper Processor. More information can be found in the official docs
- url
Parser LogsCustom Pipeline Processor Pipeline Processor Url Parser URL Parser Processor. More information can be found in the official docs
- user
Agent LogsParser Custom Pipeline Processor Pipeline Processor User Agent Parser User-Agent Parser Processor. More information can be found in the official docs
- arithmetic
Processor LogsCustom Pipeline Processor Pipeline Processor Arithmetic Processor Arithmetic Processor. More information can be found in the official docs
- attribute
Remapper LogsCustom Pipeline Processor Pipeline Processor Attribute Remapper Attribute Remapper Processor. More information can be found in the official docs
- category
Processor LogsCustom Pipeline Processor Pipeline Processor Category Processor Category Processor. More information can be found in the official docs
- date
Remapper LogsCustom Pipeline Processor Pipeline Processor Date Remapper Date Remapper Processor. More information can be found in the official docs
- geo
Ip LogsParser Custom Pipeline Processor Pipeline Processor Geo Ip Parser Date GeoIP Processor. More information can be found in the official docs
- grok
Parser LogsCustom Pipeline Processor Pipeline Processor Grok Parser Grok Processor. More information can be found in the official docs
- lookup
Processor LogsCustom Pipeline Processor Pipeline Processor Lookup Processor Lookup Processor. More information can be found in the official docs
- message
Remapper LogsCustom Pipeline Processor Pipeline Processor Message Remapper Message Remapper Processor. More information can be found in the official docs
- reference
Table LogsLookup Processor Custom Pipeline Processor Pipeline Processor Reference Table Lookup Processor Reference Table Lookup Processor. Reference Tables are in public beta. More information can be found in the official docs
- service
Remapper LogsCustom Pipeline Processor Pipeline Processor Service Remapper Service Remapper Processor. More information can be found in the official docs
- status
Remapper LogsCustom Pipeline Processor Pipeline Processor Status Remapper Status Remapper Processor. More information can be found in the official docs
- string
Builder LogsProcessor Custom Pipeline Processor Pipeline Processor String Builder Processor String Builder Processor. More information can be found in the official docs
- trace
Id LogsRemapper Custom Pipeline Processor Pipeline Processor Trace Id Remapper Trace ID Remapper Processor. More information can be found in the official docs
- url
Parser LogsCustom Pipeline Processor Pipeline Processor Url Parser URL Parser Processor. More information can be found in the official docs
- user
Agent LogsParser Custom Pipeline Processor Pipeline Processor User Agent Parser User-Agent Parser Processor. More information can be found in the official docs
- arithmetic_
processor LogsCustom Pipeline Processor Pipeline Processor Arithmetic Processor Arithmetic Processor. More information can be found in the official docs
- attribute_
remapper LogsCustom Pipeline Processor Pipeline Processor Attribute Remapper Attribute Remapper Processor. More information can be found in the official docs
- category_
processor LogsCustom Pipeline Processor Pipeline Processor Category Processor Category Processor. More information can be found in the official docs
- date_
remapper LogsCustom Pipeline Processor Pipeline Processor Date Remapper Date Remapper Processor. More information can be found in the official docs
- geo_
ip_ Logsparser Custom Pipeline Processor Pipeline Processor Geo Ip Parser Date GeoIP Processor. More information can be found in the official docs
- grok_
parser LogsCustom Pipeline Processor Pipeline Processor Grok Parser Grok Processor. More information can be found in the official docs
- lookup_
processor LogsCustom Pipeline Processor Pipeline Processor Lookup Processor Lookup Processor. More information can be found in the official docs
- message_
remapper LogsCustom Pipeline Processor Pipeline Processor Message Remapper Message Remapper Processor. More information can be found in the official docs
- reference_
table_ Logslookup_ processor Custom Pipeline Processor Pipeline Processor Reference Table Lookup Processor Reference Table Lookup Processor. Reference Tables are in public beta. More information can be found in the official docs
- service_
remapper LogsCustom Pipeline Processor Pipeline Processor Service Remapper Service Remapper Processor. More information can be found in the official docs
- status_
remapper LogsCustom Pipeline Processor Pipeline Processor Status Remapper Status Remapper Processor. More information can be found in the official docs
- string_
builder_ Logsprocessor Custom Pipeline Processor Pipeline Processor String Builder Processor String Builder Processor. More information can be found in the official docs
- trace_
id_ Logsremapper Custom Pipeline Processor Pipeline Processor Trace Id Remapper Trace ID Remapper Processor. More information can be found in the official docs
- url_
parser LogsCustom Pipeline Processor Pipeline Processor Url Parser URL Parser Processor. More information can be found in the official docs
- user_
agent_ Logsparser Custom Pipeline Processor Pipeline Processor User Agent Parser User-Agent Parser Processor. More information can be found in the official docs
- arithmetic
Processor Property Map Arithmetic Processor. More information can be found in the official docs
- attribute
Remapper Property Map Attribute Remapper Processor. More information can be found in the official docs
- category
Processor Property Map Category Processor. More information can be found in the official docs
- date
Remapper Property Map Date Remapper Processor. More information can be found in the official docs
- geo
Ip Property MapParser Date GeoIP Processor. More information can be found in the official docs
- grok
Parser Property Map Grok Processor. More information can be found in the official docs
- lookup
Processor Property Map Lookup Processor. More information can be found in the official docs
- message
Remapper Property Map Message Remapper Processor. More information can be found in the official docs
- reference
Table Property MapLookup Processor Reference Table Lookup Processor. Reference Tables are in public beta. More information can be found in the official docs
- service
Remapper Property Map Service Remapper Processor. More information can be found in the official docs
- status
Remapper Property Map Status Remapper Processor. More information can be found in the official docs
- string
Builder Property MapProcessor String Builder Processor. More information can be found in the official docs
- trace
Id Property MapRemapper Trace ID Remapper Processor. More information can be found in the official docs
- url
Parser Property Map URL Parser Processor. More information can be found in the official docs
- user
Agent Property MapParser User-Agent Parser Processor. More information can be found in the official docs
LogsCustomPipelineProcessorPipelineProcessorArithmeticProcessor, LogsCustomPipelineProcessorPipelineProcessorArithmeticProcessorArgs
- Expression string
- Target string
- Is
Enabled bool - Is
Replace boolMissing - Name string
- Expression string
- Target string
- Is
Enabled bool - Is
Replace boolMissing - Name string
- expression String
- target String
- is
Enabled Boolean - is
Replace BooleanMissing - name String
- expression string
- target string
- is
Enabled boolean - is
Replace booleanMissing - name string
- expression str
- target str
- is_
enabled bool - is_
replace_ boolmissing - name str
- expression String
- target String
- is
Enabled Boolean - is
Replace BooleanMissing - name String
LogsCustomPipelineProcessorPipelineProcessorAttributeRemapper, LogsCustomPipelineProcessorPipelineProcessorAttributeRemapperArgs
- Source
Type string - Sources List<string>
- Target string
- Target
Type string - Is
Enabled bool - Name string
- Override
On boolConflict - Preserve
Source bool - Target
Format string
- Source
Type string - Sources []string
- Target string
- Target
Type string - Is
Enabled bool - Name string
- Override
On boolConflict - Preserve
Source bool - Target
Format string
- source
Type String - sources List<String>
- target String
- target
Type String - is
Enabled Boolean - name String
- override
On BooleanConflict - preserve
Source Boolean - target
Format String
- source
Type string - sources string[]
- target string
- target
Type string - is
Enabled boolean - name string
- override
On booleanConflict - preserve
Source boolean - target
Format string
- source_
type str - sources Sequence[str]
- target str
- target_
type str - is_
enabled bool - name str
- override_
on_ boolconflict - preserve_
source bool - target_
format str
- source
Type String - sources List<String>
- target String
- target
Type String - is
Enabled Boolean - name String
- override
On BooleanConflict - preserve
Source Boolean - target
Format String
LogsCustomPipelineProcessorPipelineProcessorCategoryProcessor, LogsCustomPipelineProcessorPipelineProcessorCategoryProcessorArgs
- categories List<Property Map>
- target String
- is
Enabled Boolean - name String
LogsCustomPipelineProcessorPipelineProcessorCategoryProcessorCategory, LogsCustomPipelineProcessorPipelineProcessorCategoryProcessorCategoryArgs
- filter Property Map
- name String
LogsCustomPipelineProcessorPipelineProcessorCategoryProcessorCategoryFilter, LogsCustomPipelineProcessorPipelineProcessorCategoryProcessorCategoryFilterArgs
- Query string
Filter criteria of the category.
- Query string
Filter criteria of the category.
- query String
Filter criteria of the category.
- query string
Filter criteria of the category.
- query str
Filter criteria of the category.
- query String
Filter criteria of the category.
LogsCustomPipelineProcessorPipelineProcessorDateRemapper, LogsCustomPipelineProcessorPipelineProcessorDateRemapperArgs
- sources Sequence[str]
- is_
enabled bool - name str
LogsCustomPipelineProcessorPipelineProcessorGeoIpParser, LogsCustomPipelineProcessorPipelineProcessorGeoIpParserArgs
- sources Sequence[str]
- target str
- is_
enabled bool - name str
LogsCustomPipelineProcessorPipelineProcessorGrokParser, LogsCustomPipelineProcessorPipelineProcessorGrokParserArgs
- grok
Logs
Custom Pipeline Processor Pipeline Processor Grok Parser Grok - source str
- is_
enabled bool - name str
- samples Sequence[str]
LogsCustomPipelineProcessorPipelineProcessorGrokParserGrok, LogsCustomPipelineProcessorPipelineProcessorGrokParserGrokArgs
- Match
Rules string - Support
Rules string
- Match
Rules string - Support
Rules string
- match
Rules String - support
Rules String
- match
Rules string - support
Rules string
- match_
rules str - support_
rules str
- match
Rules String - support
Rules String
LogsCustomPipelineProcessorPipelineProcessorLookupProcessor, LogsCustomPipelineProcessorPipelineProcessorLookupProcessorArgs
- Lookup
Tables List<string> - Source string
- Target string
- Default
Lookup string - Is
Enabled bool - Name string
- Lookup
Tables []string - Source string
- Target string
- Default
Lookup string - Is
Enabled bool - Name string
- lookup
Tables List<String> - source String
- target String
- default
Lookup String - is
Enabled Boolean - name String
- lookup
Tables string[] - source string
- target string
- default
Lookup string - is
Enabled boolean - name string
- lookup_
tables Sequence[str] - source str
- target str
- default_
lookup str - is_
enabled bool - name str
- lookup
Tables List<String> - source String
- target String
- default
Lookup String - is
Enabled Boolean - name String
LogsCustomPipelineProcessorPipelineProcessorMessageRemapper, LogsCustomPipelineProcessorPipelineProcessorMessageRemapperArgs
- sources Sequence[str]
- is_
enabled bool - name str
LogsCustomPipelineProcessorPipelineProcessorReferenceTableLookupProcessor, LogsCustomPipelineProcessorPipelineProcessorReferenceTableLookupProcessorArgs
- Lookup
Enrichment stringTable - Source string
- Target string
- Is
Enabled bool - Name string
- Lookup
Enrichment stringTable - Source string
- Target string
- Is
Enabled bool - Name string
- lookup
Enrichment StringTable - source String
- target String
- is
Enabled Boolean - name String
- lookup
Enrichment stringTable - source string
- target string
- is
Enabled boolean - name string
- lookup_
enrichment_ strtable - source str
- target str
- is_
enabled bool - name str
- lookup
Enrichment StringTable - source String
- target String
- is
Enabled Boolean - name String
LogsCustomPipelineProcessorPipelineProcessorServiceRemapper, LogsCustomPipelineProcessorPipelineProcessorServiceRemapperArgs
- sources Sequence[str]
- is_
enabled bool - name str
LogsCustomPipelineProcessorPipelineProcessorStatusRemapper, LogsCustomPipelineProcessorPipelineProcessorStatusRemapperArgs
- sources Sequence[str]
- is_
enabled bool - name str
LogsCustomPipelineProcessorPipelineProcessorStringBuilderProcessor, LogsCustomPipelineProcessorPipelineProcessorStringBuilderProcessorArgs
- Target string
- Template string
- Is
Enabled bool - Is
Replace boolMissing - Name string
- Target string
- Template string
- Is
Enabled bool - Is
Replace boolMissing - Name string
- target String
- template String
- is
Enabled Boolean - is
Replace BooleanMissing - name String
- target string
- template string
- is
Enabled boolean - is
Replace booleanMissing - name string
- target str
- template str
- is_
enabled bool - is_
replace_ boolmissing - name str
- target String
- template String
- is
Enabled Boolean - is
Replace BooleanMissing - name String
LogsCustomPipelineProcessorPipelineProcessorTraceIdRemapper, LogsCustomPipelineProcessorPipelineProcessorTraceIdRemapperArgs
- sources Sequence[str]
- is_
enabled bool - name str
LogsCustomPipelineProcessorPipelineProcessorUrlParser, LogsCustomPipelineProcessorPipelineProcessorUrlParserArgs
- Sources List<string>
- Target string
- Is
Enabled bool - Name string
- Normalize
Ending boolSlashes
- Sources []string
- Target string
- Is
Enabled bool - Name string
- Normalize
Ending boolSlashes
- sources List<String>
- target String
- is
Enabled Boolean - name String
- normalize
Ending BooleanSlashes
- sources string[]
- target string
- is
Enabled boolean - name string
- normalize
Ending booleanSlashes
- sources Sequence[str]
- target str
- is_
enabled bool - name str
- normalize_
ending_ boolslashes
- sources List<String>
- target String
- is
Enabled Boolean - name String
- normalize
Ending BooleanSlashes
LogsCustomPipelineProcessorPipelineProcessorUserAgentParser, LogsCustomPipelineProcessorPipelineProcessorUserAgentParserArgs
- sources Sequence[str]
- target str
- is_
enabled bool - is_
encoded bool - name str
LogsCustomPipelineProcessorReferenceTableLookupProcessor, LogsCustomPipelineProcessorReferenceTableLookupProcessorArgs
- Lookup
Enrichment stringTable - Source string
- Target string
- Is
Enabled bool - Name string
- Lookup
Enrichment stringTable - Source string
- Target string
- Is
Enabled bool - Name string
- lookup
Enrichment StringTable - source String
- target String
- is
Enabled Boolean - name String
- lookup
Enrichment stringTable - source string
- target string
- is
Enabled boolean - name string
- lookup_
enrichment_ strtable - source str
- target str
- is_
enabled bool - name str
- lookup
Enrichment StringTable - source String
- target String
- is
Enabled Boolean - name String
LogsCustomPipelineProcessorServiceRemapper, LogsCustomPipelineProcessorServiceRemapperArgs
- sources Sequence[str]
- is_
enabled bool - name str
LogsCustomPipelineProcessorStatusRemapper, LogsCustomPipelineProcessorStatusRemapperArgs
- sources Sequence[str]
- is_
enabled bool - name str
LogsCustomPipelineProcessorStringBuilderProcessor, LogsCustomPipelineProcessorStringBuilderProcessorArgs
- Target string
- Template string
- Is
Enabled bool - Is
Replace boolMissing - Name string
- Target string
- Template string
- Is
Enabled bool - Is
Replace boolMissing - Name string
- target String
- template String
- is
Enabled Boolean - is
Replace BooleanMissing - name String
- target string
- template string
- is
Enabled boolean - is
Replace booleanMissing - name string
- target str
- template str
- is_
enabled bool - is_
replace_ boolmissing - name str
- target String
- template String
- is
Enabled Boolean - is
Replace BooleanMissing - name String
LogsCustomPipelineProcessorTraceIdRemapper, LogsCustomPipelineProcessorTraceIdRemapperArgs
- sources Sequence[str]
- is_
enabled bool - name str
LogsCustomPipelineProcessorUrlParser, LogsCustomPipelineProcessorUrlParserArgs
- Sources List<string>
- Target string
- Is
Enabled bool - Name string
- Normalize
Ending boolSlashes
- Sources []string
- Target string
- Is
Enabled bool - Name string
- Normalize
Ending boolSlashes
- sources List<String>
- target String
- is
Enabled Boolean - name String
- normalize
Ending BooleanSlashes
- sources string[]
- target string
- is
Enabled boolean - name string
- normalize
Ending booleanSlashes
- sources Sequence[str]
- target str
- is_
enabled bool - name str
- normalize_
ending_ boolslashes
- sources List<String>
- target String
- is
Enabled Boolean - name String
- normalize
Ending BooleanSlashes
LogsCustomPipelineProcessorUserAgentParser, LogsCustomPipelineProcessorUserAgentParserArgs
- sources Sequence[str]
- target str
- is_
enabled bool - is_
encoded bool - name str
Import
To find the pipeline ID, click the “edit” button in the UI to open the pipeline details. The pipeline ID is the last part of the URL.
$ pulumi import datadog:index/logsCustomPipeline:LogsCustomPipeline name> <pipelineID>
Package Details
- Repository
- Datadog pulumi/pulumi-datadog
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
datadog
Terraform Provider.