1. Packages
  2. Dynatrace
  3. API Docs
  4. LogOneagent
Dynatrace v0.27.0 published on Friday, Mar 21, 2025 by Pulumiverse

dynatrace.LogOneagent

Explore with Pulumi AI

Create LogOneagent Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new LogOneagent(name: string, args: LogOneagentArgs, opts?: CustomResourceOptions);
@overload
def LogOneagent(resource_name: str,
                args: LogOneagentArgs,
                opts: Optional[ResourceOptions] = None)

@overload
def LogOneagent(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                log_scanner_linux_nfs_enabled: Optional[bool] = None,
                min_binary_detection_limit_bytes: Optional[int] = None,
                date_search_limit_bytes: Optional[int] = None,
                default_timezone: Optional[str] = None,
                event_log_query_timeout_sec: Optional[int] = None,
                iisdetection_enabled: Optional[bool] = None,
                containers_logs_detection_enabled: Optional[bool] = None,
                max_lgis_per_entity_count: Optional[int] = None,
                container_timezone_heuristic_enabled: Optional[bool] = None,
                monitor_own_logs_enabled: Optional[bool] = None,
                open_log_files_detection_enabled: Optional[bool] = None,
                system_logs_detection_enabled: Optional[bool] = None,
                severity_detection_limit_bytes: Optional[int] = None,
                severity_detection_lines_limit: Optional[int] = None,
                scope: Optional[str] = None)
func NewLogOneagent(ctx *Context, name string, args LogOneagentArgs, opts ...ResourceOption) (*LogOneagent, error)
public LogOneagent(string name, LogOneagentArgs args, CustomResourceOptions? opts = null)
public LogOneagent(String name, LogOneagentArgs args)
public LogOneagent(String name, LogOneagentArgs args, CustomResourceOptions options)
type: dynatrace:LogOneagent
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. LogOneagentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. LogOneagentArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. LogOneagentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. LogOneagentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. LogOneagentArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var logOneagentResource = new Dynatrace.LogOneagent("logOneagentResource", new()
{
    LogScannerLinuxNfsEnabled = false,
    MinBinaryDetectionLimitBytes = 0,
    DateSearchLimitBytes = 0,
    DefaultTimezone = "string",
    EventLogQueryTimeoutSec = 0,
    IisdetectionEnabled = false,
    ContainersLogsDetectionEnabled = false,
    MaxLgisPerEntityCount = 0,
    ContainerTimezoneHeuristicEnabled = false,
    MonitorOwnLogsEnabled = false,
    OpenLogFilesDetectionEnabled = false,
    SystemLogsDetectionEnabled = false,
    SeverityDetectionLimitBytes = 0,
    SeverityDetectionLinesLimit = 0,
    Scope = "string",
});
Copy
example, err := dynatrace.NewLogOneagent(ctx, "logOneagentResource", &dynatrace.LogOneagentArgs{
	LogScannerLinuxNfsEnabled:         pulumi.Bool(false),
	MinBinaryDetectionLimitBytes:      pulumi.Int(0),
	DateSearchLimitBytes:              pulumi.Int(0),
	DefaultTimezone:                   pulumi.String("string"),
	EventLogQueryTimeoutSec:           pulumi.Int(0),
	IisdetectionEnabled:               pulumi.Bool(false),
	ContainersLogsDetectionEnabled:    pulumi.Bool(false),
	MaxLgisPerEntityCount:             pulumi.Int(0),
	ContainerTimezoneHeuristicEnabled: pulumi.Bool(false),
	MonitorOwnLogsEnabled:             pulumi.Bool(false),
	OpenLogFilesDetectionEnabled:      pulumi.Bool(false),
	SystemLogsDetectionEnabled:        pulumi.Bool(false),
	SeverityDetectionLimitBytes:       pulumi.Int(0),
	SeverityDetectionLinesLimit:       pulumi.Int(0),
	Scope:                             pulumi.String("string"),
})
Copy
var logOneagentResource = new LogOneagent("logOneagentResource", LogOneagentArgs.builder()
    .logScannerLinuxNfsEnabled(false)
    .minBinaryDetectionLimitBytes(0)
    .dateSearchLimitBytes(0)
    .defaultTimezone("string")
    .eventLogQueryTimeoutSec(0)
    .iisdetectionEnabled(false)
    .containersLogsDetectionEnabled(false)
    .maxLgisPerEntityCount(0)
    .containerTimezoneHeuristicEnabled(false)
    .monitorOwnLogsEnabled(false)
    .openLogFilesDetectionEnabled(false)
    .systemLogsDetectionEnabled(false)
    .severityDetectionLimitBytes(0)
    .severityDetectionLinesLimit(0)
    .scope("string")
    .build());
