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

#1
hi,

i'm testing querying object status on database (mysql) with grafana. so i can put some dashboard on grafana. but seems the object status on the database isn't valid. i had already test it with 2 netxms server. do you know how i can read object status from database? what am i missing?

thx.


on console (valid):


on grafana query (not valid):


mysql query:

Quoteselect
   o.name,
   net.service_type,
   node.name as `node`,
   case
      when poller.name is null then "default (netxms server)"
      else poller.name
   end as `poller`,
   ip_port as `tcp port`,
   o.`status` as c
from object_properties o
   inner join network_services net on o.object_id = net.id
   inner join object_properties node on net.node_id = node.object_id
   left join object_properties poller on net.poller_node_id = poller.object_id
where
  o.`status` <> 6

#2
General Support / how to alert container status?
August 05, 2017, 04:55:20 PM
All,

did anyone know how to alert container status?
it will be great.

thx.
#3
General Support / Re: MIB collection
May 25, 2017, 07:34:24 AM
I found that observium collects most mibs, and it look very complete

you can also found at
https://github.com/pgmillon/observium/commits/master/mibs


riz
#4
General Support / updating dci's description
May 19, 2017, 06:30:46 AM
hi all,

do you know command/reference to update dci's description?

i tried something like:
$dci->description = "new desc";

not working.

i know for table's cell there are a way to update the value.
$1->set(row,col,"newvalue");

are there similiar ways?

thx in advance :D
#5
Hi all,

does any one know, how to get current object in script like using $node for getting current node?

thx...
#6
Hi All,

i'm kinda lost using ServiceCheck.HTTP or ServiceCheck.HTTPS :D
my goal is to check either the PC connection to a web?
for example, i try to check google.com web ServiceCheck.HTTP or ServiceCheck.HTTPS but i don't how to put the URI.
using ServiceCheck.Custom for checking the port is ok. but i want to know how to check the web itself. web like google.com doesn't have index.html so how i check a web page like this?

thx.
#7
General Support / Re: Container event processing
August 10, 2016, 12:36:24 PM
hi Victor,

can u show example dci script the read the status of a container?

thx.
#8
General Support / Container event processing
May 11, 2016, 11:11:11 AM
hi,

i want to process an event whenever the container's status is changed, but don't to how to feed that status to an event.
how do i make it possible?

thx.
#9
hi,

i use nxlog to convert windows event log become a syslog message. send to netxms and made syslog parsing into a netxms event.

thx
#10
Hi,

Netxms only can accept syslog udp message.

u need to convert windows event become a syslog message.

In my case I use nxlog agent to do the job. nxlog is great agent to convert many things regarding with any kind of log messages/files.



Rizky.
#11
I just need to know if it's possible or not?
or I should create a dci for port monitoring from the proxy instead using network service monitor?

I prefer it can be done by network service monitor through proxy, just cannot make it work.



thx.
#12
hi all,

is tcp network service monitor through agent proxy  workable?

I have node A as agent proxy. and node B which has tcp port that need to be monitored. in this case I try to monitor tcp port 4700 (netxms agent port itself ) in node B. ping, snmp, windows performance counter etc on node B successfully exposed through agent proxy. but the tcp 4700 network service monitor always down.

is there something that I missed to configure network service monitor through proxy?

thx.

#13
ok, thx victor for the confirmation.

i think i need to try experiment with the conditions more.
is there a tutorial for using conditions?

thx.

#14
Hi,

what i'm understanding container is only containing multiple nodes.CMIIW
can netxms' containers contain a mix of interfaces, network services, or and DCIs from multiple nodes?
for example container A contains:
- Node ABC
- DCI no 237 from Node X
- network service for TCP port check from Node Y
- Interfaces from Node Z

is it possible if we do some kind like that for the container?

thx.
#15
General Support / Re: Forcing/Manipulate Node's Status
December 17, 2015, 05:13:21 AM
Thanks victor,

this is what i want to test.

thanks!