Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Victor Kirhenshtein

#2581
It was not intentional. I'll check it.

Best regards,
Victor
#2582
Hi!

try to check server debug log after import attempt - it should have additional information. Alternatively, post your template here - I'll check what's wrong with it.

Best regards,
Victor
#2583
Ну собственно так и есть - устройство сообщает что у него только 2 bridge порта (индексы интерфейсов 10101 и 10102). Это баг в SNMP агенте на устройстве.
#2584
You can read it from interface object (you can find one using GetInterfaceObject function), or directly from device via SNMP or agent (there are functions for direct SNMP or agent access).

Best regards,
Victor
#2585
Hi,

ifTable is different from many other SNMP tables because it actually returns value of index column. I suppose that table in question do not do that - you can check it by doing SNMP walk on .1.3.6.1.2.1.10.21.1.3.1.1.1. Try to choose any data column as base OID. When building table NetXMS will just scan all indexes using provided base OID and then retrieve values for each column using those indexes.

Best regards,
Victor
#2586
Hi,

startup scripts for various platforms can be found in source tree: http://git.netxms.org/public/netxms.git/tree/HEAD:/contrib/startup?js=1

Best regards,
Victor
#2587
Похоже что SNMP агент на устройстве дает неполную или некорректную информацию по портам. Пришлите пожалуйста результат SNMP walk по OID'ам .1.3.6.1.2.1.17.1.4.1 и .1.3.6.1.2.1.17.4.3.1.
#2588
Hi,

there is agent management chapter in admin guide: https://www.netxms.org/documentation/adminguide/agent-management.html

Best regards,
Victor
#2589
General Support / Re: Deleting files script
April 22, 2016, 11:19:37 AM
Hi,

I'm suppose ~ in ~\Downloads\ refers to home directory of the user - but if you run agent as a service it by default runs under local system account, so ~ points to completely different place.

Best regards,
Victor
#2590
General Support / Re: SNMP Table Thresholds
April 22, 2016, 09:37:30 AM
Hi,

currently it's not possible. In fact tabular data support needs major improvements in NetXMS - we have plans to improve it at some point.

Best regards,
Victor
#2591
Т.е. в правиле несколько действий - terminate alarm плюс рассылка, и подавлять надо именно остальные действия.
#2592
Скриншот в аттаче, но я поторопился - bridge port number там не показан. Попробуйте запустить такой скрипт (через execute server script на ноде):


foreach(i : GetNodeInterfaces($node))
{
println i->name . " ifIndex=" . i->ifIndex . " bridgePortNumber=" . i->bridgePortNumber;
}


и прислать результат.
#2593
General Support / Re: DCI timestamp delay
April 21, 2016, 04:49:53 PM
Hi,

you can pass desired timestamp to nxpush using -t or -T option. For example, to pass current timestamp on UNIX system, you can do it like this:

/opt/netxms/bin/nxpush -u admin -t `date +%s` 127.0.0.1 hp8570w:PushTest=1

Best regards,
Victor
#2594
Hi,

currently it's not possible (but we can add that in the future). As a workaround, you can use "execute server script" option for node or container. It requires more mouse clicks but still allows you to run scripts on node.

Best regards,
Victor
#2595
Maybe using script DCIs will be better solution in your case. You can create script in a library which will be called by data collector, and that script will have access to all attributes of a node and can read appropriate data from agent or SNMP using AgentReadParameter or SNMPGetValue functions.

Best regards,
Victor