functions/Start-DbaXESession.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
function Start-DbaXESession { <# .SYNOPSIS Starts Extended Events sessions. .DESCRIPTION This script starts Extended Events sessions on a SQL Server instance. .PARAMETER SqlInstance Target SQL Server. You must have sysadmin access and server version must be SQL Server version 2008 or higher. .PARAMETER SqlCredential Login to the target instance using alternative credentials. Windows and SQL Authentication supported. Accepts credential objects (Get-Credential) .PARAMETER Session Only start specific Extended Events sessions. .PARAMETER AllSessions Start all Extended Events sessions on an instance, ignoring the packaged sessions: AlwaysOn_health, system_health, telemetry_xevents. .PARAMETER InputObject Internal parameter to support piping from Get-DbaXESession .PARAMETER StopAt Specifies a datetime at which the session will be stopped. This is done via a self-deleting schedule. .PARAMETER EnableException By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch. .NOTES Tags: ExtendedEvent, XE, XEvent Author: Doug Meyers Website: https://dbatools.io Copyright: (C) Chrissy LeMaire, clemaire@gmail.com License: MIT https://opensource.org/licenses/MIT .LINK https://dbatools.io/Start-DbaXESession .EXAMPLE Start-DbaXESession -SqlInstance sqlserver2012 -AllSessions Starts all Extended Event Session on the sqlserver2014 instance. .EXAMPLE Start-DbaXESession -SqlInstance sqlserver2012 -Session xesession1,xesession2 Starts the xesession1 and xesession2 Extended Event sessions. .EXAMPLE Start-DbaXESession -SqlInstance sqlserver2012 -Session xesession1,xesession2 -StopAt (Get-Date).AddMinutes(30) Starts the xesession1 and xesession2 Extended Event sessions and stops them in 30 minutes. .EXAMPLE Get-DbaXESession -SqlInstance sqlserver2012 -Session xesession1 | Start-DbaXESession Starts the sessions returned from the Get-DbaXESession function. #> [CmdletBinding(DefaultParameterSetName = 'Session')] param ( [parameter(Position = 1, Mandatory, ParameterSetName = 'Session')] [parameter(Position = 1, Mandatory, ParameterSetName = 'All')] [Alias("ServerInstance", "SqlServer")] [DbaInstanceParameter[]]$SqlInstance, [parameter(ParameterSetName = 'Session')] [parameter(ParameterSetName = 'All')] [PSCredential]$SqlCredential, [parameter(Mandatory, ParameterSetName = 'Session')] [Alias("Sessions")] [object[]]$Session, [datetime]$StopAt, [parameter(Mandatory, ParameterSetName = 'All')] [switch]$AllSessions, [parameter(Mandatory, ValueFromPipeline, ParameterSetName = 'Object')] [Microsoft.SqlServer.Management.XEvent.Session[]]$InputObject, [switch]$EnableException ) begin { # Start each XESession function Start-XESessions { [CmdletBinding()] param ([Microsoft.SqlServer.Management.XEvent.Session[]]$xeSessions) foreach ($xe in $xeSessions) { $instance = $xe.Parent.Name $session = $xe.Name if (-Not $xe.isRunning) { Write-Message -Level Verbose -Message "Starting XEvent Session $session on $instance." try { $xe.Start() } catch { Stop-Function -Message "Could not start XEvent Session on $instance." -Target $session -ErrorRecord $_ -Continue } } else { Write-Message -Level Warning -Message "$session on $instance is already running." } Get-DbaXESession -SqlInstance $xe.Parent -Session $session } } function New-StopJob { [CmdletBinding()] param ( [Microsoft.SqlServer.Management.XEvent.Session[]]$xeSessions, [datetime]$StopAt ) foreach ($xe in $xeSessions) { $server = $xe.Parent $session = $xe.Name $name = "XE Session Stop - $session" # Setup the schedule time $time = ($StopAt).ToString("HHmmss") # Create the schedule $schedule = New-DbaAgentSchedule -SqlInstance $server -Schedule $name -FrequencyType Once -StartTime ($StopAt).ToString("HHmmss") -Force # Create the job and attach the schedule $job = New-DbaAgentJob -SqlInstance $server -Job $name -Schedule $schedule -DeleteLevel Always -Force # Create the job step $sql = "ALTER EVENT SESSION [$session] ON SERVER STATE = stop;" $jobstep = New-DbaAgentJobStep -SqlInstance $server -Job $job -StepName 'T-SQL Stop' -Subsystem TransactSql -Command $sql -Force } } } process { if ($InputObject) { Start-XESessions $InputObject } else { foreach ($instance in $SqlInstance) { $xeSessions = Get-DbaXESession -SqlInstance $instance -SqlCredential $SqlCredential # Filter xeSessions based on parameters if ($Session) { $xeSessions = $xeSessions | Where-Object { $_.Name -in $Session } } elseif ($AllSessions) { $systemSessions = @('AlwaysOn_health', 'system_health', 'telemetry_xevents') $xeSessions = $xeSessions | Where-Object { $_.Name -notin $systemSessions } } Start-XESessions $xeSessions if ($StopAt) { New-StopJob -xeSessions $xeSessions -StopAt $stopat } } } } } |