Dynatrace v0.16.0 published on Tuesday, Sep 10, 2024 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 string
- The unique name of the resource.
- args LogOneagentArgs
- 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 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 string
- The unique name of the resource.
- args LogOneagentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LogOneagentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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
The LogOneagent resource accepts the following input properties:
- Container
Timezone boolHeuristic Enabled - Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
- Containers
Logs boolDetection Enabled - Allows detection of log messages written to the containerized application's stdout/stderr streams.
- Date
Search intLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
- Default
Timezone string - Default timezone for agent if more specific configurations is not defined.
- Event
Log intQuery Timeout Sec - 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 boolLinux Nfs Enabled - Allows detection of logs written to mounted network storage drives.
- Max
Lgis intPer Entity Count - Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
- Min
Binary intDetection Limit Bytes - Defines the minimum number of bytes in log file required for binary detection.
- Monitor
Own boolLogs Enabled - Enabling this option may affect your licensing costs. For more details, see documentation.
- Open
Log boolFiles Detection Enabled - Automatically detect logs written by important processes. For more details, check our documentation
- Severity
Detection intLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
- Severity
Detection intLines Limit - Defines the number of the first lines of every log entry where severity is searched.
- System
Logs boolDetection Enabled - Linux: syslog, message log Windows: system, application, security event logs
- Scope string
- The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
- Container
Timezone boolHeuristic Enabled - Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
- Containers
Logs boolDetection Enabled - Allows detection of log messages written to the containerized application's stdout/stderr streams.
- Date
Search intLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
- Default
Timezone string - Default timezone for agent if more specific configurations is not defined.
- Event
Log intQuery Timeout Sec - 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 boolLinux Nfs Enabled - Allows detection of logs written to mounted network storage drives.
- Max
Lgis intPer Entity Count - Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
- Min
Binary intDetection Limit Bytes - Defines the minimum number of bytes in log file required for binary detection.
- Monitor
Own boolLogs Enabled - Enabling this option may affect your licensing costs. For more details, see documentation.
- Open
Log boolFiles Detection Enabled - Automatically detect logs written by important processes. For more details, check our documentation
- Severity
Detection intLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
- Severity
Detection intLines Limit - Defines the number of the first lines of every log entry where severity is searched.
- System
Logs boolDetection Enabled - Linux: syslog, message log Windows: system, application, security event logs
- Scope string
- The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
- container
Timezone BooleanHeuristic Enabled - Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
- containers
Logs BooleanDetection Enabled - Allows detection of log messages written to the containerized application's stdout/stderr streams.
- date
Search IntegerLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
- default
Timezone String - Default timezone for agent if more specific configurations is not defined.
- event
Log IntegerQuery Timeout Sec - Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
- iisdetection
Enabled Boolean - Allows detection of logs and event logs written by IIS server.
- log
Scanner BooleanLinux Nfs Enabled - Allows detection of logs written to mounted network storage drives.
- max
Lgis IntegerPer Entity Count - Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
- min
Binary IntegerDetection Limit Bytes - Defines the minimum number of bytes in log file required for binary detection.
- monitor
Own BooleanLogs Enabled - Enabling this option may affect your licensing costs. For more details, see documentation.
- open
Log BooleanFiles Detection Enabled - Automatically detect logs written by important processes. For more details, check our documentation
- severity
Detection IntegerLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
- severity
Detection IntegerLines Limit - Defines the number of the first lines of every log entry where severity is searched.
- system
Logs BooleanDetection Enabled - Linux: syslog, message log Windows: system, application, security event logs
- scope String
- The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
- container
Timezone booleanHeuristic Enabled - Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
- containers
Logs booleanDetection Enabled - Allows detection of log messages written to the containerized application's stdout/stderr streams.
- date
Search numberLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
- default
Timezone string - Default timezone for agent if more specific configurations is not defined.
- event
Log numberQuery Timeout Sec - Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
- iisdetection
Enabled boolean - Allows detection of logs and event logs written by IIS server.
- log
Scanner booleanLinux Nfs Enabled - Allows detection of logs written to mounted network storage drives.
- max
Lgis numberPer Entity Count - Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
- min
Binary numberDetection Limit Bytes - Defines the minimum number of bytes in log file required for binary detection.
- monitor
Own booleanLogs Enabled - Enabling this option may affect your licensing costs. For more details, see documentation.
- open
Log booleanFiles Detection Enabled - Automatically detect logs written by important processes. For more details, check our documentation
- severity
Detection numberLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
- severity
Detection numberLines Limit - Defines the number of the first lines of every log entry where severity is searched.
- system
Logs booleanDetection Enabled - Linux: syslog, message log Windows: system, application, security event logs
- scope string
- The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
- container_
timezone_ boolheuristic_ enabled - Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
- containers_
logs_ booldetection_ enabled - Allows detection of log messages written to the containerized application's stdout/stderr streams.
- date_
search_ intlimit_ bytes - 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_ intquery_ timeout_ sec - 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_ boollinux_ nfs_ enabled - Allows detection of logs written to mounted network storage drives.
- max_
lgis_ intper_ entity_ count - Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
- min_
binary_ intdetection_ limit_ bytes - Defines the minimum number of bytes in log file required for binary detection.
- monitor_
own_ boollogs_ enabled - Enabling this option may affect your licensing costs. For more details, see documentation.
- open_
log_ boolfiles_ detection_ enabled - Automatically detect logs written by important processes. For more details, check our documentation
- severity_
detection_ intlimit_ bytes - Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
- severity_
detection_ intlines_ limit - Defines the number of the first lines of every log entry where severity is searched.
- system_
logs_ booldetection_ enabled - Linux: syslog, message log Windows: system, application, security event logs
- scope str
- The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
- container
Timezone BooleanHeuristic Enabled - Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
- containers
Logs BooleanDetection Enabled - Allows detection of log messages written to the containerized application's stdout/stderr streams.
- date
Search NumberLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
- default
Timezone String - Default timezone for agent if more specific configurations is not defined.
- event
Log NumberQuery Timeout Sec - Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
- iisdetection
Enabled Boolean - Allows detection of logs and event logs written by IIS server.
- log
Scanner BooleanLinux Nfs Enabled - Allows detection of logs written to mounted network storage drives.
- max
Lgis NumberPer Entity Count - Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
- min
Binary NumberDetection Limit Bytes - Defines the minimum number of bytes in log file required for binary detection.
- monitor
Own BooleanLogs Enabled - Enabling this option may affect your licensing costs. For more details, see documentation.
- open
Log BooleanFiles Detection Enabled - Automatically detect logs written by important processes. For more details, check our documentation
- severity
Detection NumberLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
- severity
Detection NumberLines Limit - Defines the number of the first lines of every log entry where severity is searched.
- system
Logs BooleanDetection Enabled - Linux: syslog, message log Windows: system, application, security event logs
- scope String
- The scope of this setting (HOST, HOST_GROUP). 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)
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.
- Container
Timezone boolHeuristic Enabled - Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
- Containers
Logs boolDetection Enabled - Allows detection of log messages written to the containerized application's stdout/stderr streams.
- Date
Search intLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
- Default
Timezone string - Default timezone for agent if more specific configurations is not defined.
- Event
Log intQuery Timeout Sec - 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 boolLinux Nfs Enabled - Allows detection of logs written to mounted network storage drives.
- Max
Lgis intPer Entity Count - Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
- Min
Binary intDetection Limit Bytes - Defines the minimum number of bytes in log file required for binary detection.
- Monitor
Own boolLogs Enabled - Enabling this option may affect your licensing costs. For more details, see documentation.
- Open
Log boolFiles Detection Enabled - Automatically detect logs written by important processes. For more details, check our documentation
- Scope string
- The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
- Severity
Detection intLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
- Severity
Detection intLines Limit - Defines the number of the first lines of every log entry where severity is searched.
- System
Logs boolDetection Enabled - Linux: syslog, message log Windows: system, application, security event logs
- Container
Timezone boolHeuristic Enabled - Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
- Containers
Logs boolDetection Enabled - Allows detection of log messages written to the containerized application's stdout/stderr streams.
- Date
Search intLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
- Default
Timezone string - Default timezone for agent if more specific configurations is not defined.
- Event
Log intQuery Timeout Sec - 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 boolLinux Nfs Enabled - Allows detection of logs written to mounted network storage drives.
- Max
Lgis intPer Entity Count - Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
- Min
Binary intDetection Limit Bytes - Defines the minimum number of bytes in log file required for binary detection.
- Monitor
Own boolLogs Enabled - Enabling this option may affect your licensing costs. For more details, see documentation.
- Open
Log boolFiles Detection Enabled - Automatically detect logs written by important processes. For more details, check our documentation
- Scope string
- The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
- Severity
Detection intLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
- Severity
Detection intLines Limit - Defines the number of the first lines of every log entry where severity is searched.
- System
Logs boolDetection Enabled - Linux: syslog, message log Windows: system, application, security event logs
- container
Timezone BooleanHeuristic Enabled - Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
- containers
Logs BooleanDetection Enabled - Allows detection of log messages written to the containerized application's stdout/stderr streams.
- date
Search IntegerLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
- default
Timezone String - Default timezone for agent if more specific configurations is not defined.
- event
Log IntegerQuery Timeout Sec - Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
- iisdetection
Enabled Boolean - Allows detection of logs and event logs written by IIS server.
- log
Scanner BooleanLinux Nfs Enabled - Allows detection of logs written to mounted network storage drives.
- max
Lgis IntegerPer Entity Count - Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
- min
Binary IntegerDetection Limit Bytes - Defines the minimum number of bytes in log file required for binary detection.
- monitor
Own BooleanLogs Enabled - Enabling this option may affect your licensing costs. For more details, see documentation.
- open
Log BooleanFiles Detection Enabled - Automatically detect logs written by important processes. For more details, check our documentation
- scope String
- The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
- severity
Detection IntegerLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
- severity
Detection IntegerLines Limit - Defines the number of the first lines of every log entry where severity is searched.
- system
Logs BooleanDetection Enabled - Linux: syslog, message log Windows: system, application, security event logs
- container
Timezone booleanHeuristic Enabled - Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
- containers
Logs booleanDetection Enabled - Allows detection of log messages written to the containerized application's stdout/stderr streams.
- date
Search numberLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
- default
Timezone string - Default timezone for agent if more specific configurations is not defined.
- event
Log numberQuery Timeout Sec - Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
- iisdetection
Enabled boolean - Allows detection of logs and event logs written by IIS server.
- log
Scanner booleanLinux Nfs Enabled - Allows detection of logs written to mounted network storage drives.
- max
Lgis numberPer Entity Count - Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
- min
Binary numberDetection Limit Bytes - Defines the minimum number of bytes in log file required for binary detection.
- monitor
Own booleanLogs Enabled - Enabling this option may affect your licensing costs. For more details, see documentation.
- open
Log booleanFiles Detection Enabled - Automatically detect logs written by important processes. For more details, check our documentation
- scope string
- The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
- severity
Detection numberLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
- severity
Detection numberLines Limit - Defines the number of the first lines of every log entry where severity is searched.
- system
Logs booleanDetection Enabled - Linux: syslog, message log Windows: system, application, security event logs
- container_
timezone_ boolheuristic_ enabled - Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
- containers_
logs_ booldetection_ enabled - Allows detection of log messages written to the containerized application's stdout/stderr streams.
- date_
search_ intlimit_ bytes - 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_ intquery_ timeout_ sec - 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_ boollinux_ nfs_ enabled - Allows detection of logs written to mounted network storage drives.
- max_
lgis_ intper_ entity_ count - Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
- min_
binary_ intdetection_ limit_ bytes - Defines the minimum number of bytes in log file required for binary detection.
- monitor_
own_ boollogs_ enabled - Enabling this option may affect your licensing costs. For more details, see documentation.
- open_
log_ boolfiles_ detection_ enabled - Automatically detect logs written by important processes. For more details, check our documentation
- scope str
- The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
- severity_
detection_ intlimit_ bytes - Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
- severity_
detection_ intlines_ limit - Defines the number of the first lines of every log entry where severity is searched.
- system_
logs_ booldetection_ enabled - Linux: syslog, message log Windows: system, application, security event logs
- container
Timezone BooleanHeuristic Enabled - Enables automatic detection of timezone in container's logs if it is not explicitly defined in content or configured.
- containers
Logs BooleanDetection Enabled - Allows detection of log messages written to the containerized application's stdout/stderr streams.
- date
Search NumberLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
- default
Timezone String - Default timezone for agent if more specific configurations is not defined.
- event
Log NumberQuery Timeout Sec - Defines the maximum timeout value, in seconds, for the query extracting Windows Event Logs
- iisdetection
Enabled Boolean - Allows detection of logs and event logs written by IIS server.
- log
Scanner BooleanLinux Nfs Enabled - Allows detection of logs written to mounted network storage drives.
- max
Lgis NumberPer Entity Count - Defines the maximum number of log group instances per entity after which, the new automatic ones wouldn't be added.
- min
Binary NumberDetection Limit Bytes - Defines the minimum number of bytes in log file required for binary detection.
- monitor
Own BooleanLogs Enabled - Enabling this option may affect your licensing costs. For more details, see documentation.
- open
Log BooleanFiles Detection Enabled - Automatically detect logs written by important processes. For more details, check our documentation
- scope String
- The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
- severity
Detection NumberLimit Bytes - Defines the number of characters in every log line (starting from the first character in the line) where severity is searched.
- severity
Detection NumberLines Limit - Defines the number of the first lines of every log entry where severity is searched.
- system
Logs BooleanDetection Enabled - 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.