Question Parikshit Mayekar · Nov 21, 2023

How to compile the my.metrics class through CLI in the Linux VM?

This question originally appeared in the comments of the post: Making Prometheus Monitoring for InterSystems IRIS and Caché
 

I am new to IRIS, I was setting up the monitoring referring to the above documentation. Please can you help me how can I compile the my.metrics class mentioned in the documentation through CLI in the Linux VM where I am not having studio setup. Could you help me please?

Comments

Julius Kavay · Nov 21, 2023

Take a look on %SYSTEM.OBJ class

do$system.OBJ.Compile("your.classname")
// or to compile a whole packagedo$system.OBJ.CompilePackage("your.package")
0