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

#1
General Support / Re: reporting feature
February 25, 2011, 07:40:13 PM
and is there at least a way to export a DCI ? in order to load in a third party application which generates reports.
thanks for your help
sebastien
#2
General Support / reporting feature
February 25, 2011, 10:58:53 AM
Hello
Is it possible to generate reports automatically with data collection value ? Or export them automatically. Netxms monitor the datacollection item but each time i want to see what is going on i need to open netxms, what i would really like is a system that make a report and send the valuable DCI by email.


miniseb
#3
General Support / Re: script a wmi query
February 14, 2011, 03:40:55 PM
wow
thanks a milion
it helps me a lot.
miniseb
#4
General Support / Re: script a wmi query
February 08, 2011, 03:00:16 PM
hello

any body have an idea?
miniseb
#5
General Support / Re: script a wmi query
January 27, 2011, 10:08:20 AM
I am struggling to make that working:

I created a vbscript :
   Dim test
   test = 10
   WScript.Echo test

I insert the following lines in nxagentd.conf :
ExternalParameter = MyParameter:c:\windows\system32\cscript.exe //B //Nologo "c:\MyScript\myscript.vbs"

In the data collection, a new item is shown named "MyParameter". I select it so i see MyParameter in my data collection. The value of this data collection never updates.
thanks for your help
miniseb
#6
General Support / script a wmi query
January 03, 2011, 01:32:46 PM
i would like to monitor what is going on in my IIS server in term of memory.

IIS works with different worker process each of them is linked to an application pool. I found on the internet how to query the counter i want with a WMI query.
The problem is that i dont have only one WMI query to get what i want :

         
   select VirtualBytes, PrivateBytes from Win32_PerfFormattedData_PerfProc_Process where IDProcess = XX
      => this query allows to get the virtual bytes and the private bytes
   the problem is i can not identify the process so i need another query to do that
      
   select ProcessId from Win32_Process where commandline like "%myApplicationPoolName%"
      => this query allows to identify the application pool and get the pid
      
As the WMI query does not enable to make a inner join, the only way is to program that in VBScript or in other programming language.
Is it possible with NetXMS launch a script periodically and get the result to trace in a graph ?
or maybe there is a different way to get what i want ?