Hello all, my first post on here...
Not sure if this is the correct place to post this question, but is there a complete list of all the Orion suite of services & processes and their descriptions available somewhere?
Thanks much in advance!
-Walt
Welcome to the forum! ;-) Yes, this is absolutely the right place to post this type of question. Please see the "How Orion Works" section of the Admin Guide and let me know if this meets your needs.
Thanks, that doc sheds some light for sure. Is there an actual list of the process/services names themselves somewhere within it (that I'm not finding), or somewhere else by chance?
Thanks,
Walt
Here's a list of the main ones I think I have running right now:
SERVICE_NAME: OrionModuleEngineDISPLAY_NAME: SolarWinds Orion Module Engine TYPE : 10 WIN32_OWN_PROCESS STATE : 4 RUNNING (STOPPABLE,NOT_PAUSABLE,ACCEPTS_SHUTDOWN) WIN32_EXIT_CODE : 0 (0x0) SERVICE_EXIT_CODE : 0 (0x0) CHECKPOINT : 0x0 WAIT_HINT : 0x0SERVICE_NAME: SolarWinds SFTP Server 1.0.0.0DISPLAY_NAME: SolarWinds SFTP/SCP ServerProvides SFTP and SCP services TYPE : 10 WIN32_OWN_PROCESS STATE : 1 STOPPED (NOT_STOPPABLE,NOT_PAUSABLE,IGNORES_SHUTDOWN) WIN32_EXIT_CODE : 1077 (0x435) SERVICE_EXIT_CODE : 0 (0x0) CHECKPOINT : 0x0 WAIT_HINT : 0x0SERVICE_NAME: SolarWinds TFTP ServerDISPLAY_NAME: SolarWinds TFTP ServerSolarWinds TFTP Server TYPE : 10 WIN32_OWN_PROCESS STATE : 1 STOPPED (NOT_STOPPABLE,NOT_PAUSABLE,IGNORES_SHUTDOWN) WIN32_EXIT_CODE : 1077 (0x435) SERVICE_EXIT_CODE : 0 (0x0) CHECKPOINT : 0x0 WAIT_HINT : 0x0SERVICE_NAME: SolarWindsAlertingEngineDISPLAY_NAME: SolarWinds Alerting Engine TYPE : 10 WIN32_OWN_PROCESS STATE : 4 RUNNING (STOPPABLE,PAUSABLE,ACCEPTS_SHUTDOWN) WIN32_EXIT_CODE : 0 (0x0) SERVICE_EXIT_CODE : 0 (0x0) CHECKPOINT : 0x0 WAIT_HINT : 0x0SERVICE_NAME: SolarwindsSyslogServiceDISPLAY_NAME: SolarWinds Syslog Service TYPE : 10 WIN32_OWN_PROCESS STATE : 4 RUNNING (STOPPABLE,PAUSABLE,ACCEPTS_SHUTDOWN) WIN32_EXIT_CODE : 0 (0x0) SERVICE_EXIT_CODE : 0 (0x0) CHECKPOINT : 0x0 WAIT_HINT : 0x0SERVICE_NAME: SolarWindsTrapServiceDISPLAY_NAME: SolarWinds Trap Service TYPE : 10 WIN32_OWN_PROCESS STATE : 4 RUNNING (STOPPABLE,PAUSABLE,ACCEPTS_SHUTDOWN) WIN32_EXIT_CODE : 0 (0x0) SERVICE_EXIT_CODE : 0 (0x0) CHECKPOINT : 0x0 WAIT_HINT : 0x0SERVICE_NAME: SWInfoServiceSvcDISPLAY_NAME: SolarWinds Information Service TYPE : 10 WIN32_OWN_PROCESS STATE : 4 RUNNING (STOPPABLE,NOT_PAUSABLE,ACCEPTS_SHUTDOWN) WIN32_EXIT_CODE : 0 (0x0) SERVICE_EXIT_CODE : 0 (0x0) CHECKPOINT : 0x0 WAIT_HINT : 0x0SERVICE_NAME: SWJobEngineSvcDISPLAY_NAME: SolarWinds Job Engine TYPE : 10 WIN32_OWN_PROCESS STATE : 4 RUNNING (STOPPABLE,NOT_PAUSABLE,ACCEPTS_SHUTDOWN) WIN32_EXIT_CODE : 0 (0x0) SERVICE_EXIT_CODE : 0 (0x0) CHECKPOINT : 0x0 WAIT_HINT : 0x0SERVICE_NAME: SWJobSchedulerSvcDISPLAY_NAME: SolarWinds Job Scheduler TYPE : 10 WIN32_OWN_PROCESS STATE : 4 RUNNING (STOPPABLE,NOT_PAUSABLE,ACCEPTS_SHUTDOWN) WIN32_EXIT_CODE : 0 (0x0) SERVICE_EXIT_CODE : 0 (0x0) CHECKPOINT : 0x0 WAIT_HINT : 0x0SERVICE_NAME: SWOrionInformationServicev1DISPLAY_NAME: SolarWinds Orion Information Service v1Information exchange for SolarWinds products v1 TYPE : 10 WIN32_OWN_PROCESS STATE : 4 RUNNING (STOPPABLE,NOT_PAUSABLE,ACCEPTS_SHUTDOWN) WIN32_EXIT_CODE : 0 (0x0) SERVICE_EXIT_CODE : 0 (0x0) CHECKPOINT : 0x0 WAIT_HINT : 0x0SERVICE_NAME: NetPerfMonServiceDISPLAY_NAME: SolarWinds Network Performance Monitor TYPE : 10 WIN32_OWN_PROCESS STATE : 4 RUNNING (STOPPABLE,PAUSABLE,ACCEPTS_SHUTDOWN) WIN32_EXIT_CODE : 0 (0x0) SERVICE_EXIT_CODE : 0 (0x0) CHECKPOINT : 0x0 WAIT_HINT : 0x0
I have a very similar list of what is actually running it looks like...
I'm wondering if there is a documented full list of processes/services listed somewhere though, along with descriptions for each process/service?
So... I created a CSV file with ServerNames and IP's of all our solarwinds servers.
Then ran this from our solarwinds management server: (could have just went with host names...)
Simple and efficient, we will be using this for future APM monitors where applicable.
$creds = Get-Credential
$Fluff = Import-Csv C:\Temp\SomeFile.csv
Foreach ($line in $Fluff){
$ServerCon = @{
server = $line.Server
IP = $line.IP
}
Write "" | Out-file C:\TEMP\SolarWindsServices.txt -Append
write "Server:" $line.Server | Out-file C:\TEMP\SolarWindsServices.txt -Append
Get-CimInstance -ComputerName $line.Server -ClassName Win32_Service -Filter "DisplayName like 'solar%'" | Select Name,DisplayName,Description | Out-file C:\TEMP\SolarWindsServices.txt -Append