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 - ChrisC

#16
General Support / Status Dashboard Like "Port View"?
October 10, 2021, 12:03:40 AM
I would like to graphically show the status of DCIs I am mapping as colours depending on their value.
For example, I have a PDU that reports its status of "on" or "off" in a separate SNMP OID for each socket.
I would like to be able to show this as coloured items like the "Port View" or "Status Indicator" Dashboard Elements (eg. Red for "off" and Green for "on"). Is this possible?
#17
General Support / Re: Table / List of Software updates
October 09, 2021, 11:03:46 PM
Thanks.
The reporting server might do what I want, but in the docs it says "...Unpack netxms-reporting-server-2.0-M2.zip into some folder...." but I can't see anything named similarly, and the download page doesn't mention it at all  :(
Has anyone set this up?
#18
General Support / Re: Table / List of Software updates
October 05, 2021, 03:43:39 PM
thanks @gdodd, but I mean save the original filter so I don't have remember how to do it and I can just click on it within NetXMS any time I need it.
#19
I've logged a support request with VMware, so I'll see what they say from their side :)
#20
Feature Requests / Documentation Changes
September 30, 2021, 04:21:29 PM
https://www.netxms.org/documentation/adminguide/service-monitoring.html - It mentions a menu item called "Create Network Service...", but I can't find this on any menus on Version 3.9.280.

In both
https://wiki.netxms.org/index.php?title=Agent_Configuration_File&mobileaction=toggle_view_mobile
and
https://www.netxms.org/documentation/adminguide/appendix.html?highlight=enablearbitrarycommandexecution
it would be good for some examples to be included for Action and ActionShellExec.
It says "See the Agent Configuration section for detailed description of this parameter.", but there's no link, and I can't find what the syntax should be, and how to escape quotes etc.
Also, on the same page, are parameters DisabeIPv4 and DisabeIPv6 typos?

Thanks!

Chris
#21

2021.09.28 14:56:12.854 *D* [ncd.msteams        ] Prepared request: { "text":"NetXMS: [Normal] xxxxxx: Node up 28.Sep.2021 14:56:12\n\nNormal] xxxxxx: Node up" }
2021.09.28 14:56:13.099 *D* [ncd.msteams        ] Got 162 bytes
2021.09.28 14:56:13.099 *D* [ncd.msteams        ] Error response from webhook: <html>^M
<head><title>301 Moved Permanently</title></head>^M
<body>^M
<center><h1>301 Moved Permanently</h1></center>^M
<hr><center>nginx</center>^M
</body>^M
</html>^M


Anyone know what that means? That normally means a redirect will happen. Is this normal behaviour?
Sorry, I've not used webhooks before....
#22
General Support / Re: Table / List of Software updates
September 28, 2021, 04:39:26 PM
Something like the attached would do if I could save it somehow....
#23
General Support / Table / List of Software updates
September 28, 2021, 01:38:06 PM
I like the "Generate alarm on software package changes".
Is there a way of just listing all these in a dashboard / table easily?

Thanks,

Chris
#24
Feature Requests / Re: Node Properties from Object Details
September 26, 2021, 06:46:45 PM
+1
#25
HP Color LaserJet Supply levels and page counts.

Note, this should also work for mono Lasers, but you might have to delete some DCIs.
I took the values from my HP Color LaserJet M254dw

The next thing to add to this would be to get the graphs to automatically display the right legend for each toner cartridge.
I tried to follow https://www.netxms.org/forum/general-support/is-it-possible-to-use-text-from-another-snmp-attribute-for-the-legend-on-graphs/msg30369/#msg30369, but still don't understand it :(

Let me know if you can think of any improvements as this is my first successful attempt :)
#26
Thanks, it was the "\" causing the problems.
Once I found the contents of println $node->snmpOID; for the node and use that, it applied with out problems.
Using "like" will also help for other templates I am trying to make.
#27
I have just installed the Android Client, and it has successfully logged in, however I can't display any of the dashboards, even quite simple ones.
For example, see the two attached screenshots, one from the Linux client, and one from Android.

Note in the Android screenshot, there are 3 horizontal bars, which are probably the separator between the 3 graphs.
Other than that, nothing is displayed.

I am running this on Android 10 on a Fairphone 3.
Both the Android device and the NetXMS server are in the same subnet.

Thanks,

Chris
#28
That's great news Victor!
Thank you for the detailled explanation and the quick reply.

Hopefully you will be happy to know we are in the process of buying support from you :)
#29
I have followed the instructions here: https://www.netxms.org/documentation/adminguide/event-processing.html#drivers and set up a webhook in Teams, but I've just noticed the it saying "Driver Error", which isn't very helpful. How can I troubleshoot this?
So far I have not received any mesages into Teams.
I've searched for "teams" in /var/log/netxmsd, but only found the following:

2021.09.21 10:20:35.175 *I* [ncd.msteams        ] Microsoft Teams driver instantiated

I have the following in my Driver Configuration:
ThemeColor=FF6A00
UseMessageCards = false

[Channels]
Channel=https://xxxx.webhook.office.com/webhookb2/xxxxx

Attached is a picture of the error and of my notification action
#30
I have added the following (just in case I need to add more IPs) to Hook::AcceptNewNode and it is working.


switch ($ipAddr)
{
case "1.2.3.4":
return false;
default:
return true;
}


Thanks!