Comments
-
You probably need to add the vcenter or hypervizor or whatever above that VM, Could verify by going down the virtualization tree for that node and seeing if you can see the VM
-
Under account permissions Pretty sure there's an "are you sure", in case someone's misclicked a P1 into existence
-
Should be pretty simple to make a dashboard called ~"Template" add some useful stuff, and duplicate Would probably need at least 3 or so, for Summary Classic, Node-level classic and Modern
-
Offhand, error says something about subquery format not being liked, subquery format does indeed look a bit weird If they all individually work (please confirm, different environments on this end), gotta stick em together differently or try and reduce em down I'm not sure they're necessary. I guess it's in there because…
-
Much knowledge contained in this question, posting to try and soak some up lol
-
I dont think WHERE [RT].DateTime >= DATETRUNC('day', GETDATE()) = average availability for todays date
-
Got any events from syslog or traps?
-
You can select an ICON in/alongside the CASE statement you're currently going, I dont have a code example to hand in this moment though.
-
Technical "yes", realistically I dont expect you'd notice a difference
-
Either trust it or update it I suppose
-
If you did, you'd need to be sure about all devices exporting config change traps, this can be pretty heavy. If you do have that though, then just select from the syslogs/traps where changetype Alternately if you have them all in NCM then there's NCM change logs, totally different bit of the tool though
-
Had a deep dive into agent stuff early in the week or late late week, on the windows end at least. The MST file contains all the details needed, and details about polling engine etc end up in a config file int he agent directory. I dont think with an ansilble deployment you should be touching the options screenshot really…
-
Asking yourself? Interesting " What do you want to learn? Where do you want to be in 5 years? Do you want to code stuff? Do you want to stick in network-land, vs servery/storagey/etc lands? Do you have a good idea who your stakeholders are, and what they want? What would I want to have, to evidence good work being done if…
-
Definitely some examples about, there's an OOTB example one I think(?), I think a good deal of the potential readers/repliers drop out at the code block. "Log Parser" is maybe the ideal search phrase. For regex stuff, it got much easier in the last couple of years, the workflow used to be "do it by hand in regex101.com"…
-
Feels like a "rerun config wizard" then, would follow up with support
-
Aah I understand the last few lines of the OP now. If you run : " select vm.name from vim_VirtualMachines vm left join vim_Hosts H on vm.HostID = h.HostID where H.HostName = 'esxi-host-01.mgmt.cloud' FOR XML PATH ('') " in your env does that work or error out or produce no results? Getting the code back means no results or…
-
Ooh never came across that last link before
-
Got any other event stuff present (could be events DB unavailable or something)
-
A bunch of this is visible in the Swagger If it's not in the swagger, then it's basically find the table in SWQL that that verb is a property of, the table goes in X and the verb in Y: /invoke/x/y Pretty sure that's right
-
(also, if you're using customhtml to do a swql table element, there are far easier ways!)
-
I suspect you've got some shared reference or tag between the elements. Not sure which, f12 dev mode might help. Like wluther I can confirm having multiple custom htmls on a dash. I have trouble sometimes with custom html interacting with existing page html, betting it'd that sort of issue. I'm sure there's some…
-
Man I have a dashboard that has that calendar element and a row of 3 pie charts on it too in just the same fashion, spooky
-
Feels like a "rerun config wizard" but before that i'd just check you actually have data on the CPU chart or simmilar for one of the newer nodes
-
Careful leaving your hostname in What do you get? I'm expecting you'd want to REPLACE out some '<'s and '>'s outside the subquery Also, should probably collapse this into 2 macros deep rather than 3, if the long ones evaluate in the wrong order you'd get an error and i'm not super sure how that'd work
-
A couple quick checks in order 1) the devices are polled through vman (settings -> virtualization -> manage objects/polling or something like that) 2) your event rules arent deleting all or something simmilar
-
Someone IPAM-ey will have to jump to help from there I think, I'm more familiar with the api stuff
-
For the ethernet adapter issue - check if you have charted CPU data for the last hour for the parent node
-
Yes it's possible and you're doing the method about right, some detail is off If it spits back the code it means one of 3 things 1) Code's invalid 2) No data found (If you're writing custom, using a CASE or UNION allows this to fail gracefully) 3) You found data, but it doesnt line up well with being in the top left cell…
-
You can approach this in different ways. Easiest is probably to monitor the AG in addition to the two sub servers, you can even use the hostname attribute to see which is active, kinda.
-
To parse in SWQL you want like SUBSTRING and REPLACE functions, see the SWQL functions github page To parse in powershell regex via a LLM and regex101