Comments
-
This is Solarwind's KB for removing through the DB SolarWinds Knowledge Base :: Disabling hardware health monitoring manually. (I was looking for it and landed here, I thought it would be a good place to link it.
-
and server name/caption (or is that available now?)
-
have you tried enabling hubble? to do that change value to "true" in c:\inetpub\solarwinds\web.config (or where your web-site is) for section <add key="HubbleActive" value="true"/> OH, Never mind... I guess I should have looked to see where this was posted.
-
Another way to do this would be to allow us to alert on alerts For example: One generic alert that is for node down another that says if Node A has Alert X active for 10 minutes and the time is between 7am and 7pm then email day staff another that says if Node A has Alert X active for 30 minutes and the time is between 7pm…
-
This is another issue that has been around forever - a little tricky to fix, but now you get first time customers frustrated with one of the more commonly wanted features that say/think "I just bought this app and things don't work right" (might even happen while they demo the app)... I don't know, maybe its a good way to…
-
I do want to know when a LUN disappears from the fabric.
-
I almost want to create a bunch of dummy thwack IDs so I can vote on this more than once!
-
The export to PDF is pretty bad (image, not text - no copy paste out of the PDF and pretty large). If it would just take the HTML and convert it to PDF it would be great, but for now "I" (personally) go to the web site and use a PDF printer that does it, but I get an email of the HTML to remind me to go export it. I also…
-
Oh! A historical graph of how loaded the Orion server is! so you know when you have to start expanding you Orion infrastructure. That is an cool idea. I wonder if there it a way to just make a template for it.
-
Sometime I go into the alert and start to add content to the body, but I add it in the middle of something else because I thought I was starting at the bottom. I just assumed no scroll bar means there isn't much content in the text box. It is a bit anoying and should not have to end up a "Feature Request" - it should be…
-
I don't think it is historical (I don't know where it is), but it is displayed in the web page, so there must be some math to create it... if SolarWinds just created a template and made it available to us... then it would be done.
-
We need more votes!!!! Everyone Vote for this! This feature would give us a lot more flexibility!
-
I also need this (maybe different reason) - here is my scenario: 1) sign on to the page 2) list documents available a) look for specific words in page 3) list available 3rd party SSO links (if 3rd party is down, link wont show up) a) look for specific words in page 4) list historical activity and look for activity a) look…
-
There's something wrong with that, I increase disk size all the time and orion detects it. If I click the rediscover button it happens right away.
-
If you catch the issue before a nightly maintenance is run, you can re-associate the data but running this (it is for a volume, but with a little adjustment you could also do an interface): DECLARE @Name as nvarchar(200) DECLARE @SQL as nvarchar(1000) DECLARE @OldVolumeID as int DECLARE @VolumeID as int DECLARE @NodeID as…
-
It's already passed the voting stage and they are doing it.
-
Done and Done! I would love to get this once it is made available to beta test!
-
The simpler way didn't work because SQL was still interpreting the format as "MM/DD/YYYY", but Orion was honoring your OS preference of DD/MM/YYYY, so things were just getting confused. The new query I gave you never converts it, so display format doesn't come into play. I got Alert Guru by just answering questions (I…
-
The way you PM is click on their Icon/Picture/whatever you want to call it. Scroll down about 1/2 way, click "Send An Email" on right side of page.
-
ah, missed ' ${SQL:Select Floor(Convert(float,(getdate()-TriggerTimeStamp))) from [AlertStatus] inner join [AlertDefinitions] on [AlertDefinitions].[AlertDefID] = [AlertStatus].[AlertDefID] and [ActiveObject] = ${NetObjectID} and [ObjectName] = '${NetObjectName}' and [AlertDefinitions].[AlertName] = '${RuleName}'} days and…
-
this is a little more complex, but it doesn't convert to varchar till the very end. ${SQL:Select Floor(Convert(float,(getdate()-TriggerTimeStamp))) from [AlertStatus] inner join [AlertDefinitions] on [AlertDefinitions].[AlertDefID] = [AlertStatus].[AlertDefID] and [ActiveObject] = ${NetObjectID} and [ObjectName] =…
-
Any update? The SQL query I put in has found it happen for me a couple times, but my issues are usually in NPM and SAM keeps running without an issue; I wonder if our issues are related or just share a symptom. Of course even if you got through your repair, it might take a day or so till it shows up again. How often does…
-
I am hopping the new version of APM will address this. I heard the new version of APM is supposed to include hardware monitoring of HP and Dell, I am hoping they include the monitoring of VMware hardware with that. Can any staff comment on that?
-
ok, this time do it, but down't put "${SQL:" or the ending "}" we want to see what the SQL command is. Then we can put it in SQL query editor and troubleshoot the actual SQL statement.
-
Grr, put in: Select Floor(Convert(float,(Convert(datetime,'${DD}/${MM}/${Year} ${HH}:${Minute}:${Second} ${AM/PM}')-Convert(datetime,'${AlertTriggerTime}')))) Select Convert(time,Convert(datetime,'${DD}/${MM}/${Year} ${HH}:${Minute}:${Second} ${AM/PM}') - Convert(datetime,'${AlertTriggerTime}')) Oh! and/or use:…
-
Set your user up the way you want, and before you click log out, run: select [SettingValue] FROM [NetPerfMon].[dbo].[WebUserSettings] where [AccountID] = 'DOMAIN\MYUSER'
-
Obfuscated = type 7 (your cisco right), reversible "encryption" I don't like calling it encryption because you can decrypt it without the encryption key. I went in and set the password under my account, then use: select [SettingValue] FROM [NetPerfMon].[dbo].[WebUserSettings] where [SettingName] = 'CirrusISPassword' and…
-
Ok, I have finished my first attempt a single alert per engine for this: What it is - Looks for Stale Last Sync or Null in RAM or CPU for at least 50% of the nodes monitored by an engine Requirements - The Engine must be Monitored by Orion and the IP needs to be the same in the nodes table as the engine table Custom SQL…
-
ah... try: Insert into [NetPerfMon].[dbo].[WebUserSettings] ( AccountID, SettingName, SettingValue) values ('DOMAIN\GROUP','CirrusIsFirstTime','false') Insert into [NetPerfMon].[dbo].[WebUserSettings] ( AccountID, SettingName, SettingValue) values ('DOMAIN\GROUP','CirrusISPassword','<OBFUSCATED_PASSWORD>') Insert into…
-
sure, I have seen the "out-of-range" but it's usually because of a expected format. Does this happen when the reset is the after noon? Maybe the "${HH}" is returning > 12 (i.e. 13 for 1 pm), if that true try removing "${AM/PM}" from it.