We use Zabbix through Caché's SNMP protocol. Monitoring five instances of Caché on different servers successfully.
- Log in to post comments
We use Zabbix through Caché's SNMP protocol. Monitoring five instances of Caché on different servers successfully.
Thank you Eduard. That's what I was looking for. I also found the method that exports and imports the settings:
do ##class(%SYS.Portal.Resources).Export("CustomPortalResourcesExport.xml")
do ##class(%SYS.Portal.Resources).Import("CustomPortalResourcesExport.xml")
If it is when you add Group By, it can be:
Nice! I was looking for something like that.
Thanks Eduard
I tried this method. But it seems that it returns from the current process, not from the referenced process.
%SYS>s p1 = ##class(%SYS.ProcessQuery).Open("P3276") w p1.GetCPUTime()
63,47
%SYS>s p2 = ##class(%SYS.ProcessQuery).Open("P7796") w p2.GetCPUTime()
63,47
%SYS>w ##class(%SYS.ProcessQuery).GetCPUTime()
63,47%SYS>s p1 = ##class(%SYS.ProcessQuery).Open("P3276") w p1.GetCPUTime()
63,47
%SYS>s p2 = ##class(%SYS.ProcessQuery).Open("P7796") w p2.GetCPUTime()
78,47
%SYS>w ##class(%SYS.ProcessQuery).GetCPUTime()
78,47%SYS>s p1 = ##class(%SYS.ProcessQuery).Open("P3276") w p1.GetCPUTime()
78,47
%SYS>s p2 = ##class(%SYS.ProcessQuery).Open("P7796") w p2.GetCPUTime()
78,47
%SYS>w ##class(%SYS.ProcessQuery).GetCPUTime()
78,47
So, I enabled the Network Activities view (In the Atelier: Window> Show View> Other> Atelier> Network Activities) and performed the project compilation.
I noticed that when the 'Failed to read' error occurs in the Network Activities view it displays a TimeOut error in this request:
This compilation, by terminal, lasts 10 minutes or more. I'm doing some testing to see if compile time is related. Because in namespace with few classes this does not happen, when I create an Atelier project of these.
Does your project last this build time by terminal?
Cool, I learned using ZNSPACE (in the 2008 version) to change between namespaces in the routines. Looking at the documentation actually recommends the 'set $namespace = ... '. Caché always surprising ...
http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=RCOS_cznspace
Thank you for helping Eduard Lebedyuk.
Lucas Scarduelli and I followed that idea. Just by contributing, we developed the following method:
Completing Lucas Scarduelli's answer. The solution we found was to change the accent characters (ex: á, é, í, ó, ú, ç ..) by entity characters (https://developer.mozilla.org/en-US/docs/Glossary/Entity).
We did a test creating an HTML file with no accented character and imported it without error.
Thanks Vitaliy Serdtsev, now I understand where the values are stored. With that I know the limitations in obtaining this data.
Yes, I have also tried this method (It is used in the CURRENT^%IS routine). But it does not return the changed size. Here it returns fixed 80 for column , even changed to 132.