PavelSrot

Comments

  • Can you rewrite this query like this: select SysName, AgentIP, ResponseError, LoginStatus, SNMPStatus from Nodes where (LoginStatus NOT LIKE '%OK' OR ResponseError not like 'OK'), because when you state name of database in old VB6 application it doesn't work.
  • Admin section -> Customize Menu Bars -> Edit for Admin menu bar see bellow. You can fix if here: http://localhost/Orion/Admin/EditMenuBar.aspx?Menu=Admin and invoke edit dialog via Edit button over Report in Selected items section and in edit dialog you can change it.
  • And what about other browsers e.g Firefox? Have same issue or not?
  • Sometime can happen from any unexpected reason that not all Orion services started after rebooting Windows or upgrade. If you encounter with this issue I would suggest launch Orion Service Manager application (Start -> SolarWinds Orion -> Advanced Features) and try to click on Start Everything or sometimes is needed to…
  • Generaly if you want to monitor data via WMI you will need valid credentials for remote device you want to monitor.
  • It is Chrome bug. Here: http://code.google.com/p/chromium/issues/detail?id=103618 you can let know more about it why it happens and here http://greenbytes.de/tech/tc2231/#attwithtokfncommanq you can find some tests related to Content-Disposition headers. Work around what I found is first of all backup your…
  • Anyway changing IP address after autentication is security issue and can be reason why server tell you that you are not authenticated.
  • You also need to increate timeout of authentication ticket. Here is example how it can look. <authentication mode="Forms"> <forms oginUrl="~/Orion/Login.aspx" timeout="60"/> </authentication>
  • In the case, that you using load balancing server you will need to correctly set validationKey and encryptionKey in web.config file. Here how to generate validationKey and decryption Key for web.config « Er. alokpandey's Blog is explanation how to achieve this one. For own generating key you can for example use following…
  • What I know UDT (User device tracker) can collect information on which device which user is currently log in see: Network User Tracking | User Device Tracker | SolarWinds But I'm afraid, that in tooltip this information now is not present and currently doesn't exist any way how to add it into tooltip.
  • Hi, Can you post your query which will never end in Orion Report Writer to be able look at it?
  • You should go to web.config placed in c:\inetpub\SolarWinds\ folder. In this file you need to find this: <add key="HubbleProfilerActive" value="true" /> and then change value true to false. Also check if key HubbleActive in web.config file is also setted to false.
  • Hi, What about try following sql query which you will enter in Orion Report Writer on the tab SQL when you will create Advanced SQL report. Here is query: SELECT E.NetObjectID, E.[EventTime], N.Caption ,E.[EventType] FROM [dbo].[Events] E INNER JOIN [dbo].[EventTypes] ET ON [ET].[EventType]=[E].[EventType] INNER JOIN…
  • Does it happens when you use link on Orion page to do export to pdf or when you using Report Scheduler? Maybe it would be worth to open support ticket and provide diagnostics (with Website log level via LogAdjuster changed to Debug).
  • If you need it you can wrote own aspx page which will be able to do it. Here is my example of code how it can look like: page: NodeDetailsByIPAddress.aspx <%@ Page Title="" Language="C#" MasterPageFile="~/Orion/OrionMasterPage.master" AutoEventWireup="true" %> <%@ Import Namespace="SolarWinds.Orion.Common" %> <%@ Import…
  • For example on group detail page you can by using Customize add Custom Query resource and via Edit on this resource you into Custom SVQL Query field enter following query: SELECT i.Caption AS [Interface Name] FROM Orion.Groups g INNER JOIN Orion.Nodes n on g.Members.MemberUri = n.Uri INNER JOIN Orion.NPM.Interfaces i on…
  • I'm affraid, that initial purpose of SubView was better organize resources for same NetObjectId, therefore wasn't taken into account case what you described. Clone operation now really roughly copy all properties of given resource.
  • And if you try SQL Server Management Studio from Microsoft do you see the server in the list? If no I would suggest go to Sql Server Configuration Manager -> SQL Server Network Configuration and check settings (e.g TCP/IP).
  • I would suggest to look at the scheduled discovery. Start from here: Orion/Discovery/Default.aspx and on the last step of discovery (Discovery Scheduling tab) select frequency for example Custom where you enter how often to automatically execute discovery.
  • Hi, Can you try to place into file c:\Program Files (x86)\SolarWinds\Orion\SolarWinds.Orion.Core.BusinessLayer.dll.config following configuration into element <configuration>: <system.net> <defaultProxy enabled="true"> <proxy usesystemdefault="true" bypassonlocal="true" /> </defaultProxy> </system.net> And restart…
  • What I know unfortunately now isn't simple way how in the case of interactive graphs customize color. You can do it only in inetpub\SolarWinds\Orion\Charts\js\Charts.Colors.js, but I wouldn't recomend to do it, because in the case that you do some mistake if you will edit this file, interractive charts could stop working.
  • Good article. Only you forget in the case, that you wan't manually move Orion Website only to use https you need perform following SQL Query UPDATE dbo.Websites SET SSLEnabled=1 WHERE WebsiteID=1 as described here: http://www.solarwinds.com/documentation/Orion/docs/OrionNPMAdministratorGuide.pdf on page 23.
  • Did you try something like that: Profile.UserName This should give you name of currently logged user. If you need to store settings which will vary by login user, most easier way should be this: Resource.Properties["yourSettingName" + "|" + Profile.UserName;
  • Here is example how to perform this one in ReportScheduler. Example give you only list of NodeID and this you can join with other tables. You can use it in report writer SET NOCOUNT ON; CREATE TABLE #tmpResponseTime ( [NodeID] int, [DateTimeS] datetime, [DateTimeE] datetime, [Availability] int --[ChangeType] int - 0 from…
  • For ReportWriter data are retrieving by this way: Select CONVERT(DateTime, LTRIM(MONTH(DateTime)) + '/01/' + LTRIM(YEAR(DateTime)), 101) AS SummaryMonth, Nodes.NodeID AS NodeID, Interfaces.InterfaceID AS InterfaceID, Nodes.Caption AS NodeName, Nodes.VendorIcon AS Vendor_Icon, Interfaces.Caption AS Interface_Caption,…
  • Can you provide to us more info (e.g. screenshot) on which resource and view it happens? And we can look into source code in order to find out why it can happen.
  • What happens me is to to create new side directory via Internet Information Service Manager, which will run over http protocol, where you could place script e.g. Default.aspx and in this script have redirection to your https page url. And when user enter just server name script will care about correct redirecting.
  • If you can update to never version than 10.2 I would suggest to do it. We into 10.3 did some optimalizations related to list resources when you display lot of interfaces (order about 1000).
  • I'm afraid, that you will not be able to display 24h clock when you will use English language locale, because English culture doesn't use 24h clock format. Intention was to display hour format by culture specific habit, therefore in de-DE you see 24h clock format.
  • Try to go on Node detail page for given node and on Summary tab you will se Management resource and there is button Remanage.