Copy
log_oneagent_resource = dynatrace.LogOneagent("logOneagentResource",
    log_scanner_linux_nfs_enabled=False,
    min_binary_detection_limit_bytes=0,
    date_search_limit_bytes=0,
    default_timezone="string",
    event_log_query_timeout_sec=0,
    iisdetection_enabled=False,
    containers_logs_detection_enabled=False,
    max_lgis_per_entity_count=0,
    container_timezone_heuristic_enabled=False,
    monitor_own_logs_enabled=False,
    open_log_files_detection_enabled=False,
    system_logs_detection_enabled=False,
    severity_detection_limit_bytes=0,
    severity_detection_lines_limit=0,
    scope="string")
Copy
const logOneagentResource = new dynatrace.LogOneagent("logOneagentResource", {
    logScannerLinuxNfsEnabled: false,
    minBinaryDetectionLimitBytes: 0,
    dateSearchLimitBytes: 0,
    defaultTimezone: "string",
    eventLogQueryTimeoutSec: 0,
    iisdetectionEnabled: false,
    containersLogsDetectionEnabled: false,
    maxLgisPerEntityCount: 0,
    containerTimezoneHeuristicEnabled: false,
    monitorOwnLogsEnabled: false,
    openLogFilesDetectionEnabled: false,
    systemLogsDetectionEnabled: false,
    severityDetectionLimitBytes: 0,
    severityDetectionLinesLimit: 0,
    scope: "string",
});
Copy
type: dynatrace:LogOneagent
properties:
    containerTimezoneHeuristicEnabled: false
    containersLogsDetectionEnabled: false
    dateSearchLimitBytes: 0
    defaultTimezone: string
    eventLogQueryTimeoutSec: 0
    iisdetectionEnabled: false
    logScannerLinuxNfsEnabled: false
    maxLgisPerEntityCount: 0
    minBinaryDetectionLimitBytes: 0
    monitorOwnLogsEnabled: false
    openLogFilesDetectionEnabled: false
    scope: string
    severityDetectionLimitBytes: 0
    severityDetectionLinesLimit: 0
    systemLogsDetectionEnabled: false
Copy

LogOneagent Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The LogOneagent resource accepts the following input properties:

