Comments
-
Yes, I guess the disk belong to a virtual IP of some sort. If its a file-service IP or directly on the cluster IP. Monitor the disk on the IP that the disk is always available on.
-
What does it say in the bottom of your orion webpage? The bottom black ribbon. I have this for example: "Orion Platform HF1, IPAM, VNQM, NCM, NPM HF1, DPAIM, VMAN, UDT, SAM HF1: 2020.2"
-
No, only IP addresses found and allocated count towards license. So in your example: 10 addresses found - 10 licenses used
-
In Swql many "tables" are "pre-joined" so to say. That's why you could take that shortcut. I prefer though to join myself to have better control and better understanding.
-
Hmmm, thanks mesverrum!! That might be a possibility. Even though I would rather have one dynamic view instead of thousands of copies I guess this is a possibility. It's worth trying out anyway. Guess I would need a custom query with search also to find the right view also.... :-)
-
Hi Another solution is to use a SQL variable. Below checks if it dev or prod and alters the email address to what you like. ${SQL:SELECT CASE WHEN NCP.Server_Type = 'Production' THEN 'prodteam@company.com' WHEN NCP.Server_Type='Dev' THEN 'devteam@company.com' NCP.Email_to END from NodesCustomProperties NCP where…
-
Tried to add: ${SQL: select 'me@home.se'} to have a rely simple query but same error. I guess SQL variables are not ok.
-
Depend on what you want to achieve. If you have secondary node set to "read-intent only": Polling the primary node will work Polling the secondary node will not be able to check the database Polling the availability group listener, AGL, will work and then always poll the nod that is primary (may vary) Polling the AGL with…
-
I think so. Yes please ask your dba-team to take a look at the traps and syslog tables (and trapsvabinds etc). If they have alot of old data it should be ok to delete that.
-
USE [databasename] is not allowed there. Just try a simple "select 1" instead as someone said, but the USE-command is not allowed.
-
Read this also a few weeks ago and smiled for myself... Orion don't support "full recovery mode" but support Availability groups that require "full recover mode". I think you got to make up your mind.
-
As you can see in the query I have named to column for N.Caption to "Node" (N.caption AS [Node]) Then there is two special things you can do: * [_ICONFor_xxx] * [_LinkFor_xxx] where xxx is the name of the column you want an icon and a link on. In above case the whole code for this is: N.Caption AS [Node],…
-
Ok, but working with Custom Properites you can have them "required" so you don't miss a node and don't get alerts on that one. Groups are not mandatory (if you don't populate them dynamicly and automaticly). Guess you also could build the email-address from several custom properties like:…
-
Hi we use below script to check all certificates that will expire within 30 days on a machine. Not only certificates bount to a website but all of them (That is local machine certificates, not use certificates) Seem to work. [CmdletBinding()] [OutputType([String])] Param ( #Specify thumpprint of certificate to be excluded.…
-
Microsoft Office 365 template requirements - SolarWinds Worldwide, LLC. Help and Support It says: " An Office 365 account with global administrator rights. * The account must be a member of an Office 365 admin role. * The account should be an inclusive account to support the monitoring of all mailboxes. "
-
No bug fix yet but a wor around if you have the problem: If you go to the Orion console and put this url in. http://orionservername/orion/admin/swis.aspx replace orionsever name with you server name. If you use https then just replace the servername form the url. You can clear the query you see and apply this. UPDATE a SET…
-
Exactly Silverbacksays! I'll update when I got more info from support.
-
Doesn't anybody know how to make an alert that triggers when time is xx and everything is ok?
-
Add one more that want a Biztalk template.
-
I suspect that to but was hoping I was wrong. A better architecture had been that the "container pluggin" had been delivering data to the agent who transfered it to Orion in normal fashion. (in either direction)
-
Found out that this works: "file:////server/share/file.txt" Also, some browsers may have restrictions on accessing files. Try several browsers if you fail.
-
Hi This bug can't still be around can it? (We have Orion 2020.2.1) I'm trying to make a chart out of below query and just gets "There was an error while loading data for this resource. error" SELECT C.Name + ' on ' + N.Caption AS [ComponentName] ,D.AvgNumericData AS [Latency] ,D.TimeStamp AS [Dattime] FROM…
-
Hi First, against the SQL-database, with Database manager, you ask T-SQL queries. Against Solarwinds Information Service you ask SWQL queries, Solarwinds Query language. They are similar but not the same. With SWQL you can't change things, only read.I suggest you look at the SWQL studio, download it for free, and try that.…
-
Great, it works! Thanks.
-
Hi We have the same problem. Installed the APM and Netflow trial version on our NPM-installation and the uninstall didn't remove everything. The views I hade to manulay fix by removing all APM-components and now they show up correct. The uninstall should take care of that. But I still have one problem. That is the links in…
-
Hi So far so good. But one question remains, can I get a map-object to go red with an advanced rule? If so I think I (or to be more correct my college) are happy. What happend once befoure was that the link was up but no EIGRP "notifications" (don't know the term) reached the router so it had no routes to use. You all know…
-
Here is a solution for you that I wrote: List Dependant nodes in alerts Hope it helps!
-
Thanks for your answer, althought I don't like it. As I said before I would like to have at least 24 hours of history. Put up a feature request on this one: http://thwack.solarwinds.com/ideas/3106 Please vote! /Thomas
-
Thanks! Correct, that works and I understand why. Guess I need to learn SWQL more.... :-)
-
Hi Try to make an alert out of this SQL query. (Createa a Custom SQL alert and choose Volumes as "target"): SELECT Volumes.FullName, Volumes.VolumeID FROM Volumes Inner join [dbo].[VolumeUsage_Detail] D on Volumes.VolumeID=d.VolumeID where D.datetime>Dateadd(HOUR,-2,Getdate()) -- In how many hours AND…