deathunt ✭✭✭

Comments

  • Indeed, having more macro acessible from argument woule be nice: ${ApplicationID} ${ComponentID} ${ApplicationTemplateID} All script : Perl, vbscript or powershell...
  • Hurray. The log was hidding in: C:\Documents and Settings\All Users\Application Data\SolarWinds\Logs 2012-11-30 15:52:23,703 [5] INFO SwqlStudio.MainForm - Opening subscriber endpoint at net.tcp://localhost:17777/SolarWinds/SwqlStudio/2364/Subscriber 2012-11-30 15:52:26,938 [5] ERROR SwqlStudio.MainForm - Exception opening…
  • No, I'm not admin on my machine* I'm probably just an user. Asking a team mate to test this out .....
  • I checked out already. I run a search with "SWQ*.log" and I found nothing
  • Orion Core 2012.1.1 SAM 5.0.1 IPAM 3.0 NPM 10.3.1 IVIM 1.3.0 1995-2012 All Rights Reserved I checked out those path: VM: C:\Program Files\SolarWinds\Orion SDK\SWQL Studio No SwqlStudio.log App Server: C:\ProgramData\Solarwinds\Logs\ No "SWQL Studio" folder or log After checking up, I do nothing and , it crash after 20…
  • Do you think it weird that you join ActiveObject string with nodeID integer ??? I understand than you can convert them integer to string or string to integer. But there risk that it mitmatch data type.
  • I need to know from INPUT of my script the value of statistic.FileSize to get the " DEF" part of the file. All all the part that are gonna be add to the file !!! The new part added to the file (obtain with the FileSize statistic). For this, I need to know what was the fileSize (or Difference) before the new part was added…
  • A better way to join alert/message with node, volume, application or component. Giving out information for people to find the service in problem: * IP * server name * node/volume/application/component name * %Use Also, I hate to make a JOIN with AlertStatus.ObjectName = APM_Application.Name. Since it, nvarchar 255 vs…
  • AlertStatus only contain ~10 alerts. After they are clean from AlertStatus, do they go into another table ? I ask because I have to make a SQL / report that show error for node, volume and application with more than those label (show on https://orion.rtss.qc.ca/Orion/NetPerfMon/Alerts.aspx): TIME OF ALERT, ALERT NAME,…
  • How can I do that ?
  • I got the SDK install on a VM. Solarwinds software is install on a server (x.x.x.130) Solarwinds database is install on another server (x.x.x.136) To use the WSQL Studio app (SDK 1.5) and connect to SWISS. I am curently connecting trough "ServerName (v2) over HTTP" or "ServerName (v3) over HTTP". I click on the '+' to…
  • I need to read a file and check if there new data added into the file. Example: a.txt got the folowing content: "ABC" Component run, get file size (3 bytes) and output it in statistic.fileSize. a.txt got new stuff added to it: "ABC DEF" Component run, get file size (7 bytes or 4 more byte if you count statistic as…
  • In other words, I have to make a script to get file size (differenceSize) in the first component. In my second component I use the value of the first component (differenceSize) to do what I really need (extract the added file section) ?
  • How do I access back the Statistic.differenceSize I sent in the output when the script run again ??? I want to get Statistic.differenceSize as Input. I did check the "Count statistic as difference:" Script Arguments: '"\\file.txt" 'Args(0) ''''''VBScript below Set Args = WScript.Arguments path = Args(0) differenceSize =…
  • Your exemple was too munch for my need so I simplify it: nb1=1 nb2=3 nb1 = weirdNumber(nb1) nb2 = weirdNumber(nb2) WScript.Echo "Message: Operation Complete" WScript.Echo "Statistic:" & nb1 Function weirdNumber(nb) return (nb +4 )* 2 End Function