Hello,
Is it possible to disable All System Resource Monitoring permanently even when added to OEM a new container?
In the documentation I have seen the chapter Disabling an individual resource monitor, but this is not what is needed in my case.
Regards,
Valeriy
You would need to wait for 11.6 for that I am afraid.
proenv>cat disable_cpus.sh
for i in `$DLC/bin/fathom -user admin -password progress -restype system -reslist | grep CPU | awk '{print $2}'`
do
$DLC/bin/fathom -user admin -password progress -disable $i
done
proenv>./disable_cpus.sh
OpenEdge Release 11.5.1 as of Wed May 6 18:21:44 EDT 2015
The following resource has been disabled. Resource: CPU
OpenEdge Release 11.5.1 as of Wed May 6 18:21:44 EDT 2015
The following resource has been disabled. Resource: CPU-cpu0
OpenEdge Release 11.5.1 as of Wed May 6 18:21:44 EDT 2015
The resource was already disabled. Resource: CPU-cpu1
Hello,
Is it possible to disable All System Resource Monitoring permanently even when added to OEM a new container?
In the documentation I have seen the chapter Disabling an individual resource monitor, but this is not what is needed in my case.
Regards,
Valeriy
Flag this post as spam/abuse.
[quote user="sgabbeta"]
[/quote]
Hi Sharath,
But it is not logical.
For example, I have a server with a 128 CPU, I will "die" until I disable each individually. Let's say I did it in the end.
And then I was given one more server with CPU 128 to be connected to the OEM as a container ....
Maybe is somehow possible to disable, for example, the monitoring plan for all CPU? Or is there some kind of decision yet?
I have replied to this but alas again the email parser did not deem my post worth parsing for the MNth time.
> For example, I have a server with a 128 CPU,
1) change it on 1 CPU
2) go to options - resource property distribution and bulk copy this to the rest of 127 CPUs
> the monitoring plan for all CPU?
options - resource monitoring details
Hi Libor,
>>1) change it on 1 CPU
>>2) go to options - resource property distribution and bulk copy this to the rest of 127 CPUs
This sounds more interesting )
I tried it on my desktop first.
I disable CPU-0 then go to Distribute Resource Properties
It is OpenEdge 11.5.1 Win 64.
> What I do wrong?
Nothing. The tool for whatever reason in its wisdom won't redistribute the properties for a 'disabled' resource. I will log a bug for that.
option 1) set poll interval to something like 365 days and then redistribute it
option 2) do / run something like this
fathom -user admin -password progress -restype system -reslist | grep CPU | awk '{print $2}'
it will give you a list of CPU resources (feel free to fine tune the grep)
then either output it to a file or in for i in `` loop
and parse the output
fathom -user admin -password progress -disable $i
where $i is the list of the CPUs
eg
proenv>fathom -user admin -password progress -disable localhost:resource.system.cpu.CPU-cpu1
OpenEdge Release 11.5.1 as of Wed May 6 18:21:44 EDT 2015
The following resource has been disabled. Resource: CPU-cpu1
proenv>cat disable_cpus.sh
for i in `$DLC/bin/fathom -user admin -password progress -restype system -reslist | grep CPU | awk '{print $2}'`
do
$DLC/bin/fathom -user admin -password progress -disable $i
done
proenv>./disable_cpus.sh
OpenEdge Release 11.5.1 as of Wed May 6 18:21:44 EDT 2015
The following resource has been disabled. Resource: CPU
OpenEdge Release 11.5.1 as of Wed May 6 18:21:44 EDT 2015
The following resource has been disabled. Resource: CPU-cpu0
OpenEdge Release 11.5.1 as of Wed May 6 18:21:44 EDT 2015
The resource was already disabled. Resource: CPU-cpu1
You would need to wait for 11.6 for that I am afraid.
Ок. Thank you very much again!
As Libor said, This feature(disabling LogFileNameChanged alert) will be available in 11.6 by enabling “Suppress name change alert” option for that particular resource.
Thanks,
Satya