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

Topics - 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 / 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
#4
Hi all,

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

thx...
#5
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.
#6
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.
#7
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.

#8
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.
#9
General Support / Forcing/Manipulate Node's Status
December 16, 2015, 06:14:41 AM
Hi,

can netxms forcing/manipulate node's status?

i tried using dummy node (IP = 0.0.0.0) which has unknown status as default. then i made a forcing 0 return value on "Status" in transformation, the DCI value for status is 0, but the icon for node always has "?" and "unknown" status still shown in object detail.

is there a proper way to force/manipulate the node's status?

thx.