go to post Mikhail Khomenko · Sep 12, 2022 Hi @Oliver Wilms I suppose you're using IRIS interoperability template (https://github.com/intersystems-community/iris-interoperability-template). Could you please elaborate which step you're getting an error on? As well as error text.
go to post Mikhail Khomenko · Nov 1, 2021 Hello Vic,Thank you for response!Unfortunately, this also doesn't work for me (uppercase GBL & no wildcard in exclusion): ^^data_dir>set list("Ens*.GBL,'Ens.MessageBodyD.GBL")="" ^^data_dir>write $SYSTEM.OBJ.Export(.list, "/tmp/globals.xml") Btw, I'm using IRIS 2020: IRIS for UNIX (Ubuntu Server LTS for x86-64 Containers) 2020.1 (Build 215U)
go to post Mikhail Khomenko · Nov 1, 2021 Thank you for response!But it looks like documentation should be updated in that case as it provides such an example -) You can also use ? or * wild cards and if you wish to exclude items pass ' before the item name which also supports wild card, e.g. "User.*.cls,'User.T*.cls".
go to post Mikhail Khomenko · Oct 27, 2021 @David Foard IKO is just a pod, and it runs IRIS pods, so it could be running in an existing cluster. I also think, it worth to use some kind of Network Policies in that case. Regarding IKO usage experience - don't have a such in production, but going to try it for async mirroring soon.
go to post Mikhail Khomenko · Feb 20, 2020 I'm not sure, but think that SAM-implementation is based on System Monitor (https://docs.intersystems.com/iris20194/csp/docbook/DocBook.UI.Page.cls?KEY=GCM_healthmon) in some fashion. Could you clarify your task? Do you want to know an exact name of Global where samples are stored? For what?Link you've shared describes how to expose your custom numeric metric that could be read by Prometheus, for instance, and then stored there.
go to post Mikhail Khomenko · Feb 20, 2020 Hi David,Thanks -) Regarding a meaning - it's taken from mgstat source-code (%SYS, routine mgstat.int).Starting point was a line 159 in my local Cache 2017.1: i maxeccon s estats=$p($system.ECP.GetProperty("ClientStats"),",",1,21),array($i(i))=+$system.ECP.NumClientConnections(),array($i(i))=$p(estats,",",2),array($i(i))=$p(estats,",",6),array($i(i))=$p(estats,",",7),array($i(i))=$p(estats,",",19),array($i(i))=$p(estats,",",20) Then I guessed a meaning from a subroutine "heading" (line 289). But the best option for you, I think, is to ask WRC. Support is very good.
go to post Mikhail Khomenko · Feb 19, 2020 Metrics in this approach are stored in Prometheus. As Prometheus is time-series database, you can store any numeric metric there either counter or gauge.