News:

We really need your input in this questionnaire

Main Menu
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 - Tatjana Dubrovica

#181
Can you specify which field or fields are not updated.
#182
OS names can be checked in "Object Details" view on "Overview" tab. It is shown like "Platform Name". For filtering can be used Java regexp.
#183
I found problem. It's bad class declaration. You want function "public ColumnFilter(int type, long value)" to be used, but both values are counted like long and class is created like: "public ColumnFilter(long rangeFrom, long rangeTo)". So your values were counted like a range. Type should be change to Enum type. I have created bug on it: https://dev.raden.solutions/issues/1245.
Temporary solution:
import java.lang.Integer
eventLog = session.openServerLog("EventLog")

columnFilter = ColumnFilter(java.lang.Integer(ColumnFilter.EQUALS),363)
logFilter = LogFilter()
logFilter.setColumnFilter("event_id",columnFilter)
...
#184
There is server configuration parameter that defines what to do with events of deleted object: "DeleteEventsOfDeletedObject". By default it is 1(delete them). In case if it is set to 0, then events are not deleted, but you can't find them by node name(as this node is already deleted). You can find them by object id of deleted object. As event source will be displayed object id in square braces(like this: "[100]").

Please check DeleteEventsOfDeletedObject server configuration parameter.
#185
The name is "event_source". UI is hiding column real names. You should use names that are defined in database.
#186
Optimal log level for debugging problems is 6.
#187
Check "LogFile" parameter in server config(NETXMSHOME/etc/netxmsd.conf or /etc/netxmsd.conf). If it is not defined try to check something like /var/log/netxmsd.
#188
Check your server log on debug level 4. There should be something like: "LOG QUERY: %s"
#189
There are names: "AlarmLog", "AuditLog", "EventLog", "SnmpTrapLog", "syslog".
final Log handle = session.openServerLog("EventLog");

If you need exactly summary e-mails, then it can be good solution. Other solutions is to generate alarms and check alarms in the morning.
#190
Чтобы в лог писались сообщения "Connection from 10.5.0.112 rejected" DebugLevel должен быть 5 или выше. А у вас он 0: "Debug level set to 0". Уровень дебага можно выставить при запуске демона параметром -D5(уровень дебага)  или параметром в конфиге: DebugLevel=5
#191
Проверять следующее:
- Сервер не может подключиться к агенту(данные о фозможностях агента сервер получает во время Configuration poll)

Проверить:
- Агент запущен
- У агента в конфиге прописан IP сервера
- Проверить лог агента на строчки вроде: "Connection from 10.5.0.112 rejected"
- Проверить Firewall
#192
To check versions you can run excutables with "-v" option: "netxmsd -v" and "nxagentd -v" it will return the version. "nxdbmgr upgrade" will aknowlage if there were some errors while upgrade and netxmsd just will not start if database upgrade failed.
#193
Are you sure you are using 2.0.2 console? File upload dialog have changed starting from 2.0-RC2 version. In 2.0.2 console it should look like in attachment. Please verify you server and console versions.

Try to reinstall console
#194
It was not possible for me to reproduce. Maybe you can provide more information about input information. Screenshot or description of each field(filename, destinations, on hold flag and schedule fields).
#195
Which exactly upload does not work: local file to server, from server to agent or local file to agent?
What type of console do you use: web or desktop?