Hi, I think that you need the NodeCountEditor active (see https://github.com/apache/jackrabbit-oak/tree/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/counter ).
I see a "counter" index referenced, and indeed I have such an index in my AEM, with these 2 relevant properties: type=counter async=async ( https://jackrabbit.apache.org/oak/docs/query/indexing.html#index-definitions; it mentions that such an "counter" index should come ootb, but you might want to check your setup.) Jörg Am Do., 4. Sept. 2025 um 13:17 Uhr schrieb Raffaele Gambelli <raffaele.gambe...@cegeka.com.invalid>: > Thanks Jorg, > > I took a look at that code and I debugged it in my simple local > application, I think the issue in my scenario is caused by this method > > /** > * Get the count estimation. > * > * @param node the node > * @return the estimation (-1 if no estimation is available) > */ > public static long getCountSync(NodeState node) { > boolean hasCountProperty = false; > long added = 0; > long removed = 0; > for (PropertyState p : node.getProperties()) { > if (!p.getName().startsWith(COUNT_PROPERTY_PREFIX)) { > continue; > } > hasCountProperty = true; > long x = p.getValue(Type.LONG); > if (x > 0) { > added += x; > } else { > removed -= x; > } > } > if (!hasCountProperty) { > return -1; > } > return Math.max(added / 2, added - removed); > } > > where I understand that without a property starting with > COUNT_PROPERTY_PREFIX that estimation will not ever work, so the new > question is what kind of property is it and if an automatic way exists to > set it in my nodes. > > Thanks again > > Cordiali saluti / Best regards, > > Raffaele Gambelli > Application Architect > ________________________________ > From: Jörg Hoh <jhoh...@googlemail.com.INVALID> > Sent: Thursday, September 4, 2025 10:56 AM > To: oak-dev@jackrabbit.apache.org <oak-dev@jackrabbit.apache.org> > Subject: Re: Unable to get values from mbean "nodeCounter" > > Hi, > > it works for me, but I am using AEM ... I am not an expert in this area, > but looking at the code[1] it seems that it only reads existing data from > the repository. But if you use the existing Oak class, you should have that > editor already in place so that this data exists... > > Maybe Thomas Mueller can help here? > > > [1] > > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fapache%2Fjackrabbit-oak%2Fblob%2Ftrunk%2Foak-core%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fjackrabbit%2Foak%2Fplugins%2Findex%2Fcounter%2Fjmx%2FNodeCounter.java&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996663213%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=gMza30tdxkUH57VRwzP3P%2FFJ3wYah9fHD003C5OvVMs%3D&reserved=0 > < > https://github.com/apache/jackrabbit-oak/blob/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/counter/jmx/NodeCounter.java > > > > > > Am Mi., 3. Sept. 2025 um 16:00 Uhr schrieb Raffaele Gambelli > <raffaele.gambe...@cegeka.com.invalid>: > > > Hi Jörg, > > > > I'm using latest 1.84.0 and I do nothing special, I start my application > > where I configured Oak repository with mbean: > > > > MBeanServer mbs = ManagementFactory.getPlatformMBeanServer(); > > Oak oak = new Oak(ns).with(mbs); > > ... > > > > then open visualvm or jconsole, attach to local jvm, see all available > > mbean and then try to run the operations showed in mbean, now I was > > interested in experimenting with nodeCounter which has two operations: > > getEstimatedNodeCount retunring long and getEstimatedChildNodeCounts > which > > returns a String. > > > > I know that from visualvm or jconsole, mbean returning "complex" string, > > sometimes are not properly shown but I see a blank string, and the other > > operation which returns a long? It is very strange. > > > > As parameters I set the root node, so "/" and thats'all. > > > > Does it work for you? > > > > > > Cordiali saluti / Best regards, > > > > Raffaele Gambelli > > Application Architect > > > > > > ________________________________ > > From: Jörg Hoh <jhoh...@googlemail.com.INVALID> > > Sent: Wednesday, September 3, 2025 2:50 PM > > To: oak-dev@jackrabbit.apache.org <oak-dev@jackrabbit.apache.org> > > Subject: Re: Unable to get values from mbean "nodeCounter" > > > > Hi Raffaele, > > > > what Oak version are you using? And when you connect via jconsole to that > > JVM, does it return a proper value? > > > > Jörg > > > > Am Mi., 3. Sept. 2025 um 09:19 Uhr schrieb Raffaele Gambelli > > <raffaele.gambe...@cegeka.com.invalid>: > > > > > Hi all, > > > > > > as described here > > > > > > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fjackrabbit.apache.org%2Foak%2Fdocs%2Fquery%2Fquery-troubleshooting.html&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996702688%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=lNUExMcnCFq9TB19%2FpSNP5AfIvnT9A4aqq0Ks87CrgE%3D&reserved=0 > <https://jackrabbit.apache.org/oak/docs/query/query-troubleshooting.html> > > < > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fjackrabbit.apache.org%2Foak%2Fdocs%2Fquery%2Fquery-troubleshooting.html&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996720000%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=4mQZ9B4XONwW4kr36hrie23rNHcQhDQVwvriZ753nuM%3D&reserved=0 > <https://jackrabbit.apache.org/oak/docs/query/query-troubleshooting.html>> > > I > > > wanted to get values from meabn nodeCounter but I'm not able to get > > them, I > > > see always a blank string as output. > > > > > > I tried either with visualvm or with jconsole, do you have any hints? > > > > > > Thanks > > > > > > > > > Cordiali saluti / Best regards, > > > > > > *Raffaele Gambelli* > > > *Application Architect* > > > *E* *raffaele.gambe...@cegeka.com <raffaele.gambe...@cegeka.com>* > > > *M* +39 3371641888 > > > > > > [image: CEGEKA] > > > Via Ettore Cristoni, 84 > > > IT-40033 Bologna (IT), Italy > > > *T* +39 02 2544271 > > > * > > > https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.cegeka.com%2F&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996738906%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=gv127Ak%2BnKPtJ5%2Bh%2Bd1UAkIcxu21LxH%2FOKXb2xmGo2k%3D&reserved=0 > <http://www.cegeka.com/> > > < > > > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.cegeka.com%2F&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996756443%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=0LJDnrshqCJ0ZQqCtWNZyMDvscA8rOgSSgvD4%2BdE%2FLk%3D&reserved=0 > <https://www.cegeka.com/> > > < > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.cegeka.com%2F&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996772571%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=ItUBvv59MMChge0drDTKgKql7vyMRnU%2FWfHLw%2FLDwew%3D&reserved=0 > <https://www.cegeka.com/>>> * > > > > > > > > > > > > > > > > > > < > > > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcampaigns.signature365.com%2Feu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj%2Fgen_Pfjgxe5SOOkn66Ch%2Fgo%2FuHO&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996787257%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=fE%2FeLcbjeECiqFccllaUV%2B2lGo6slqtNkuerESAsPks%3D&reserved=0 > < > https://campaigns.signature365.com/eu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj/gen_Pfjgxe5SOOkn66Ch/go/uHO > > > > < > > > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcampaigns.signature365.com%2Feu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj%2Fgen_Pfjgxe5SOOkn66Ch%2Fgo%2FuHO&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996805416%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=7rr62sSJP%2FxPvRTYqTlrz%2BLjhCxP14cvRJQ2w4T6w0w%3D&reserved=0 > < > https://campaigns.signature365.com/eu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj/gen_Pfjgxe5SOOkn66Ch/go/uHO > > > > >> > > > > > > *Dichiarazione di Riservatezza > > > < > > > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcampaigns.signature365.com%2Feu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj%2Fgen_Pfjgxe5SOOkn66Ch%2Fgo%2FuHO&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996832711%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=8gTSB4yXO%2BXWFi1b8pnxtxSYTgh9TOWDyBBjA5Lexj8%3D&reserved=0 > < > https://campaigns.signature365.com/eu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj/gen_Pfjgxe5SOOkn66Ch/go/uHO > > > > < > > > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcampaigns.signature365.com%2Feu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj%2Fgen_Pfjgxe5SOOkn66Ch%2Fgo%2FuHO&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996854205%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=mA2ggVMUTbC%2BnxQyCO61gSi%2B%2FvBmZvdkXbchHmCVy54%3D&reserved=0 > < > https://campaigns.signature365.com/eu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj/gen_Pfjgxe5SOOkn66Ch/go/uHO > > > > >>* > > > > > > Le informazioni contenute nella mail sono riservate. Se si rende conto > di > > > non essere il destinatario corretto della mail, la preghiamo di > segnalare > > > l'errore al mittente e di cancellare immediatamente il messaggio. > > > L’utilizzo improprio di informazioni riservate può comportare sanzioni. > > > < > > > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcampaigns.signature365.com%2Feu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj%2Fgen_Pfjgxe5SOOkn66Ch%2Fgo%2FuHO&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996871296%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=Hm6p%2Be%2F05SiDUfPPCP1fvjamgzyu6AREWUsPnUV8zIY%3D&reserved=0 > < > https://campaigns.signature365.com/eu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj/gen_Pfjgxe5SOOkn66Ch/go/uHO > > > > < > > > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcampaigns.signature365.com%2Feu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj%2Fgen_Pfjgxe5SOOkn66Ch%2Fgo%2FuHO&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996890344%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=Q5G8e%2FetlqivAsgE8D%2Bo8rfZ4ql4mvG6QRIN%2BFVyLv8%3D&reserved=0 > < > https://campaigns.signature365.com/eu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj/gen_Pfjgxe5SOOkn66Ch/go/uHO > > > > >> > > > > > > Protezione dei dati personali > > > < > > > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcampaigns.signature365.com%2Feu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj%2Fgen_Pfjgxe5SOOkn66Ch%2Fgo%2FuHO&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996906975%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=qQxUx874L8SyeHSiefEUqKpqv1uPOo%2Bpuczheu0rQ%2Fs%3D&reserved=0 > < > https://campaigns.signature365.com/eu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj/gen_Pfjgxe5SOOkn66Ch/go/uHO > > > > < > > > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcampaigns.signature365.com%2Feu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj%2Fgen_Pfjgxe5SOOkn66Ch%2Fgo%2FuHO&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996923207%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=LARorLCoO0Nb%2BMS9ND%2FNF6GZ5Jc%2FWRsKz3M9rA%2B2%2B3s%3D&reserved=0 > < > https://campaigns.signature365.com/eu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj/gen_Pfjgxe5SOOkn66Ch/go/uHO > > > > >> > > > > > > La informiamo che i suoi dati saranno trattati da Cegeka nel rispetto > > > delle disposizioni di legge applicabili (D. Lgs 196/2003 e Regolamento > UE > > > 679/2016). Per maggiori dettagli può consultare le nostre informative > > > privacy al link > > > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.cegeka.com%2Fit%2Finformazioni-sulla-privacy&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996946462%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=uvS1QkcEwx%2B9hb8CnnaOXnt1VFZT3VZew5cBBGiFTcI%3D&reserved=0 > <https://www.cegeka.com/it/informazioni-sulla-privacy> > > < > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.cegeka.com%2Fit%2Finformazioni-sulla-privacy&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996968045%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=ToM55OQTHjhfNLw8bN8ou%2BtcmRL3nIcyW%2FTkY9M49FQ%3D&reserved=0 > <https://www.cegeka.com/it/informazioni-sulla-privacy>>. > > > < > > > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcampaigns.signature365.com%2Feu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj%2Fgen_Pfjgxe5SOOkn66Ch%2Fgo%2FuHO&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996984136%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=tZ%2FRe3R0afgq8dm9yuMNR5OogbxOZCWxyYZwQWkbxOU%3D&reserved=0 > < > https://campaigns.signature365.com/eu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj/gen_Pfjgxe5SOOkn66Ch/go/uHO > > > > < > > > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcampaigns.signature365.com%2Feu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj%2Fgen_Pfjgxe5SOOkn66Ch%2Fgo%2FuHO&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730996997712%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=RmBQDhGbiIGcYEwMVujD3Wmlk2E4du%2Bfi3cqUpAG6Fo%3D&reserved=0 > < > https://campaigns.signature365.com/eu-B2uKnHEFS98nwDUb-xnoLLs9dLzfDepbj/gen_Pfjgxe5SOOkn66Ch/go/uHO > > > > >> > > > > > > > > > > > > [image: Signature 365 Pixel] > > > > > > > > > -- > > > > > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcqdump.joerghoh.de%2F&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730997013203%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=vgSCKaqOxoHUqLvv2kYPwszvUWeW0SKsdrgbXf%2Brhgo%3D&reserved=0 > <https://cqdump.joerghoh.de/> > > < > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcqdump.joerghoh.de%2F&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730997029361%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=begoyUGFba975z6dru7CHQC0FrsemVxWJ9LqdctsOQE%3D&reserved=0 > <https://cqdump.joerghoh.de/>> > > > > > -- > > https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcqdump.joerghoh.de%2F&data=05%7C02%7CRaffaele.Gambelli%40cegeka.com%7C2f1dcc19781647972b1308ddeb912f32%7C42151053019347aa9e81effd81f772cc%7C0%7C0%7C638925730997045091%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=otxzW2rZmqXd1l0hzK97A3G8RvlA5uP2VtcnPF0MwXg%3D&reserved=0 > <https://cqdump.joerghoh.de/> > -- https://cqdump.joerghoh.de