ContainerTimezoneHeuristicEnabled This property is required. bool
Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
ContainersLogsDetectionEnabled This property is required. bool
Allows detection of log messages written to the containerized application's stdout/stderr streams.
DateSearchLimitBytes This property is required. int
Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
DefaultTimezone This property is required. string
Default timezone for agent if more specific configurations is not defined.
EventLogQueryTimeoutSec This property is required. int
Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
IisdetectionEnabled This property is required. bool
Allows detection of logs and event logs written by IIS server.
LogScannerLinuxNfsEnabled This property is required. bool
Allows detection of logs written to mounted network storage drives. Applies only to Linux hosts. For other OSes it's always enabled.
MaxLgisPerEntityCount This property is required. int
Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
MinBinaryDetectionLimitBytes This property is required. int
Defines the minimum number of bytes in log file required for binary detection.
MonitorOwnLogsEnabled This property is required. bool
Enabling this option may affect your licensing costs. For more details, see documentation.
OpenLogFilesDetectionEnabled This property is required. bool
Automatically detect logs written by important processes. For more details, check our documentation
SeverityDetectionLimitBytes This property is required. int
Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
SeverityDetectionLinesLimit This property is required. int
Defines the number of the first lines of every log entry where severity is searched.
SystemLogsDetectionEnabled This property is required. bool
Linux: syslog, message log Windows: system, application, security event logs
Scope Changes to this property will trigger replacement. string
The scope of this setting (HOST, KUBERNETESCLUSTER, HOSTGROUP). Omit this property if you want to cover the whole environment.
ContainerTimezoneHeuristicEnabled This property is required. bool
Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
ContainersLogsDetectionEnabled This property is required. bool
Allows detection of log messages written to the containerized application's stdout/stderr streams.
DateSearchLimitBytes This property is required. int
Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
DefaultTimezone This property is required. string
Default timezone for agent if more specific configurations is not defined.
EventLogQueryTimeoutSec This property is required. int
Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
IisdetectionEnabled This property is required. bool
Allows detection of logs and event logs written by IIS server.
LogScannerLinuxNfsEnabled This property is required. bool
Allows detection of logs written to mounted network storage drives. Applies only to Linux hosts. For other OSes it's always enabled.
MaxLgisPerEntityCount This property is required. int
Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
MinBinaryDetectionLimitBytes This property is required. int
Defines the minimum number of bytes in log file required for binary detection.
MonitorOwnLogsEnabled This property is required. bool
Enabling this option may affect your licensing costs. For more details, see documentation.
OpenLogFilesDetectionEnabled This property is required. bool
Automatically detect logs written by important processes. For more details, check our documentation
SeverityDetectionLimitBytes This property is required. int
Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
SeverityDetectionLinesLimit This property is required. int
Defines the number of the first lines of every log entry where severity is searched.
SystemLogsDetectionEnabled This property is required. bool
Linux: syslog, message log Windows: system, application, security event logs
Scope Changes to this property will trigger replacement. string
The scope of this setting (HOST, KUBERNETESCLUSTER, HOSTGROUP). Omit this property if you want to cover the whole environment.
containerTimezoneHeuristicEnabled This property is required. Boolean
Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
containersLogsDetectionEnabled This property is required. Boolean
Allows detection of log messages written to the containerized application's stdout/stderr streams.
dateSearchLimitBytes This property is required. Integer
Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
defaultTimezone This property is required. String
Default timezone for agent if more specific configurations is not defined.
eventLogQueryTimeoutSec This property is required. Integer
Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
iisdetectionEnabled This property is required. Boolean
Allows detection of logs and event logs written by IIS server.
logScannerLinuxNfsEnabled This property is required. Boolean
Allows detection of logs written to mounted network storage drives. Applies only to Linux hosts. For other OSes it's always enabled.
maxLgisPerEntityCount This property is required. Integer
Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
minBinaryDetectionLimitBytes This property is required. Integer
Defines the minimum number of bytes in log file required for binary detection.
monitorOwnLogsEnabled This property is required. Boolean
Enabling this option may affect your licensing costs. For more details, see documentation.
openLogFilesDetectionEnabled This property is required. Boolean
Automatically detect logs written by important processes. For more details, check our documentation
severityDetectionLimitBytes This property is required. Integer
Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
severityDetectionLinesLimit This property is required. Integer
Defines the number of the first lines of every log entry where severity is searched.
systemLogsDetectionEnabled This property is required. Boolean
Linux: syslog, message log Windows: system, application, security event logs
scope Changes to this property will trigger replacement. String
The scope of this setting (HOST, KUBERNETESCLUSTER, HOSTGROUP). Omit this property if you want to cover the whole environment.
containerTimezoneHeuristicEnabled This property is required. boolean
Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
containersLogsDetectionEnabled This property is required. boolean
Allows detection of log messages written to the containerized application's stdout/stderr streams.
dateSearchLimitBytes This property is required. number
Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
defaultTimezone This property is required. string
Default timezone for agent if more specific configurations is not defined.
eventLogQueryTimeoutSec This property is required. number
Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
iisdetectionEnabled This property is required. boolean
Allows detection of logs and event logs written by IIS server.
logScannerLinuxNfsEnabled This property is required. boolean
Allows detection of logs written to mounted network storage drives. Applies only to Linux hosts. For other OSes it's always enabled.
maxLgisPerEntityCount This property is required. number
Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
minBinaryDetectionLimitBytes This property is required. number
Defines the minimum number of bytes in log file required for binary detection.
monitorOwnLogsEnabled This property is required. boolean
Enabling this option may affect your licensing costs. For more details, see documentation.
openLogFilesDetectionEnabled This property is required. boolean
Automatically detect logs written by important processes. For more details, check our documentation
severityDetectionLimitBytes This property is required. number
Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
severityDetectionLinesLimit This property is required. number
Defines the number of the first lines of every log entry where severity is searched.
systemLogsDetectionEnabled This property is required. boolean
Linux: syslog, message log Windows: system, application, security event logs
scope Changes to this property will trigger replacement. string
The scope of this setting (HOST, KUBERNETESCLUSTER, HOSTGROUP). Omit this property if you want to cover the whole environment.
container_timezone_heuristic_enabled This property is required. bool
Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
containers_logs_detection_enabled This property is required. bool
Allows detection of log messages written to the containerized application's stdout/stderr streams.
date_search_limit_bytes This property is required. int
Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
default_timezone This property is required. str
Default timezone for agent if more specific configurations is not defined.
event_log_query_timeout_sec This property is required. int
Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
iisdetection_enabled This property is required. bool
Allows detection of logs and event logs written by IIS server.
log_scanner_linux_nfs_enabled This property is required. bool
Allows detection of logs written to mounted network storage drives. Applies only to Linux hosts. For other OSes it's always enabled.
max_lgis_per_entity_count This property is required. int
Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
min_binary_detection_limit_bytes This property is required. int
Defines the minimum number of bytes in log file required for binary detection.
monitor_own_logs_enabled This property is required. bool
Enabling this option may affect your licensing costs. For more details, see documentation.
open_log_files_detection_enabled This property is required. bool
Automatically detect logs written by important processes. For more details, check our documentation
severity_detection_limit_bytes This property is required. int
Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
severity_detection_lines_limit This property is required. int
Defines the number of the first lines of every log entry where severity is searched.
system_logs_detection_enabled This property is required. bool
Linux: syslog, message log Windows: system, application, security event logs
scope Changes to this property will trigger replacement. str
The scope of this setting (HOST, KUBERNETESCLUSTER, HOSTGROUP). Omit this property if you want to cover the whole environment.
containerTimezoneHeuristicEnabled This property is required. Boolean
Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
containersLogsDetectionEnabled This property is required. Boolean
Allows detection of log messages written to the containerized application's stdout/stderr streams.
dateSearchLimitBytes This property is required. Number
Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
defaultTimezone This property is required. String
Default timezone for agent if more specific configurations is not defined.
eventLogQueryTimeoutSec This property is required. Number
Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
iisdetectionEnabled This property is required. Boolean
Allows detection of logs and event logs written by IIS server.
logScannerLinuxNfsEnabled This property is required. Boolean
Allows detection of logs written to mounted network storage drives. Applies only to Linux hosts. For other OSes it's always enabled.
maxLgisPerEntityCount This property is required. Number
Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
minBinaryDetectionLimitBytes This property is required. Number
Defines the minimum number of bytes in log file required for binary detection.
monitorOwnLogsEnabled This property is required. Boolean
Enabling this option may affect your licensing costs. For more details, see documentation.
openLogFilesDetectionEnabled This property is required. Boolean
Automatically detect logs written by important processes. For more details, check our documentation
severityDetectionLimitBytes This property is required. Number
Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
severityDetectionLinesLimit This property is required. Number
Defines the number of the first lines of every log entry where severity is searched.
systemLogsDetectionEnabled This property is required. Boolean
Linux: syslog, message log Windows: system, application, security event logs
scope Changes to this property will trigger replacement. String
The scope of this setting (HOST, KUBERNETESCLUSTER, HOSTGROUP). Omit this property if you want to cover the whole environment.

