/* * Licensed to ElasticSearch and Shay Banon under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. ElasticSearch licenses this * file to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.elasticsearch.test.integration.search.stats; import org.elasticsearch.action.admin.cluster.node.stats.NodesStatsResponse; import org.elasticsearch.action.admin.indices.stats.IndicesStats; import org.elasticsearch.client.Client; import org.elasticsearch.common.settings.Settings; import org.elasticsearch.index.query.QueryBuilders; import org.elasticsearch.test.integration.AbstractNodesTests; import org.testng.annotations.AfterClass; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; import static org.elasticsearch.common.settings.ImmutableSettings.settingsBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.*; /** */ public class SearchStatsTests extends AbstractNodesTests { private Client client; @BeforeClass public void createNodes() throws Exception { Settings settings = settingsBuilder().put("number_of_shards", 3).put("number_of_replicas", 0).build(); startNode("server1", settings); startNode("server2", settings); client = getClient(); } @AfterClass public void closeNodes() { client.close(); closeAllNodes(); } protected Client getClient() { return client("server1"); } @Test public void testSimpleStats() throws Exception { client.admin().indices().prepareDelete().execute().actionGet(); for (int i = 0; i < 500; i++) { client.prepareIndex("test1", "type", Integer.toString(i)).setSource("field", "value").execute().actionGet(); } for (int i = 0; i < 500; i++) { client.prepareIndex("test2", "type", Integer.toString(i)).setSource("field", "value").execute().actionGet(); } for (int i = 0; i < 200; i++) { client.prepareSearch().setQuery(QueryBuilders.termQuery("field", "value")).setStats("group1", "group2").execute().actionGet(); } IndicesStats indicesStats = client.admin().indices().prepareStats().execute().actionGet(); assertThat(indicesStats.total().search().total().queryCount(), greaterThan(0l)); assertThat(indicesStats.total().search().total().queryTimeInMillis(), greaterThan(0l)); assertThat(indicesStats.total().search().total().fetchCount(), greaterThan(0l)); assertThat(indicesStats.total().search().total().fetchTimeInMillis(), greaterThan(0l)); assertThat(indicesStats.total().search().groupStats(), nullValue()); indicesStats = client.admin().indices().prepareStats().setGroups("group1").execute().actionGet(); assertThat(indicesStats.total().search().groupStats(), notNullValue()); assertThat(indicesStats.total().search().groupStats().get("group1").queryCount(), greaterThan(0l)); assertThat(indicesStats.total().search().groupStats().get("group1").queryTimeInMillis(), greaterThan(0l)); assertThat(indicesStats.total().search().groupStats().get("group1").fetchCount(), greaterThan(0l)); assertThat(indicesStats.total().search().groupStats().get("group1").fetchTimeInMillis(), greaterThan(0l)); NodesStatsResponse nodeStats = client.admin().cluster().prepareNodesStats().execute().actionGet(); assertThat(nodeStats.nodes()[0].indices().search().total().queryCount(), greaterThan(0l)); assertThat(nodeStats.nodes()[0].indices().search().total().queryTimeInMillis(), greaterThan(0l)); } }