Skip to content

nizhikov/ignite-http-metrics-exporter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

This module contains org.apache.ignite.viewer.IgniteHttpMetricsExporterSpi Spi to export some gorups of the Apache Ignite metrics. Example of XML configuration:

    <bean id="ignite.cfg" class="org.apache.ignite.configuration.IgniteConfiguration">
        <property name="metricExporterSpi">
            <bean class="org.apache.ignite.viewer.IgniteHttpMetricsExporterSpi">
                <property name="groups">
                    <list>
                        <bean class="org.apache.ignite.viewer.config.RegExpGroup">
                            <property name="context" value="/all"/>
                            <property name="regExp" value=".*"/>
                        </bean>
                        <bean class="org.apache.ignite.viewer.config.NamesListGroup">
                            <property name="context" value="/sys"/>
                            <property name="names">
                                <list>
                                    <value>sys</value>
                                </list>
                            </property>
                        </bean>
                        <bean class="org.apache.ignite.viewer.config.RegExpGroup">
                            <property name="context" value="/caches"/>
                            <property name="regExp" value="cache\..*"/>
                        </bean>
                        <bean class="org.apache.ignite.viewer.config.NamesListGroup">
                            <property name="context" value="/my-cache"/>
                            <property name="names">
                                <list>
                                    <value>cache.my-cache</value>
                                    <value>cacheGroups.my-cache</value>
                                </list>
                            </property>
                        </bean>
                    </list>
                </property>
            </bean>
        </property>
    </bean>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages