One question: where do I find the schedule manager log?
Thanks for your help
Ah - I think I see.
That's in the API for sure, but it's stored as JSON, which means it can't be easily parsed.
Your best bet would be to contact support, but I think the log file you are looking for is C:\ProgramData\SolarWinds\Logs\Orion\ActionsExecutionReport.log.
C:\ProgramData\SolarWinds\Logs\Orion\ActionsExecutionReport.log
You can find the records of them via a SWQL query:
SELECT [FtoA].FrequencyID , [FtoA].AlertConfigurationID , [A].AlertMessage , [A].Name , [A].Description AS [AlertDescription] , [A].ObjectType , [A].Enabled , [A].Frequency , [A].Severity , [A].NotifyEnabled , [A].NotificationSettings , [A].LastEdit , [A].CreatedBy , [A].Category , [A].Canned , [F].DisplayName , [F].Description AS [FrequencyDescription] , [F].CronExpression , [F].Duration , [F].StartTime , [F].EndTime , [F].EnabledDuringTimePeriod , [F].CronExpressionTimeZoneInfoFROM Orion.AlertSchedules AS [FtoA]INNER JOIN Orion.Frequencies AS [F] ON [FtoA].FrequencyID = [F].FrequencyIDINNER JOIN Orion.AlertConfigurations AS [A] ON [FtoA].AlertConfigurationID = [A].AlertID
What do you mean by "Log?" What do you want to see?
Hi KMSigma,Let me explain better, I have prepared a report that produces a .csv file with the serial numbers of all the routers on my network and I have scheduled the copy of the file in a network share every 14 days. I would like to consult a log file, if it exists, that reports the status of the action.
Thank you for your time.
Oh perfect, that's exactly what I was looking for.
Thank you.
P.S. I have been following your work for a while, and I would like to take this opportunity to give you my compliments.