New-LMLogAlertGroup
Syntax
Section titled “Syntax”Default (Default)
Section titled “Default (Default)”New-LMLogAlertGroup -Name <string> -Query <string> [-Description <string>] [-Partitions <string[]>] [-WhatIf] [-Confirm] [<CommonParameters>]InputObject
Section titled “InputObject”New-LMLogAlertGroup -InputObject <psobject> [-WhatIf] [-Confirm] [<CommonParameters>]Description
Section titled “Description”The New-LMLogAlertGroup function creates a new log alert group (log pipeline) in LogicMonitor. You can specify individual parameters or provide a complete configuration object using InputObject.
Examples
Section titled “Examples”EXAMPLE 1
Section titled “EXAMPLE 1”New-LMLogAlertGroup -Name "Production Logs" -Query "environment:production" -Partitions @("default")EXAMPLE 2
Section titled “EXAMPLE 2”$config = @{ name = "Production Logs" query = "environment:production"}New-LMLogAlertGroup -InputObject $configParameters
Section titled “Parameters”-Confirm
Section titled “-Confirm”Prompts you for confirmation before running the cmdlet.
Type: System.Management.Automation.SwitchParameterDefaultValue: ''SupportsWildcards: falseAliases:- cfParameterSets:- Name: (All) Position: Named IsRequired: false ValueFromPipeline: false ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: falseDontShow: falseAcceptedValues: []HelpMessage: ''-Description
Section titled “-Description”The description for the log alert group.
Type: System.StringDefaultValue: ''SupportsWildcards: falseAliases: []ParameterSets:- Name: Default Position: Named IsRequired: false ValueFromPipeline: false ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: falseDontShow: falseAcceptedValues: []HelpMessage: ''-InputObject
Section titled “-InputObject”A PSCustomObject containing the complete log alert group configuration.
Type: System.Management.Automation.PSObjectDefaultValue: ''SupportsWildcards: falseAliases: []ParameterSets:- Name: InputObject Position: Named IsRequired: true ValueFromPipeline: false ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: falseDontShow: falseAcceptedValues: []HelpMessage: ''The name of the log alert group. Mandatory when using explicit parameters.
Type: System.StringDefaultValue: ''SupportsWildcards: falseAliases: []ParameterSets:- Name: Default Position: Named IsRequired: true ValueFromPipeline: false ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: falseDontShow: falseAcceptedValues: []HelpMessage: ''-Partitions
Section titled “-Partitions”An array of partition names associated with the log alert group. Mandatory when using explicit parameters.
Type: System.String[]DefaultValue: ''SupportsWildcards: falseAliases:- PartitionParameterSets:- Name: Default Position: Named IsRequired: false ValueFromPipeline: false ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: falseDontShow: falseAcceptedValues: []HelpMessage: ''-Query
Section titled “-Query”The query associated with the log alert group. Mandatory when using explicit parameters.
Type: System.StringDefaultValue: ''SupportsWildcards: falseAliases: []ParameterSets:- Name: Default Position: Named IsRequired: true ValueFromPipeline: false ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: falseDontShow: falseAcceptedValues: []HelpMessage: ''-WhatIf
Section titled “-WhatIf”Runs the command in a mode that only reports what would happen without performing the actions.
Type: System.Management.Automation.SwitchParameterDefaultValue: ''SupportsWildcards: falseAliases:- wiParameterSets:- Name: (All) Position: Named IsRequired: false ValueFromPipeline: false ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: falseDontShow: falseAcceptedValues: []HelpMessage: ''CommonParameters
Section titled “CommonParameters”This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.