Comments
-
You can clone components from Admin->APM Settings->Manage Assigned Application Monitors->Manage Assigned Component Monitors. Manage Assigned Component Monitors link is in upper right corner of the page. There you can select specific components and using "Copy to..." button you can copy them to another application or to…
-
Hello Fred, you can also just increase timeout of Text Match action instead of adding extra delay before. Delay action can skew durations while increasing action timeout for text match can't.
-
I sent you private message so we can look at your issue directly.
-
File Age Monitor can monitor only single file. It was mentioned for files such as logs, backups etc. If you need to monitor any file in the folder, you can try to use Windows Script Monitor using your custom VB script. Then you can scan folder for all files, check their dates and report result as you need. Check…
-
Hello Andrew, if you need to alert on specific step "place" in transaction, let's say first step, you can try Custom SQL alert. Each step has order defined in database and this can be used in SQL query. Try to create Custom SQL alert on SEUM: Step and into SQL condition enter: JOIN SEUM_RecordingSteps rs ON…
-
Grab script source code from monitor details (Edit Apache application template and expand one of monitors) and try to run it directly on target machine as a standard Perl script. If it won't work, you can at least debug it to see what is actually wrong with it.
-
Hello sotherls, What is component status with this query? Is it Up even if statistic is 0.00? Are you sure that at the moment of poll there are some messages in queue? Try to modify your query like this: select count(*)+10 As Queued_Emails from AR_System_Email_Messages where send_message in (1,2) Now check if statistic is…
-
If server is so overloaded that it's unable to report it's status, there is no way how we can get it. If you need to monitor processes, you can try SNMP monitors which is far less demanding. WMI is more complicated and so puts more load on server to actually get data.
-
Hello Andy, CPU and memory utilization or physical server can be monitored by SNMP. If you add server as SNMP node to Orion, these data are collected automatically and you don't need to set anything extra in APM. Then you can create custom reports on nodes as Byron suggested above using Report writer. There is already…
-
Hello Byron, do you have proxy set? This error can occur if: a) you specify hostname that can't be resolved - you have IP so this is not the case b) proxy server hostname can't be resolved So do you have proxy set and is it working correctly?
-
Is there any script that opens notepad on some other machine? Windows Script Monitor executes scripts on APM server, not on target machine. If you are sure that you don't open it intentionally, you can try to setup auditing on notepad.exe to see what process opens it. You can find how to do it here:…
-
Look what SolarWinds services are present on those machines. If it's only SolarWinds WPM Player then it's a player machine and should be updated automatically. If there are others such as "SolarWinds Orion Module Engine" then it's an additional poller and needs to be updated manually.
-
Hello Shailesh, Statistic threshold doesn't have any "reasonable" values in general. Statistic value is what query used for monitoring returns. For example: If you want to monitor number of pending orders and alert if there are more than 20, you could use "SELECT COUNT(OrderID) FROM Orders WHERE IsPending = 1" and set…
-
You can check "c:\ProgramData\Solarwinds\Logs\SEUM\AgentService.log" log file. If there is a problem with accounts it should log errors during startup. Common problem with domain accounts is that they have no "logon locally" permission for the machine and WPM player needs that. Try to RDP to player machine using those…
-
Hello, transaction is considered available if it's up, warning or critical. All other statuses including unknown are considered as unavailable.
-
I'm also interested in why you need to download/move file to different folder. Can you provide more information about your scenario? Is there anything that you would like to have in SEUM that would help you with your task? For example download to custom folder, do some additional checks of downloaded file such as text…
-
I see now. I marked this as feature request FB79499. Would something like comparison chart on step details page work as well? Something similar to "Top XX Locations by Duration" on transaction details page but for individual step? It would provide visual comparisons between locations and also average values for step.
-
There is nothing obviously wrong in your settings. I suggest you to upgrade to APM 3.5 if possible and if problem persists, you should open a support ticket for this.
-
It's in fact 255 characters. You should limit your message from script to this length. It won't be stored full into database if it is longer.
-
Then you can wrap application to VB script and measure it's runtime there. Then you can set thresholds for VB script and alert on these values.
-
If you import the recording, it's imported as a new instance. If you already have a transaction with original recording, it's still using original version.
-
That modification you done to query can be resource-specific. In general, provided syntax should work. What resource are you filtering with this?
-
If you are willing to create separate alert for each group of similar recordings, you can try: WHERE SEUM_TransactionsAlertsData.TransactionId = ( SELECT MAX(t.TransactionId) FROM SEUM_TransactionsAlertsData t WHERE t.Status = 2 AND t.RecordingId IN (REC_ID_1, REC_ID_2,...) HAVING COUNT(t.TransactionId) >= 2 ) where…
-
cahunt, if player does not show high player load then flapping transaction is most likely caused by something else. Also if transaction goes down and not just unknown it's definitely failure during transaction playback. I suggest to open a support case. WPM default settings should suit the most cases and any change should…
-
As aLTeReGo suggested, I would remove wait action and increase time on Content Match action to let's say 60 seconds. What are average durations of step 4 when transaction works? Are they sometimes high, close to 30 seconds? If yes, then it may happen that sometimes page load exceeds 30 seconds and content match fails.…
-
Hello Questionario, if it is only for Performance counter monitor, then it can be the same issue. If it is also for other monitors, it's not this case and you should open support case for it.
-
Unfortunately StepsWithStatus is preformatted property that does not contain durations. But you can create separate alert on step entity and put step duration to the message as needed.
-
Hello, APM database is case-insensitive by default so you can write "Warning" or "warning" or any other variant.
-
Hello Derek, transaction goes to unknown in two cases - if player is down or if transaction is not played for a long time (based on it's frequency). Because your player is up, second case applies to you. Those unknown transactions are for some reason played for much longer time than they should. This causes other "healthy"…
-
Hello grichardson661, if you reach license limit, you still have as many components running as is your license limit. Components above this limit are shown as "Not licensed". What kind of license do you have? Have you reached your limit? You can check it in Admin->APM Settings->License Summary (last item on the page).