Multiple Device Select when setting SDT
As an MSP we also manage a number of customerpatching cycles, this entails a number of servers needing to be placed into SDT individually for a customer across a number of there groups, with some of our customers this means 60+ servers at a time. (devices can be spread across several groups & not all devices within each said group willbepatched at the same time, so setting at the grouplevel is out). Can we please have the function of being able to select a group and then a number of individualdevices from that group (+sub-group) at the same time - ideally being able to see a list of devices contained with group (+ sub-group) and have checkboxesalongside them so that multiple selections can be made at once. This will make life a lot easier and faster for such scenarios.37Views4likes1CommentSDT scheduling using REST API and PowerShell
Trying to schedule a new SDT for January 1, 2018 1:00 AM to 1:30 AM for a device group, but getting a Status:1007 and a blank response. <# account info #> $accessId = 'SHj6Hub8e63FUwkc5' $accessKey = 'xz37=(][{qb6ANLp}5$-S9Hvn6HV292P' $company = 'api' # stdTYpe (integer) # 1 - one time, 2 - Weekly SDT, 3 - Monthly SDT, 4 - Daily SDT # we have to use "one time" style values because LM has no concept of day of month $stdTYpe = 1 # type (string) # ServiceGroupSDT, DeviceGroupSDT, CollectorSDT $type = "DeviceGroupSDT" # deviceGroupId (string) # $deviceGroupId = 18 # dataSourceId (integer) # 0 = ALL $dataSourceId = 0 <# request details #> $httpVerb = 'POST' $resourcePath = '/sdt/sdts' #serviceGroupSDTs # data $data = '{"sdtType":'+$stdTYpe+',"type":"'+ $type +'","deviceGroupId":'+ $deviceGroupId +',"dataSourceId":'+ $dataSourceId +',"startDateTime":1514786400,"endDateTime":1514788200}' <# Construct URL #> $url = 'https://' + $company + '.logicmonitor.com/santaba/rest' + $resourcePath <# Get current time in milliseconds #> $epoch = [Math]::Round((New-TimeSpan -start (Get-Date -Date "1/1/1970") -end (Get-Date).ToUniversalTime()).TotalMilliseconds) <# Concatenate Request Details #> $requestVars = $httpVerb + $epoch + $data + $resourcePath <# Construct Signature #> $hmac = New-Object System.Security.Cryptography.HMACSHA256 $hmac.Key = [Text.Encoding]::UTF8.GetBytes($accessKey) $signatureBytes = $hmac.ComputeHash([Text.Encoding]::UTF8.GetBytes($requestVars)) $signatureHex = [System.BitConverter]::ToString($signatureBytes) -replace '-' $signature = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($signatureHex.ToLower())) <# Construct Headers #> $auth = 'LMv1 ' + $accessId + ':' + $signature + ':' + $epoch $headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]" $headers.Add("Authorization",$auth) $headers.Add("Content-Type",'application/json') <# Make Request #> $response = Invoke-RestMethod -Uri $url -Method $httpVerb -Body $data -Header $headers <# Print status and body of response #> $status = $response.status $body = $response.data| ConvertTo-Json -Depth 5 Write-Host "Status:$status" Write-Host "Response:$body"27Views0likes5CommentsTime zone set for group of devices
We have requirement of setting SDT to some servers which are in different time zones. The current time zonesetting isportal-wide, so it is not based on group of devices as we require. This would be a very welcome feature for any companies that have sites inmultiple timezones, suggest LM should look into this and implement this feature on priority.11Views2likes5Comments[Feature Request] SDT on multiple devices
Team, Is is possible to make a feature request to allow us to add an SDT on multiple devices but not at the group level? Context: one of our customers have hundreds of servers in one group, and might be turning off a few dozens that need to go in SDT to prevent alerts flooding out, though because they are not turning them all off in the group this involves a lot of manual input. The option to select multiple devices with a tick box, with a select all option, which then allows to apply an SDT to selected would be very helpful. Many thanks, Auriane10Views0likes0CommentsCustom Alert-Groups for SDT
When we reboot a Server or a Application Set our NOC does not know all the Devices, Instances and/or services impacted so we get flooded with alerts for a known event. Example: I need to reboot device WebServer-xyz - TheServer, the Switch ports, Storage Sessions and HTTP/S Service are all monitoredin LM Like to be able to SDT just these items with one SDT, and not entire switches or devices. So be able to create an "Alert-Group"ie "WebServer-xyz" where you can then add Instances from multiple devices, entire device, Service, Instance Groups, Device Group aka any defined in LM. Then just Add one SDT to the Alert-Group aka one-stop-shopping.10Views0likes1CommentSDT Repeat Schedule (Nth day feature)
The SDT feature is critical for a monitoring tool to be able to schedule blackout periods ahead of time. A lot of clients schedule their maintenance windows on a certain weekend of the month and your tool only allows you to set up repeat schedules daily at a certain time, weekly on a certain day, or monthly on a certain day of the month. This covers a lot of bases, but it's not how a good number of clients schedule regular downtime. For clients who schedule their downtime on the "4th Saturday of every month" you have to manually enter these dates as there is not way to automate it on a repeat basis. I suggest adding a "N th weekday of the month" option so one can schedule based on the "1 st Sunday" or "Last Saturday" or "4 th Wednesday". This is common enough to be very useful. Thanks!10Views1like0CommentsSDT Prompt for the Collector
I would like to see a prompt for SDT that when I specify "[location].All" LM asks if I would like to place the Collector in SDT. I would never think to look in "Settings" area to place the collector in SDT, or that when I specify "All" the collector is not included. I understand why it separate, but the location for SDT on the collectors is not intuitive. I naturally went to [Domain].Collectors, which was incorrect, after I was told the collector SDT is separate. Thanks5Views0likes0Comments