HI

Created a cache template mentioned like below

<property name="cacheConfiguration">
     <list>
       <bean id="cache-template-bean" abstract="true"
class="org.apache.ignite.configuration.CacheConfiguration">
                    
                    <property name="name" value="myCacheTemplate*"/>
                    <property name="cacheMode" value="PARTITIONED"/>
                    <property name="backups" value="2"/>
                    
                                        <property name="statisticsEnabled" 
value="true"/>                                       
                </bean>
            </list>
  </property>
  
And created a cache by using the template 

  CREATE TABLE IF NOT EXISTS TEST_STATS1 (
  id LONG, name VARCHAR, cityId LONG, PRIMARY KEY (id))
  WITH "template=myCacheTemplate, CACHE_NAME=TEST_STATS1" ;

inserted couple of records and tried to find out the cache metrics, but
could not find them.
We have exporters running on each nodehttp://10.XX.X.XXX:9100/metrics,  but
do not see anything related cache.
Am I missing something here, how to debug this

Thanks
Naveen




--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Reply via email to