jiri.tomek

Comments

  • Hello Questionario, to run ps1 file you have to use "Posershell.exe -File path_to_file", not "-Command". However you are right in other statements. VBscript is really executed locally, I exchanged Windows script monitor with Linux script monitor. Linux script monitor is executed on target machine, Windows script is…
  • Yes, with scripts there is one issue. You have to run it with user account that has permissions on Orion server AND on remote server you are monitoring. So you need user that is available on both machines and has appropriate permissions.
  • Yes, this is performance counter monitor. It has issue with statistics in alerts and it should be fixed in the next release.
  • Hello, just set threshold for statistic to "less than 1" so component will have warning/critical status which you can use for alerting. Or you can add: WScript.Quit(0) to the end of first condition and WScript.Quit(1) to the end of second condition and then your component will have Up/Down status.
  • It would be possible to run alerting service under different account but you have to ensure that this account has all permissions as "Local System" account plus permissions that you require to connect to WMI.
  • Can you install Additional Poller that can access CPE and setup tunnel between main server and Additional Poller so that they can see each other?
  • We have support all around the world so if you would prefer different time zone just ask to get the case transferred.
  • I see that you already have a support case opened so I suggest to work through that. Support should tell you what they need to be able to help you. I also see that they contacted you yesterday with request for screenshot.
  • Alert definition seems correct. Have you actually tried it with real alert? If you paste URL from Alert manager directly to browser, then you get your error. You need to receive alert email. URL defined in Alert manager contains variables that are being replaced by real values when email is sent. Try to make some of your…
  • Actual duration that you see in web console is only measured duration (page load). Actual playback usually takes more time (finding elements on the page, clicking, ...). So transactions can run much longer than reported. You can find actual playback duration of transaction if you enable DEBUG logging for WPM Business Layer…
  • What component do you use for this? There is still this issue for performance counter monitor in 3.1.
  • Grant "Logon locally" permission to local user accounts on player computer or put "SEUM-User-#" accounts to Administrators group.
  • Hello, each case related to WPM is quite unique because each is for different website so I suggest to open a support ticket for yours.
  • You can still use VB script for this. It can be a short one, something like: strFolder = "\\computer\share" set objFSO = createobject("Scripting.FileSystemObject") if objFSO.FolderExists(strFolder) then wscript.echo "Message: The folder exists" wscript.echo "Statistic: 1" else wscript.echo "Message: The folder does not…
  • In fact you can execute powershell command in the same way as any other shell command from vbscript so you don't need that ActiveX plugin. It provides full interface to powershell but all you need is output. Set objShell = CreateObject("WScript.Shell") Set objScriptExec = objShell.Exec("powershell -command…
  • Orion runs this script under user that you specified in credentials for monitor. This user may be different than user you use to run from command line and so impersonation during object retrieval may fail. Try to specify same user in credentials or remove {impersonationLevel=impersonate} as script should be already…
  • You said it works with calc.exe. Does it work also with some other files from some non-windows applications? For example Adobe Acrobat or whatever you have on server. Maybe that version string for that application contains some uncommon white characters. Try to redirect script output to text file and open it in some editor…
  • What do you mean by "I do not see same leaf on Windows 2012 R2 server."? That you don't have that Group Policy setting available? I checked it on my Windows 2012 R2 with IE11 and I can see that setting there. Are you using domain accounts form WPM? There is a known issue with proxy settings for transactions on Windows 2012…
  • Can you please post screenshots of your alert definition "Trigger Condition" tab and "Edit E-Mail/Page Action" dialog's "Message" tab?
  • Hello, have you had some specific reason to change that setting? Lowering it to 5 seconds can cause incorrect page load duration times reported in WPM if your page loads longer than 5 seconds. It can also cause playback failure if some element on the page does not show up in those 5 seconds.
  • Can you open a support case? Support will get required data for troubleshooting so that we can investigate the issue.
  • Hello Byron, if you want to do a bulk update of application names, you need to know ID of application template. Go to Admin->APM Settings->Manage Application Monitor Templates and open your template for edit. In URL you will see something like this: localhost/.../EditApplicationTemplate.aspx1054. Id you are looking for is…
  • Hello ajdurr, what you describe should not happen if application is still running. If you are sure that application did not for example restart itself from time to time then you should open a support ticket for this. Our support can verify that your setup is correct and that you don't have any network issues or so. There…
  • Is APM failing all the time for specific process or is it random? If you are able to reproduce the issue you should open a support ticket for this so we can investigate it.
  • I'm sorry that WPM does not what you would expect. I'll pass this to our management as a feature request but that is all I can do now regarding keystrokes support. However, we may still be able to make WPM playback working reliably without keystrokes if we have chance to look at it. May I ask you for your support case…
  • Hello, I double checked alerting behavior for your settings and it behaves as I described in my last comment. Each object (transaction) is evaluated independently. If WEB01_TEST1 is over 10 seconds for 9 minutes and then WEB01_TEST3 is over 10 seconds for 5 minutes, no alert should be triggered. Alert is triggered only…
  • Try to change path for script to write to something like "C:\log.txt". I've just tried to run VB script with alert and it works. My script looks like this: ' Create the File System Object Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFile = objFSO.CreateTextFile("e:\temp\out.txt") objFile.WriteLine("TEST")…
  • At this point it's not possible with WPM. We already track this as a feature request FB203877. Is the website and certificates are under your control? If yes, you should be able to generate one new certificate that will be used by WPM and that will use Client Authentication attribute.
  • Then you would have to use script for that. Unfortunately WQL language doesn't support such things as looping.
  • If you write vbscript and assign that windows script monitor to Exchange server, script is executed on that Exchange server. So you can execute anything you need on Exchange directly. Of course you have to provide credentials that have correct permissions on both Orion host and Exchange server. Just write VB script…