tomas.mrkvicka

Comments

  • Hi, go to Manage Groups. Select group which you want to have as parent group (select it via check box) and simply add new group via "Add new group" button. You should see information text similar to "Group will be created in group ...".
  • Hi, if you have NPM 10.2 or higher you should check table SyLogNodes. SELECT * FROM SysLogNodes It contains list of all NodeIDs for SysLog. For more information about given node you can join it with Nodes table like this: SELECT Nodes.IP_Address, Nodes.Caption FROM SysLogNodes AS SLNODES INNER JOIN Nodes AS NODES ON…
  • Hi, could you please send that query (or at least part of it)?
  • Hi, there is no limit from our side but too many custom properties can hurt performance. Also there can be limit from side of SQL Server - limit is based on number of columns in table. Anyway what you are describing seems to be weird. I would recommend you to create support ticket and provide diagnostics for your issue.…
  • Hi, do you have allowed TCP/IP client protocol for that instance? Btw. in this protocol you have to specify allowed IP addresses for listening.
  • Hi, just to clarify - you want to create custom property on Node element where only limited range of values will be valid, is it correct? I am afraid nothing like this is possible (or I don't know about it). There would probably be some workaround for this via database constraints on given column, but no support from UI.
  • Hi, I don't think there is some "official" solution. But it would be probably possible via modification of stored procedure which is responsible for deleting SysLog records. But as I said it is unofficial solution, so after upgrade to new version you modification will be replaced by original stored procedure etc.
  • If you want every virS* under TX you should use combined condition: Caption starts with "virS" and City equals to "TX" For *ML* under CA you should use: Caption contains "ML" and City equals to "CA"
  • It is IP address converted into GUID. For IPv4 addresses only first 4 bytes are used. IPv6 use simple algorithm how to convert it to GUID. Our plan is to use it internally for some operations like joins bettween tables based on IP address. It is because joins based on GUIDs are much more faster than joins based on strings.
  • Btw. there is also possibility to add new groups via Orion SDK, there are support verbs for it, so if you are familiar with basic scripting you could do also this way.
  • Hi, even it is possible to add groups directly via database you should be aware that such solution is not officially supported. You should focus on table Containers and ContainerMemberDefinitions. Best way how to do that is to create one group via web, then look at its definition in datbase and according to it write script…