Comments
-
hello, i need same feature. i need to know "how much traffic is going over a VLAN per Interface?". i am service provider and my IXP need specific VLAN traffic and i have no measurement tools.
-
1. Create a new folder in the E: drive. 2. Review the folder permissions and add Windows "LOCALSYSTEM" with full access. 3. Place the PowerShell script in the folder. The result remained the same.
-
@"chad.every" thanks for your update. I’m so excited about all these new features!
-
Changing "display transformations" doesn't help at all.
-
I also tried using `-computername`. It does not work if the remote host is running Linux.
-
thanks, but replacing write-output with write-host does not change situation.
-
yes, my TEMP.ps1 retune result as shown below
-
according to "PowerShell remoting over SSH" -hostname is used for connecting from windows or linux to remote linux machine. i try you advice,my script "e:\script\temp.sp1" that should be run under ps7. here is my code. Set-StrictMode -version latest $server= "my_server" $username = "ubuntu" $sshkey =…
-
PS5.1 does not support "new-pssession -hostname" command, would you please guide me how tel PS5.1 run my script by PS7 ?
-
I attempted to write a PowerShell script to monitor my remote Linux machine, but unfortunately, my script using "New-PSSession -Hostname" which does not function with SolarWinds SAM monitoring because it defaults to PowerShell 5.1. I have not found a way to execute my script, and SolarWinds does not provide an option to…
-
thanks @"bucweat" data with timestamp are saved on "Orion.APM.DynamicEvidenceChart". thats awesome
-
sorry, here is my SWQL code SELECT [table].ComponentName ,[table].ComponentMessage ,[table].MultiValueStatistics FROM Orion.APM.ComponentAlert AS [table] -- find component ID from Orion.APM.CurrentStatistics table WHERE [table].ApplicationID = 35
-
hi You can also check this SAM module then develop a dynamic dashboard that monitors the proximity of certificate expiration dates. you can also check this topic
-
nice job @"HerrDoktor" i love your mindset
-
there are very little resource about modern dashboard customization in the web. if any would you please share the links?
-
it works with modern dashboard.
-
so it works on classic dashboard. thanks
-
still the same issue
-
in query result only path of icon are shown
-
now i understand that IPAM module is semi-independent from NPM. the scenario we reviewed is a valid case at least for me. according to this test, IPAM conflict detection method will not compare ARP table of two UDT or SNMP neighbor devices as well, right ?
-
so as we know, SOLARWINDS knows that one IP address is assign to more than one MAC address (when i add nodes via SNMP, the information about NIC and MAC is already in DB).but there is no SNMP vs SNMP.. so can i ask for this feature be add in future IPAM release?
-
i add new SNMP community to IPAM polling via solarwinds.setting\IPAM setting\SNMP credential. scan the range manually and the information has been fetch. both linux node has the same SNMP credential.
-
this is IP address details for 172.16.144.222
-
@donrobert5 so one way to detect IP conflict is the VMs or devices must be add via SNMP to solarwind. i try to test this scenario. i add two linux node each with two NIC to solarwinds by SNMP. solarwinds detect NIC names IP and MAC addresses. as shown in below. i wait 1h for sure. no warning or event generate. i manually…
-
i will try my custom script and let you know if any problem
-
i could not find any useful documentation or guide for customizing agent configuration to run my script on remore machine and return the data.
-
thanks @"KMSigma.SWI" that's work fine
-
this is main query SELECT TOP 30 NodeID, ComponentStatisticData FROM Orion.APM.CurrentStatistics where ComponentStatisticData < 70; the nodeID 146 is not valid and i did not put it to certificate template as saild.
-
here is the code for joining two table SELECT top 30 Caption as Node_name, ComponentStatisticData as expire_in, IpAddress as IP_Address FROM Orion.Nodes AS [nodes] INNER JOIN Orion.APM.CurrentStatistics AS [cert] ON [cert].NodeID = [nodes].NodeID where [cert].ComponentStatisticData < 30
-
node ID is common on both table