mprobus

Comments

  • I have two of the monitors set up as the data is directly from the database. The last query has to use the data from the first two. Any idea how to make this happen?
  • I thought that is where you were getting at. When you just add the server it, it only pulls in items such as CPU, Memory, Disk, Network, etc. Service monitoring is separate. In order to monitor specific services, you will need to either use one of the templates in SAM or build your own.
  • The PSI site will not tell you the score or whether you passed or not. I'm assuming it's tied to the rule they have about no taking a screenshot of the results page. I took mine yesterday and I got my digital badge and certificate today, so the turn around is fairly quick.
  • In looking further, looks like I have an out of the box report called Groups and Group Members. It should give you what you need.
  • Thanks for the update. Recently I had to upgrade my cert SHA2 and noticed the instructions had changed since my original post. They were still inaccurate as you found out, but different than before.
  • That would probably help. SELECT NodesData.Caption, APM_Component.Name, APM_Process_Detail.PercentCPU, APM_Process_Detail.PercentMemory, APM_Process_Detail.IOReadOperationsPerSec, APM_Process_Detail.IOWriteOperationsPerSec, APM_Application.Name AS AppName FROM APM_Component INNER JOIN APM_Process_Detail ON APM_Component.ID…
  • Forgot to respond to the actual question. The process data isn't under the component itself. This data is contained in a separate table. The report writer is limited as it's being phased out. Your best bet is to use the Web Reports feature.
  • Try this. SELECT APM_Component.Name, APM_Process_Detail.PercentCPU, APM_Process_Detail.PercentMemory, APM_Process_Detail.IOReadOperationsPerSec, APM_Process_Detail.IOWriteOperationsPerSec, APM_Application.Name AS AppName FROM APM_Component INNER JOIN APM_Process_Detail ON APM_Component.ID = APM_Process_Detail.ComponentID…
  • I was able to get it to work by configuring manually. I had tried it previous, but could not get it to work. Turns out that was my mistake as I was trying to run the winrm config from powershell instead of a command prompt. I am still curious as to why the Auto Configure doesn't work. It seems that the primary app server…
  • Forgot to add in one more piece. Without the X,Y Capture mode, the first step is failing with Access Denied. Is that because of hte Page Can't Be Displayed message or are they independent?
  • That seems to have allowed the playback to complete successfully. But how can I be sure everything is correct? All of the steps just say "after XX press key" or "release key". Am I just supposed to go by the fact that it was able to browse to the pages after login that I assume all is well? Looks like I have a lot of…
  • That helps except I can't figure out how to sort by the calculated field. Is this possible?
  • Actually, in looking at it again, I noticed the timestamps aren't updating very often. The poll interval for type 1 is set for 300, but the last poll times are not recent. Do you see the same thing on your instance? 
  • I think this can work. It's not as simplistic as the last poll time, but I can build something for it. Thanks
  • Came up with the following for anyone that is interested. It will not graph the results, so I can't create a custom chart out of it, but a custom table works. SELECT Nodes.Caption AS NodeName, CPULoad.DateTime, CPULoad.AvgLoad as CPUAverage, CPULoad.MaxLoad AS CPUMax, CPULoad.AvgPercentMemoryUsed as MemAverage,…
  • Thank you for the info and the suggestions. To answer your question, I'm not sure on the backend of the actual CMDB we have. It's in CA Service Desk. We also have a SQL feed that I know has the mapping of node to application.
  • Thanks for the confirmation and suggestion on the custom property.
  • I know this is an old post, but I can't get the instructions to work for me. I applied the filter and determined that the account cannot click on and see the details of the groups they aren't supposed to see, but I cannot get it to not display them in the All Groups resource.
  • Thank you. Just what I was looking for.
  • That is what I thought. More frequent collections is not feasible to me. I even backed down the collections to 24 hours, so I only get 1 a day. I guess where I'm getting confused is how VMAN knew about the move shortly after it happened, but then it updated the Map to show that it had been on that host for the past 9 hours.
  • Who do I contact regarding a missing item from my shipment? According to the status via Thwack, the order hasn't shipped yet. However, I received part of the order already. The dice was not included.
  • I utilized my test server since I am likely the only person using it. - I exported the report from Prod and Imported to Test - View the report - With the results still on the screen, click the details of the Hubble - Scroll down and the query is near the bottom - I verified I was getting the correct by looking at the…
  • Thank you. I had previously looked for ways to get this data and gave up. Started my search again this morning due to some management needs. This saved me a lot of work.
  • Looking forward to seeing many of these new features.
  • Still having problems. Below are the links that I liked / read. These are different ones than I did the first and second time around. https://thwack.solarwinds.com/thread/103398…
  • I can't seem to get all of the tasks completed. I am missing two according to the progress tracker, but I have completed them multiple times in an effort to complete it.
  • In general, you would need to do the following. - Build a dynamic group to key on your DHCP servers. - Assign the group to the template By doing this, everytime you add in a new node, it will automatically be assigned to the group, therefore automatically applying the template. I am unaware of how to key on just the fact…
  • I've questioned Tech Support with the same question. The only answer that I have been able to get is to do a network discovery and import them in. If you have a list of servers, you can "discover" the servers. Other options include using the network address. I have opened a feature request to make it easier to manage nodes.
  • What are you trying to build by using the Top 10s? If you are just wanting a report or resource, you can build one by using a custom table. It will not be in the same format as the current top 10 resources, but it will get the job done. You can configure the table to look like the following. The SWQL code behind it is as…