Comments
-
deonaanne72, There is no Kiwi integration into ServiceNow. Kiwi can send an email and ServiceNow can create a ticket from email, but that's not always the best workaround. Kiwi does contain a scripting engine that can execute VBscript and you could possibly build your own integration to ServiceNow's API. Those are really…
-
It would be the Timeout filter rather than the threshold filter, and that's fine to use if you only have a few hosts because I don't believe that is tracks separately for each Host like the Threshold filter can.
-
Working GREAT in IE9.
-
Good catch... I didn't even realize that. This whole time I'm trying to figure out why they would use a name like that. Maybe it's one of the developer's last names... I feel brain dead now.
-
IE 8, WIN XP SP3, code [a:c] Sits with the progress bar under the cancel button indefinitely. closed out of my browser and tried it again with the same result.
-
I'm getting this same error. I tried on IE9 windows 7, and I also tried IE8 on a WinXP box. Same error.
-
You're welcome.
-
The registry setting is HKEY_LOCAL_MACHINE\SOFTWARE\SolarWinds\Syslogd\Properties\MsgBufferSize If it's not there, then the default is 500k. And yes, you would have received another message an hour later with any overage still left. But if you're on the latest version and you've got it set to 500k and you were only at 41k…
-
I haven't quite figured out the particulars of the error handling in kiwi yet, but just because it says "line 1" doesn't mean the error is on line 1, in this case, I think it might be... try removing the () for sub Main and see if that makes a difference.
-
That's odd. I've had to reinstall a few times. If you're trying to reinstall to extend the trial period that might pose a problem. But I've done the following in the past: - Upgraded to full version after the trial period had expired. - Uninstalled trial during trial and reinstalled with no problem. - Uninstalled full…
-
Awesome, sorry you didn’t get any responses. This is definitely not my area of expertise. Would you post the solution though? That way if anyone else needs something like this they’ll be able to find the answer…
-
Dave, I haven't had a chance to confirm whether or not the silent install skips the web access installation, but I can tell you that there is a seperate installation for it that is kicked off. The setup file is located under \syslog\setup\ after you install the Syslog server. I would also make sure you manually stop the…
-
Mangesh, Did you ever figure out how to do this? Don't the Exchange server messages log to windows event viewer? If they do, then you can utilize the Event Log Forwarder to send them to Kiwi.
-
I've never considered using syntax like that before, but it works. You do have to concatenate '%' + interfaces.CircuitID + '%' though. It would seem more obvious than my choice, but I do a TON of substringing and text manipulation in my scripts and procs so Patindex is a common occurrence and I'm usually testing for 0…
-
Thanks Renatosilvaagio! Eilz, Let me know if this works for you. and if it doesn't... I have a script functioning right now, but because we are waiting for the completion of a message and it's not always 2 lines long (sometimes 3 lines), the way I have it working, is that you won't get Message A+A1+A2 until Message B has…
-
Perhaps something to incorporate into the web interface with an automated email and a link to the dashboard view then?
-
Resque, are you trying to open this from the desktop or the start screen? Have you tried to customize the run options in the shortcut? You will likely have to have this application set to compatibility mode for XP, and set to run as administrator, and even then you may need to either turn off some UAC settings or make sure…
-
Just out of curiosity... Why wouldn't you have the second script as a scheduled script instead of using Keep Alives?
-
Did you modify the scripts at all? And if so, can you post your current copy of the scripts? Also, are you sure the output above is coming from the script and not somewhere else? And are you receiving all of those messages via one e-mail or multiple e-mails? Last but not least... can you screenshot your rule setup for…
-
I'm sure this answer is too late to help tharaka, but I'm fairly certain that the answer is that there were no entries in the dictionary item for hostaddresses. That means that you are saying "For i = 0 to -1" I'm using the same logic and there could be some error handling in the script. I would upload a corrected copy,…
-
Just an FYI. The Keep Alive bug was fixed in one of the last 2 updates so if you were wanting to use that as an option to kick off the custom reporting script you don't have to use the Secure TCP as an offset, you can just use the Keep Alive input source now. I hadn't realized I posted that bug here, but anyone who was…
-
My mistake also... That should be... CLng(cnt1)<CLng(cnt2) instead of using Cint(cnt1)<Cint(cnt2) Int only holds up to 32,767
-
Two quick comments - 1. IF cnt1<cnt2 Then ... Compares the string values and does order them as far as I can tell according to only the 1st character, then by the 2nd character only if the 1st characters matched... This makes 70 show up higher than 500 which is higher than 2000 etc... The fix is this: IF…
-
boubou, Everyone is new at some point. The Kiwi documentation does explain how to setup and configure rules and even goes into some detail about writing your own scripts. The installation comes with some example scripts as well. I think there is enough information in this thread to help you get it the script here…
-
rajidass Can you send me the modified script you are using? You can remove your IPs and just paste it here. I'll take a look at when I get a chance. Also, has the script moved to a different rule? Or still in the top default rule?
-
I'll try to set the script in my own environment and see what I can figure out.2 more questions though just to make sure we cover all the bases...You edited the script to add your email address? And listed your IPs in that variable in the script?I'll try to get this setup next week, we've got corporate inbound this week so…
-
rajidass, You can either exclude the IPs from the rule, or set them specifically in the script for an extremely long check in. Either way, if they have already checked in and added themselves to the check in log, you may need to clear the log. To clear the log, you can either restart the service, or you can run a script…
-
That should work, but just quick glance at the code makes me think that the array is being dimmed by one element larger than it needs to be so your Ubound(MySilentHost) might always be returning zero. Try if MySilentHost(1) > 0 then That should work, but can't remember whether the first element in an array in VB is 0 or 1,…
-
In the default script you could check the value of MySilentHost and skip the email if it is empty. In the host check in script, you'll get an individual email of any host that hasn't communicated, along with the number of seconds since the last communication and the interval that you set for that host. If you want to…
-
I believe that default script, much like mine needs to be run inside of a rule that all of your hosts send their messages through like the default rule. I created my script because I needed to measure host check ins all the time and not just once an hour. So you can edit my script and specify individual check in…