Outputs

All input properties are implicitly available as output properties. Additionally, the LogOneagent 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 LogOneagent Resource

Get an existing LogOneagent 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?: LogOneagentState, opts?: CustomResourceOptions): LogOneagent
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        container_timezone_heuristic_enabled: Optional[bool] = None,
        containers_logs_detection_enabled: Optional[bool] = None,
        date_search_limit_bytes: Optional[int] = None,
        default_timezone: Optional[str] = None,
        event_log_query_timeout_sec: Optional[int] = None,
        iisdetection_enabled: Optional[bool] = None,
        log_scanner_linux_nfs_enabled: Optional[bool] = None,
        max_lgis_per_entity_count: Optional[int] = None,
        min_binary_detection_limit_bytes: Optional[int] = None,
        monitor_own_logs_enabled: Optional[bool] = None,
        open_log_files_detection_enabled: Optional[bool] = None,
        scope: Optional[str] = None,
        severity_detection_limit_bytes: Optional[int] = None,
        severity_detection_lines_limit: Optional[int] = None,
        system_logs_detection_enabled: Optional[bool] = None) -> LogOneagent
func GetLogOneagent(ctx *Context, name string, id IDInput, state *LogOneagentState, opts ...ResourceOption) (*LogOneagent, error)
public static LogOneagent Get(string name, Input<string> id, LogOneagentState? state, CustomResourceOptions? opts = null)
public static LogOneagent get(String name, Output<String> id, LogOneagentState state, CustomResourceOptions options)
resources:  _:    type: dynatrace:LogOneagent    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
ContainerTimezoneHeuristicEnabled bool
Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
ContainersLogsDetectionEnabled bool
Allows detection of log messages written to the containerized application's stdout/stderr streams.
DateSearchLimitBytes int
Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
DefaultTimezone string
Default timezone for agent if more specific configurations is not defined.
EventLogQueryTimeoutSec int
Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
IisdetectionEnabled bool
Allows detection of logs and event logs written by IIS server.
LogScannerLinuxNfsEnabled bool
Allows detection of logs written to mounted network storage drives. Applies only to Linux hosts. For other OSes it's always enabled.
MaxLgisPerEntityCount int
Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
MinBinaryDetectionLimitBytes int
Defines the minimum number of bytes in log file required for binary detection.
MonitorOwnLogsEnabled bool
Enabling this option may affect your licensing costs. For more details, see documentation.
OpenLogFilesDetectionEnabled bool
Automatically detect logs written by important processes. For more details, check our documentation
Scope Changes to this property will trigger replacement. string
The scope of this setting (HOST, KUBERNETESCLUSTER, HOSTGROUP). Omit this property if you want to cover the whole environment.
SeverityDetectionLimitBytes int
Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
SeverityDetectionLinesLimit int
Defines the number of the first lines of every log entry where severity is searched.
SystemLogsDetectionEnabled bool
Linux: syslog, message log Windows: system, application, security event logs
ContainerTimezoneHeuristicEnabled bool
Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
ContainersLogsDetectionEnabled bool
Allows detection of log messages written to the containerized application's stdout/stderr streams.
DateSearchLimitBytes int
Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
DefaultTimezone string
Default timezone for agent if more specific configurations is not defined.
EventLogQueryTimeoutSec int
Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
IisdetectionEnabled bool
Allows detection of logs and event logs written by IIS server.
LogScannerLinuxNfsEnabled bool
Allows detection of logs written to mounted network storage drives. Applies only to Linux hosts. For other OSes it's always enabled.
MaxLgisPerEntityCount int
Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
MinBinaryDetectionLimitBytes int
Defines the minimum number of bytes in log file required for binary detection.
MonitorOwnLogsEnabled bool
Enabling this option may affect your licensing costs. For more details, see documentation.
OpenLogFilesDetectionEnabled bool
Automatically detect logs written by important processes. For more details, check our documentation
Scope Changes to this property will trigger replacement. string
The scope of this setting (HOST, KUBERNETESCLUSTER, HOSTGROUP). Omit this property if you want to cover the whole environment.
SeverityDetectionLimitBytes int
Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
SeverityDetectionLinesLimit int
Defines the number of the first lines of every log entry where severity is searched.
SystemLogsDetectionEnabled bool
Linux: syslog, message log Windows: system, application, security event logs
containerTimezoneHeuristicEnabled Boolean
Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
containersLogsDetectionEnabled Boolean
Allows detection of log messages written to the containerized application's stdout/stderr streams.
dateSearchLimitBytes Integer
Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
defaultTimezone String
Default timezone for agent if more specific configurations is not defined.
eventLogQueryTimeoutSec Integer
Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
iisdetectionEnabled Boolean
Allows detection of logs and event logs written by IIS server.
logScannerLinuxNfsEnabled Boolean
Allows detection of logs written to mounted network storage drives. Applies only to Linux hosts. For other OSes it's always enabled.
maxLgisPerEntityCount Integer
Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
minBinaryDetectionLimitBytes Integer
Defines the minimum number of bytes in log file required for binary detection.
monitorOwnLogsEnabled Boolean
Enabling this option may affect your licensing costs. For more details, see documentation.
openLogFilesDetectionEnabled Boolean
Automatically detect logs written by important processes. For more details, check our documentation
scope Changes to this property will trigger replacement. String
The scope of this setting (HOST, KUBERNETESCLUSTER, HOSTGROUP). Omit this property if you want to cover the whole environment.
severityDetectionLimitBytes Integer
Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
severityDetectionLinesLimit Integer
Defines the number of the first lines of every log entry where severity is searched.
systemLogsDetectionEnabled Boolean
Linux: syslog, message log Windows: system, application, security event logs
containerTimezoneHeuristicEnabled boolean
Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
containersLogsDetectionEnabled boolean
Allows detection of log messages written to the containerized application's stdout/stderr streams.
dateSearchLimitBytes number
Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
defaultTimezone string
Default timezone for agent if more specific configurations is not defined.
eventLogQueryTimeoutSec number
Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
iisdetectionEnabled boolean
Allows detection of logs and event logs written by IIS server.
logScannerLinuxNfsEnabled boolean
Allows detection of logs written to mounted network storage drives. Applies only to Linux hosts. For other OSes it's always enabled.
maxLgisPerEntityCount number
Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
minBinaryDetectionLimitBytes number
Defines the minimum number of bytes in log file required for binary detection.
monitorOwnLogsEnabled boolean
Enabling this option may affect your licensing costs. For more details, see documentation.
openLogFilesDetectionEnabled boolean
Automatically detect logs written by important processes. For more details, check our documentation
scope Changes to this property will trigger replacement. string
The scope of this setting (HOST, KUBERNETESCLUSTER, HOSTGROUP). Omit this property if you want to cover the whole environment.
severityDetectionLimitBytes number
Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
severityDetectionLinesLimit number
Defines the number of the first lines of every log entry where severity is searched.
systemLogsDetectionEnabled boolean
Linux: syslog, message log Windows: system, application, security event logs
container_timezone_heuristic_enabled bool
Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
containers_logs_detection_enabled bool
Allows detection of log messages written to the containerized application's stdout/stderr streams.
date_search_limit_bytes int
Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
default_timezone str
Default timezone for agent if more specific configurations is not defined.
event_log_query_timeout_sec int
Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
iisdetection_enabled bool
Allows detection of logs and event logs written by IIS server.
log_scanner_linux_nfs_enabled bool
Allows detection of logs written to mounted network storage drives. Applies only to Linux hosts. For other OSes it's always enabled.
max_lgis_per_entity_count int
Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
min_binary_detection_limit_bytes int
Defines the minimum number of bytes in log file required for binary detection.
monitor_own_logs_enabled bool
Enabling this option may affect your licensing costs. For more details, see documentation.
open_log_files_detection_enabled bool
Automatically detect logs written by important processes. For more details, check our documentation
scope Changes to this property will trigger replacement. str
The scope of this setting (HOST, KUBERNETESCLUSTER, HOSTGROUP). Omit this property if you want to cover the whole environment.
severity_detection_limit_bytes int
Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
severity_detection_lines_limit int
Defines the number of the first lines of every log entry where severity is searched.
system_logs_detection_enabled bool
Linux: syslog, message log Windows: system, application, security event logs
containerTimezoneHeuristicEnabled Boolean
Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
containersLogsDetectionEnabled Boolean
Allows detection of log messages written to the containerized application's stdout/stderr streams.
dateSearchLimitBytes Number
Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
defaultTimezone String
Default timezone for agent if more specific configurations is not defined.
eventLogQueryTimeoutSec Number
Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
iisdetectionEnabled Boolean
Allows detection of logs and event logs written by IIS server.
logScannerLinuxNfsEnabled Boolean
Allows detection of logs written to mounted network storage drives. Applies only to Linux hosts. For other OSes it's always enabled.
maxLgisPerEntityCount Number
Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
minBinaryDetectionLimitBytes Number
Defines the minimum number of bytes in log file required for binary detection.
monitorOwnLogsEnabled Boolean
Enabling this option may affect your licensing costs. For more details, see documentation.
openLogFilesDetectionEnabled Boolean
Automatically detect logs written by important processes. For more details, check our documentation
scope Changes to this property will trigger replacement. String
The scope of this setting (HOST, KUBERNETESCLUSTER, HOSTGROUP). Omit this property if you want to cover the whole environment.
severityDetectionLimitBytes Number
Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
severityDetectionLinesLimit Number
Defines the number of the first lines of every log entry where severity is searched.
systemLogsDetectionEnabled Boolean
Linux: syslog, message log Windows: system, application, security event logs

Package Details

Repository
dynatrace pulumiverse/pulumi-dynatrace
License
Apache-2.0
Notes
This Pulumi package is based on the dynatrace Terraform Provider.