diff --git a/be/src/exprs/bloom_filter_func.h b/be/src/exprs/bloom_filter_func.h index ae206615bd7130..ad43b78cc6abb5 100644 --- a/be/src/exprs/bloom_filter_func.h +++ b/be/src/exprs/bloom_filter_func.h @@ -100,14 +100,14 @@ class BloomFilterFuncBase : public RuntimeFilterFuncBase { virtual ~BloomFilterFuncBase() = default; void init_params(const RuntimeFilterParams* params) { - _bloom_filter_length = - params->runtime_bloom_filter_min_size > 0 - ? std::max(params->bloom_filter_size, params->runtime_bloom_filter_min_size) - : params->bloom_filter_size; + _bloom_filter_length = params->bloom_filter_size; + _build_bf_exactly = params->build_bf_exactly; _runtime_bloom_filter_min_size = params->runtime_bloom_filter_min_size; + _runtime_bloom_filter_max_size = params->runtime_bloom_filter_max_size; _null_aware = params->null_aware; _bloom_filter_size_calculated_by_ndv = params->bloom_filter_size_calculated_by_ndv; + _limit_length(); } Status init_with_fixed_length() { return init_with_fixed_length(_bloom_filter_length); } @@ -128,17 +128,11 @@ class BloomFilterFuncBase : public RuntimeFilterFuncBase { // if FE do use ndv stat to predict the bf size, BE only use the row count. FE have more // exactly row count stat. which one is min is more correctly. if (_bloom_filter_size_calculated_by_ndv) { - _bloom_filter_length = - _runtime_bloom_filter_min_size > 0 - ? std::max(_runtime_bloom_filter_min_size, - std::min(be_calculate_size, _bloom_filter_length)) - : std::min(be_calculate_size, _bloom_filter_length); + _bloom_filter_length = std::min(be_calculate_size, _bloom_filter_length); } else { - _bloom_filter_length = - _runtime_bloom_filter_min_size > 0 - ? std::max(_runtime_bloom_filter_min_size, be_calculate_size) - : be_calculate_size; + _bloom_filter_length = be_calculate_size; } + _limit_length(); } return init_with_fixed_length(_bloom_filter_length); } @@ -229,6 +223,16 @@ class BloomFilterFuncBase : public RuntimeFilterFuncBase { uint16_t* offsets, int number, bool is_parse_column) = 0; +private: + void _limit_length() { + if (_runtime_bloom_filter_min_size > 0) { + _bloom_filter_length = std::max(_bloom_filter_length, _runtime_bloom_filter_min_size); + } + if (_runtime_bloom_filter_max_size > 0) { + _bloom_filter_length = std::min(_bloom_filter_length, _runtime_bloom_filter_max_size); + } + } + protected: // bloom filter size int32_t _bloom_filter_alloced; @@ -236,6 +240,7 @@ class BloomFilterFuncBase : public RuntimeFilterFuncBase { bool _inited = false; int64_t _bloom_filter_length; int64_t _runtime_bloom_filter_min_size; + int64_t _runtime_bloom_filter_max_size; bool _build_bf_exactly = false; bool _bloom_filter_size_calculated_by_ndv = false; }; diff --git a/be/src/exprs/runtime_filter.cpp b/be/src/exprs/runtime_filter.cpp index b7af2561fe03cb..f8f6b001982cd9 100644 --- a/be/src/exprs/runtime_filter.cpp +++ b/be/src/exprs/runtime_filter.cpp @@ -1337,6 +1337,9 @@ Status IRuntimeFilter::init_with_desc(const TRuntimeFilterDesc* desc, const TQue params.runtime_bloom_filter_min_size = options->__isset.runtime_bloom_filter_min_size ? options->runtime_bloom_filter_min_size : 0; + params.runtime_bloom_filter_max_size = options->__isset.runtime_bloom_filter_max_size + ? options->runtime_bloom_filter_max_size + : 0; // We build runtime filter by exact distinct count iff three conditions are met: // 1. Only 1 join key // 2. Do not have remote target (e.g. do not need to merge), or broadcast join diff --git a/be/src/exprs/runtime_filter.h b/be/src/exprs/runtime_filter.h index 6632c5dc8727fa..584d3d4e5358c2 100644 --- a/be/src/exprs/runtime_filter.h +++ b/be/src/exprs/runtime_filter.h @@ -128,6 +128,7 @@ struct RuntimeFilterParams { int64_t bloom_filter_size; int32_t max_in_num; int64_t runtime_bloom_filter_min_size; + int64_t runtime_bloom_filter_max_size; int32_t filter_id; bool bitmap_filter_not_in; bool build_bf_exactly; diff --git a/build-for-release.sh b/build-for-release.sh index 2347f9ebaab5e1..41580c91a00f86 100755 --- a/build-for-release.sh +++ b/build-for-release.sh @@ -128,6 +128,7 @@ FE="fe" BE="be" CLOUD="ms" EXT="extensions" +TOOLS="tools" PACKAGE="apache-doris-${VERSION}-bin-${ARCH}" if [[ "${_USE_AVX2}" == "0" ]]; then @@ -139,6 +140,7 @@ OUTPUT_FE="${OUTPUT}/${FE}" OUTPUT_EXT="${OUTPUT}/${EXT}" OUTPUT_BE="${OUTPUT}/${BE}" OUTPUT_CLOUD="${OUTPUT}/${CLOUD}" +OUTPUT_TOOLS="${OUTPUT}/${TOOLS}" echo "Package Name:" echo "FE: ${OUTPUT_FE}" @@ -152,7 +154,7 @@ sh build.sh --clean && echo "Begin to pack" rm -rf "${OUTPUT}" -mkdir -p "${OUTPUT_FE}" "${OUTPUT_BE}" "${OUTPUT_EXT}" "${OUTPUT_CLOUD}" +mkdir -p "${OUTPUT_FE}" "${OUTPUT_BE}" "${OUTPUT_EXT}" "${OUTPUT_CLOUD}" "${OUTPUT_TOOLS}" # FE cp -R "${ORI_OUTPUT}"/fe/* "${OUTPUT_FE}"/ @@ -177,5 +179,8 @@ if [[ "${TAR}" -eq 1 ]]; then cd - fi +# TOOL +cp -R "${ORI_OUTPUT}"/tools/* "${OUTPUT_TOOLS}"/ + echo "Output dir: ${OUTPUT}" exit 0 diff --git a/cloud/script/run_all_tests.sh b/cloud/script/run_all_tests.sh index eaddd4ff78fad3..330fb00449350b 100644 --- a/cloud/script/run_all_tests.sh +++ b/cloud/script/run_all_tests.sh @@ -143,11 +143,13 @@ for i in *_test; do patchelf --set-rpath "$(pwd)" "${i}" fi + set -euo pipefail if [[ "${filter}" == "" ]]; then LLVM_PROFILE_FILE="./report/${i}.profraw" "./${i}" --gtest_print_time=true --gtest_output="xml:${i}.xml" else LLVM_PROFILE_FILE="./report/${i}.profraw" "./${i}" --gtest_print_time=true --gtest_output="xml:${i}.xml" --gtest_filter="${filter}" fi + set +euo pipefail unittest_files[${#unittest_files[*]}]="${i}" echo "--------------------------" fi diff --git a/cloud/src/meta-service/meta_service_http.cpp b/cloud/src/meta-service/meta_service_http.cpp index bb193092be93a4..be00b8d93475d3 100644 --- a/cloud/src/meta-service/meta_service_http.cpp +++ b/cloud/src/meta-service/meta_service_http.cpp @@ -409,8 +409,8 @@ static HttpResponse process_adjust_rate_limit(MetaServiceImpl* service, brpc::Co processors[0b101] = std::move(set_instance_qps_limit); processors[0b111] = std::move(set_instance_rpc_qps_limit); - uint8_t level = (0x01 & qps_limit_str.empty()) | ((0x01 & rpc_name.empty()) << 1) | - ((0x01 & instance_id.empty()) << 2); + uint8_t level = (0x01 & !qps_limit_str.empty()) | ((0x01 & !rpc_name.empty()) << 1) | + ((0x01 & !instance_id.empty()) << 2); DCHECK_LT(level, 8); @@ -420,10 +420,13 @@ static HttpResponse process_adjust_rate_limit(MetaServiceImpl* service, brpc::Co static HttpResponse process_query_rate_limit(MetaServiceImpl* service, brpc::Controller* cntl) { auto rate_limiter = service->rate_limiter(); rapidjson::Document d; + d.SetObject(); auto get_qps_limit = [&d](std::string_view rpc_name, std::shared_ptr rpc_limiter) { rapidjson::Document node; + node.SetObject(); rapidjson::Document sub; + sub.SetObject(); auto get_qps_token_limit = [&](std::string_view instance_id, std::shared_ptr qps_token) { sub.AddMember(rapidjson::StringRef(instance_id.data(), instance_id.size()), @@ -431,10 +434,7 @@ static HttpResponse process_query_rate_limit(MetaServiceImpl* service, brpc::Con }; rpc_limiter->for_each_qps_token(std::move(get_qps_token_limit)); - auto max_qps_limit = std::to_string(rpc_limiter->max_qps_limit()); - node.AddMember("RPC qps limit", - rapidjson::StringRef(max_qps_limit.data(), max_qps_limit.size()), - d.GetAllocator()); + node.AddMember("RPC qps limit", rpc_limiter->max_qps_limit(), d.GetAllocator()); node.AddMember("instance specific qps limit", sub, d.GetAllocator()); d.AddMember(rapidjson::StringRef(rpc_name.data(), rpc_name.size()), node, d.GetAllocator()); }; @@ -443,7 +443,7 @@ static HttpResponse process_query_rate_limit(MetaServiceImpl* service, brpc::Con rapidjson::StringBuffer sb; rapidjson::PrettyWriter writer(sb); d.Accept(writer); - return http_json_reply(MetaServiceCode::OK, sb.GetString()); + return http_json_reply(MetaServiceCode::OK, "", sb.GetString()); } static HttpResponse process_decode_key(MetaServiceImpl*, brpc::Controller* ctrl) { diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/expression/rules/SimplifyConditionalFunction.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/expression/rules/SimplifyConditionalFunction.java index 359cb887fe54b7..c1c6283e32d21c 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/expression/rules/SimplifyConditionalFunction.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/expression/rules/SimplifyConditionalFunction.java @@ -22,6 +22,7 @@ import org.apache.doris.nereids.trees.expressions.Expression; import org.apache.doris.nereids.trees.expressions.functions.scalar.Coalesce; import org.apache.doris.nereids.trees.expressions.functions.scalar.NullIf; +import org.apache.doris.nereids.trees.expressions.functions.scalar.Nullable; import org.apache.doris.nereids.trees.expressions.functions.scalar.Nvl; import org.apache.doris.nereids.trees.expressions.literal.NullLiteral; @@ -98,7 +99,7 @@ private static Expression rewriteNvl(Nvl nvl) { */ private static Expression rewriteNullIf(NullIf nullIf) { if (nullIf.child(0) instanceof NullLiteral || nullIf.child(1) instanceof NullLiteral) { - return nullIf.child(0); + return new Nullable(nullIf.child(0)); } else { return nullIf; } diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/GlobalVariable.java b/fe/fe-core/src/main/java/org/apache/doris/qe/GlobalVariable.java index c7e226438f8541..6a08c97cd4858f 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/qe/GlobalVariable.java +++ b/fe/fe-core/src/main/java/org/apache/doris/qe/GlobalVariable.java @@ -35,6 +35,7 @@ public final class GlobalVariable { public static final int VARIABLE_VERSION_0 = 0; public static final int VARIABLE_VERSION_100 = 100; + public static final int VARIABLE_VERSION_101 = 101; public static final int VARIABLE_VERSION_200 = 200; public static final int CURRENT_VARIABLE_VERSION = VARIABLE_VERSION_200; public static final String VARIABLE_VERSION = "variable_version"; diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java index f7ff9baf1660c9..8b1442b74642e0 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java +++ b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java @@ -1912,7 +1912,7 @@ public void setEnableLeftZigZag(boolean enableLeftZigZag) { "Maximum table width to enable auto analyze, " + "table with more columns than this value will not be auto analyzed."}, flag = VariableMgr.GLOBAL) - public int autoAnalyzeTableWidthThreshold = 100; + public int autoAnalyzeTableWidthThreshold = 300; @VariableMgr.VarAttr(name = AUTO_ANALYZE_START_TIME, needForward = true, checker = "checkAnalyzeTimeFormat", description = {"该参数定义自动ANALYZE例程的开始时间", @@ -1977,7 +1977,7 @@ public void setEnableLeftZigZag(boolean enableLeftZigZag) { + "exceeds (100 - table_stats_health_threshold)% since the last " + "statistics collection operation, the statistics for this table are" + "considered outdated."}) - public int tableStatsHealthThreshold = 60; + public int tableStatsHealthThreshold = 90; @VariableMgr.VarAttr(name = ENABLE_MATERIALIZED_VIEW_REWRITE, needForward = true, description = {"是否开启基于结构信息的物化视图透明改写", @@ -3842,6 +3842,7 @@ public TQueryOptions toThrift() { tResult.setRuntimeFilterWaitTimeMs(runtimeFilterWaitTimeMs); tResult.setRuntimeFilterMaxInNum(runtimeFilterMaxInNum); tResult.setRuntimeBloomFilterMinSize(runtimeBloomFilterMinSize); + tResult.setRuntimeBloomFilterMaxSize(runtimeBloomFilterMaxSize); tResult.setRuntimeFilterWaitInfinitely(runtimeFilterWaitInfinitely); if (cpuResourceLimit > 0) { diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/VariableMgr.java b/fe/fe-core/src/main/java/org/apache/doris/qe/VariableMgr.java index 34cbe29c3fdfe0..93f931fff124aa 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/qe/VariableMgr.java +++ b/fe/fe-core/src/main/java/org/apache/doris/qe/VariableMgr.java @@ -34,6 +34,8 @@ import org.apache.doris.common.util.SerializationUtils; import org.apache.doris.nereids.trees.expressions.literal.Literal; import org.apache.doris.persist.GlobalVarPersistInfo; +import org.apache.doris.statistics.StatisticConstants; +import org.apache.doris.statistics.util.StatisticsUtil; import com.google.common.base.Preconditions; import com.google.common.base.Strings; @@ -984,6 +986,20 @@ public static void forceUpdateVariables() { SessionVariable.ENABLE_PIPELINE_X_ENGINE, String.valueOf(true)); } + if (currentVariableVersion < GlobalVariable.VARIABLE_VERSION_101) { + if (StatisticsUtil.getAutoAnalyzeTableWidthThreshold() + < StatisticConstants.AUTO_ANALYZE_TABLE_WIDTH_THRESHOLD) { + VariableMgr.refreshDefaultSessionVariables("update variable version", + SessionVariable.AUTO_ANALYZE_TABLE_WIDTH_THRESHOLD, + String.valueOf(StatisticConstants.AUTO_ANALYZE_TABLE_WIDTH_THRESHOLD)); + } + if (StatisticsUtil.getTableStatsHealthThreshold() + < StatisticConstants.TABLE_STATS_HEALTH_THRESHOLD) { + VariableMgr.refreshDefaultSessionVariables("update variable version", + SessionVariable.TABLE_STATS_HEALTH_THRESHOLD, + String.valueOf(StatisticConstants.TABLE_STATS_HEALTH_THRESHOLD)); + } + } if (currentVariableVersion < GlobalVariable.VARIABLE_VERSION_200) { // update from 3.0.2 or below to 3.0.3 or higher VariableMgr.refreshDefaultSessionVariables("update variable version", diff --git a/fe/fe-core/src/main/java/org/apache/doris/statistics/StatisticConstants.java b/fe/fe-core/src/main/java/org/apache/doris/statistics/StatisticConstants.java index c2479147ec7b20..f6d49ea079bf18 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/statistics/StatisticConstants.java +++ b/fe/fe-core/src/main/java/org/apache/doris/statistics/StatisticConstants.java @@ -93,13 +93,13 @@ public class StatisticConstants { public static final long EXTERNAL_TABLE_AUTO_ANALYZE_INTERVAL_IN_MILLIS = TimeUnit.HOURS.toMillis(24); - public static final int TABLE_STATS_HEALTH_THRESHOLD = 60; + public static final int TABLE_STATS_HEALTH_THRESHOLD = 90; public static final int ANALYZE_TIMEOUT_IN_SEC = 43200; public static final int TASK_QUEUE_CAP = 1; - public static final int AUTO_ANALYZE_TABLE_WIDTH_THRESHOLD = 100; + public static final int AUTO_ANALYZE_TABLE_WIDTH_THRESHOLD = 300; public static final int MSG_LEN_UPPER_BOUND = 1024; diff --git a/fe/fe-core/src/test/java/org/apache/doris/nereids/rules/expression/rules/SimplifyConditionalFunctionTest.java b/fe/fe-core/src/test/java/org/apache/doris/nereids/rules/expression/rules/SimplifyConditionalFunctionTest.java index 33c62f142c22aa..7ba9cf09ff26fd 100644 --- a/fe/fe-core/src/test/java/org/apache/doris/nereids/rules/expression/rules/SimplifyConditionalFunctionTest.java +++ b/fe/fe-core/src/test/java/org/apache/doris/nereids/rules/expression/rules/SimplifyConditionalFunctionTest.java @@ -22,6 +22,7 @@ import org.apache.doris.nereids.trees.expressions.SlotReference; import org.apache.doris.nereids.trees.expressions.functions.scalar.Coalesce; import org.apache.doris.nereids.trees.expressions.functions.scalar.NullIf; +import org.apache.doris.nereids.trees.expressions.functions.scalar.Nullable; import org.apache.doris.nereids.trees.expressions.functions.scalar.Nvl; import org.apache.doris.nereids.trees.expressions.literal.NullLiteral; import org.apache.doris.nereids.types.BooleanType; @@ -99,13 +100,14 @@ public void testNullIf() { SlotReference slot = new SlotReference("a", StringType.INSTANCE, true); SlotReference nonNullableSlot = new SlotReference("b", StringType.INSTANCE, false); // nullif(null, slot) -> null - assertRewrite(new NullIf(NullLiteral.INSTANCE, slot), new NullLiteral(VarcharType.SYSTEM_DEFAULT)); + assertRewrite(new NullIf(NullLiteral.INSTANCE, slot), + new Nullable(new NullLiteral(VarcharType.SYSTEM_DEFAULT))); // nullif(nullable_slot, null) -> slot - assertRewrite(new NullIf(slot, NullLiteral.INSTANCE), slot); + assertRewrite(new NullIf(slot, NullLiteral.INSTANCE), new Nullable(slot)); // nullif(non-nullable_slot, null) -> non-nullable_slot - assertRewrite(new NullIf(nonNullableSlot, NullLiteral.INSTANCE), nonNullableSlot); + assertRewrite(new NullIf(nonNullableSlot, NullLiteral.INSTANCE), new Nullable(nonNullableSlot)); } } diff --git a/fe/fe-core/src/test/java/org/apache/doris/statistics/util/StatisticsUtilTest.java b/fe/fe-core/src/test/java/org/apache/doris/statistics/util/StatisticsUtilTest.java index 32521882939d34..fbac718e421c29 100644 --- a/fe/fe-core/src/test/java/org/apache/doris/statistics/util/StatisticsUtilTest.java +++ b/fe/fe-core/src/test/java/org/apache/doris/statistics/util/StatisticsUtilTest.java @@ -344,11 +344,11 @@ public ColStatsMeta findColumnStatsMeta(String indexName, String colName) { tableMeta.partitionChanged.set(false); Assertions.assertTrue(StatisticsUtil.needAnalyzeColumn(table, Pair.of("index", column.getName()))); - // Test update rows changed more than threshold. + // Test row count changed more than threshold. new MockUp() { @Mock public long getRowCount() { - return 120; + return 111; } }; new MockUp() { @@ -358,12 +358,29 @@ public ColStatsMeta findColumnStatsMeta(String indexName, String colName) { } }; tableMeta.partitionChanged.set(false); - tableMeta.updatedRows.set(200); + tableMeta.updatedRows.set(80); Assertions.assertTrue(StatisticsUtil.needAnalyzeColumn(table, Pair.of("index", column.getName()))); - // Test update rows changed less than threshold + // Test update rows changed more than threshold + new MockUp() { + @Mock + public long getRowCount() { + return 101; + } + }; + tableMeta.partitionChanged.set(false); + tableMeta.updatedRows.set(91); + Assertions.assertTrue(StatisticsUtil.needAnalyzeColumn(table, Pair.of("index", column.getName()))); + + // Test row count and update rows changed less than threshold + new MockUp() { + @Mock + public long getRowCount() { + return 100; + } + }; tableMeta.partitionChanged.set(false); - tableMeta.updatedRows.set(100); + tableMeta.updatedRows.set(85); Assertions.assertFalse(StatisticsUtil.needAnalyzeColumn(table, Pair.of("index", column.getName()))); } diff --git a/gensrc/script/gen_build_version.sh b/gensrc/script/gen_build_version.sh index 7c463175356bf5..c4befea13f7099 100755 --- a/gensrc/script/gen_build_version.sh +++ b/gensrc/script/gen_build_version.sh @@ -31,7 +31,7 @@ build_version_prefix="doris" build_version_major=3 build_version_minor=0 build_version_patch=3 -build_version_rc_version="rc01" +build_version_rc_version="rc02" build_version="${build_version_prefix}-${build_version_major}.${build_version_minor}.${build_version_patch}-${build_version_rc_version}" diff --git a/regression-test/data/inverted_index_p0/index_compaction/documents-1.json b/regression-test/data/inverted_index_p0/index_compaction/documents-1.json new file mode 100644 index 00000000000000..adc5c833fe506f --- /dev/null +++ b/regression-test/data/inverted_index_p0/index_compaction/documents-1.json @@ -0,0 +1,1000 @@ +{"@timestamp": 895435201, "clientip":"30.20.6.0", "request": "GET /french/index.html HTTP/1.0", "status": 200, "size": 954} +{"@timestamp": 895435201, "clientip":"71.190.4.0", "request": "GET /images/tck_pkit_fx_a.jpg HTTP/1.1", "status": 200, "size": 13034} +{"@timestamp": 895435202, "clientip":"40.180.2.0", "request": "GET /french/competition/flashed_stage1.htm HTTP/1.0", "status": 200, "size": 2531} +{"@timestamp": 895435202, "clientip":"71.190.4.0", "request": "GET /images/ps_bdr_r.gif HTTP/1.1", "status": 200, "size": 510} +{"@timestamp": 895435203, "clientip":"30.20.6.0", "request": "GET /french/nav_top_inet.html HTTP/1.0", "status": 200, "size": 374} +{"@timestamp": 895435203, "clientip":"88.7.0.0", "request": "GET /images/logo_cfo.gif HTTP/1.1", "status": 200, "size": 1504} +{"@timestamp": 895435204, "clientip":"88.7.0.0", "request": "GET /english/images/nav_news_off.gif HTTP/1.1", "status": 200, "size": 853} +{"@timestamp": 895435205, "clientip":"88.7.0.0", "request": "GET /english/images/hm_official.gif HTTP/1.1", "status": 200, "size": 1807} +{"@timestamp": 895435205, "clientip":"40.180.2.0", "request": "GET /french/images/comp_bg2_hm.gif HTTP/1.0", "status": 200, "size": 3785} +{"@timestamp": 895435205, "clientip":"71.190.4.0", "request": "GET /french/tickets/images/ticket_bu_quest2.gif HTTP/1.1", "status": 200, "size": 1271} +{"@timestamp": 895435205, "clientip":"241.58.0.0", "request": "GET /english/teams/teambio135.htm HTTP/1.0", "status": 200, "size": 11433} +{"@timestamp": 895435206, "clientip":"30.20.6.0", "request": "GET /french/nav_inet.html HTTP/1.0", "status": 200, "size": 2665} +{"@timestamp": 895435206, "clientip":"27.20.6.0", "request": "GET /english/playing/download/download.html HTTP/1.0", "status": 200, "size": 13856} +{"@timestamp": 895435206, "clientip":"71.190.4.0", "request": "GET /images/tck_pkit_fx_b.jpg HTTP/1.1", "status": 200, "size": 13846} +{"@timestamp": 895435207, "clientip":"241.58.0.0", "request": "GET /english/teams/teambio135.htm HTTP/1.0", "status": 200, "size": 11433} +{"@timestamp": 895435208, "clientip":"30.20.6.0", "request": "GET /french/splash_inet.html HTTP/1.0", "status": 200, "size": 3770} +{"@timestamp": 895435208, "clientip":"88.7.0.0", "request": "GET /images/hm_anime_e.gif HTTP/1.1", "status": 200, "size": 7376} +{"@timestamp": 895435208, "clientip":"88.7.0.0", "request": "GET /images/teams_hm_bg.jpg HTTP/1.1", "status": 200, "size": 18794} +{"@timestamp": 895435210, "clientip":"40.180.2.0", "request": "GET /french/images/comp_hm_header.gif HTTP/1.0", "status": 200, "size": 1189} +{"@timestamp": 895435210, "clientip":"40.180.2.0", "request": "GET /images/dot.gif HTTP/1.0", "status": 200, "size": 43} +{"@timestamp": 895435210, "clientip":"30.20.6.0", "request": "GET /images/nav_bg_bottom.jpg HTTP/1.0", "status": 200, "size": 8389} +{"@timestamp": 895435211, "clientip":"151.44.1.0", "request": "GET /english/news/22bel065.htm HTTP/1.0", "status": 200, "size": 10974} +{"@timestamp": 895435211, "clientip":"30.20.6.0", "request": "GET /images/hm_nbg.jpg HTTP/1.0", "status": 200, "size": 23521} +{"@timestamp": 895435212, "clientip":"40.180.2.0", "request": "GET /french/images/comp_bu_stage2n.gif HTTP/1.0", "status": 200, "size": 996} +{"@timestamp": 895435212, "clientip":"71.190.4.0", "request": "GET /images/tck_pkit_fx_c.jpg HTTP/1.1", "status": 200, "size": 11950} +{"@timestamp": 895435212, "clientip":"88.7.0.0", "request": "GET /english/images/team_group_header_e.gif HTTP/1.1", "status": 200, "size": 643} +{"@timestamp": 895435213, "clientip":"88.7.0.0", "request": "GET /english/images/team_group_header_g.gif HTTP/1.1", "status": 200, "size": 641} +{"@timestamp": 895435213, "clientip":"40.180.2.0", "request": "GET /french/images/france98b.gif HTTP/1.0", "status": 200, "size": 2122} +{"@timestamp": 895435213, "clientip":"27.20.6.0", "request": "GET /english/playing/download/download.html HTTP/1.0", "status": 200, "size": 13856} +{"@timestamp": 895435214, "clientip":"241.58.0.0", "request": "GET /images/102324.gif HTTP/1.0", "status": 200, "size": 1809} +{"@timestamp": 895435214, "clientip":"30.20.6.0", "request": "GET /images/nav_bg_top.gif HTTP/1.0", "status": 200, "size": 929} +{"@timestamp": 895435215, "clientip":"71.190.4.0", "request": "GET /images/tck_pkit_prev.jpg HTTP/1.1", "status": 200, "size": 9463} +{"@timestamp": 895435215, "clientip":"40.180.2.0", "request": "GET /french/images/comp_bu_stage1n_on.gif HTTP/1.0", "status": 200, "size": 1466} +{"@timestamp": 895435216, "clientip":"27.20.6.0", "request": "GET /english/playing/images/mascots.GIF HTTP/1.0", "status": 200, "size": 1275} +{"@timestamp": 895435216, "clientip":"27.20.6.0", "request": "GET /english/playing/images/downloads_on.GIF HTTP/1.0", "status": 200, "size": 1330} +{"@timestamp": 895435218, "clientip":"241.58.0.0", "request": "GET /images/bel.gif HTTP/1.0", "status": 200, "size": 2169} +{"@timestamp": 895435218, "clientip":"71.190.4.0", "request": "GET /images/arw_lk.gif HTTP/1.1", "status": 200, "size": 669} +{"@timestamp": 895435218, "clientip":"40.180.2.0", "request": "GET /french/images/comp_bu_refsn.gif HTTP/1.0", "status": 200, "size": 934} +{"@timestamp": 895435218, "clientip":"40.180.2.0", "request": "GET /french/images/comp_bu_groupsn.gif HTTP/1.0", "status": 200, "size": 1001} +{"@timestamp": 895435218, "clientip":"32.20.6.0", "request": "GET / HTTP/1.1", "status": 200, "size": 9087} +{"@timestamp": 895435219, "clientip":"30.20.6.0", "request": "GET /images/logo_cfo.gif HTTP/1.0", "status": 200, "size": 1504} +{"@timestamp": 895435220, "clientip":"40.180.2.0", "request": "GET /french/images/comp_bu_calendar.gif HTTP/1.0", "status": 200, "size": 1185} +{"@timestamp": 895435220, "clientip":"27.20.6.0", "request": "GET /english/playing/download/images/screenbutton.gif HTTP/1.0", "status": 200, "size": 780} +{"@timestamp": 895435220, "clientip":"30.20.6.0", "request": "GET /french/ProScroll.class HTTP/1.0", "status": 200, "size": 6507} +{"@timestamp": 895435221, "clientip":"27.20.6.0", "request": "GET /english/playing/download/images/big.bird.gif HTTP/1.0", "status": 200, "size": 4870} +{"@timestamp": 895435221, "clientip":"15.7.0.0", "request": "GET /english/frntpage.htm HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435221, "clientip":"59.1.0.0", "request": "GET /english/images/comp_bu_stage1n.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435222, "clientip":"39.105.4.0", "request": "GET /english/splash_inet.html HTTP/1.0", "status": 200, "size": 3933} +{"@timestamp": 895435222, "clientip":"54.104.4.0", "request": "GET /english/playing/trivia.html HTTP/1.1", "status": 200, "size": 7978} +{"@timestamp": 895435222, "clientip":"182.168.2.0", "request": "GET /english/teams/teambio125.htm HTTP/1.0", "status": 200, "size": 10231} +{"@timestamp": 895435222, "clientip":"167.2.0.0", "request": "GET /images/home_intro.anim.gif HTTP/1.0", "status": 200, "size": 60349} +{"@timestamp": 895435222, "clientip":"31.105.4.0", "request": "GET /english/competition/stage2.htm HTTP/1.1", "status": 200, "size": 16861} +{"@timestamp": 895435222, "clientip":"99.190.4.0", "request": "GET /english/playing/body.html HTTP/1.0", "status": 200, "size": 4955} +{"@timestamp": 895435222, "clientip":"30.20.6.0", "request": "GET /french/images/nav_team_off.gif HTTP/1.0", "status": 200, "size": 870} +{"@timestamp": 895435222, "clientip":"27.20.6.0", "request": "GET /english/playing/download/images/screentitle.gif HTTP/1.0", "status": 200, "size": 1985} +{"@timestamp": 895435223, "clientip":"241.58.0.0", "request": "GET /images/10504.jpg HTTP/1.0", "status": 200, "size": 11802} +{"@timestamp": 895435223, "clientip":"151.44.1.0", "request": "GET /images/102324.gif HTTP/1.0", "status": 200, "size": 1809} +{"@timestamp": 895435223, "clientip":"71.190.4.0", "request": "GET /images/fra1938.gif HTTP/1.1", "status": 200, "size": 6379} +{"@timestamp": 895435223, "clientip":"98.190.4.0", "request": "GET /english/frntpage.htm HTTP/1.0", "status": 200, "size": 11980} +{"@timestamp": 895435223, "clientip":"59.1.0.0", "request": "GET /english/images/comp_bu_calendar_on.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435223, "clientip":"121.1.0.0", "request": "GET /images/home_intro.anim.gif HTTP/1.0", "status": 200, "size": 60349} +{"@timestamp": 895435223, "clientip":"218.213.3.0", "request": "GET /english/index.html HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435223, "clientip":"105.190.4.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435223, "clientip":"26.105.4.0", "request": "GET /english/competition/format_of_tournament.htm HTTP/1.0", "status": 200, "size": 7893} +{"@timestamp": 895435224, "clientip":"59.1.0.0", "request": "GET /images/cal_paris.gif HTTP/1.0", "status": 200, "size": 307} +{"@timestamp": 895435224, "clientip":"218.213.3.0", "request": "GET /english/nav_top_inet.html HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435224, "clientip":"218.213.3.0", "request": "GET /english/nav_inet.html HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435224, "clientip":"218.213.3.0", "request": "GET /english/splash_inet.html HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435224, "clientip":"36.12.3.0", "request": "GET /english/news/1605corr.htm HTTP/1.0", "status": 200, "size": 2736} +{"@timestamp": 895435224, "clientip":"32.20.6.0", "request": "GET /images/home_bg_stars.gif HTTP/1.1", "status": 200, "size": 2787} +{"@timestamp": 895435224, "clientip":"30.20.6.0", "request": "GET /french/images/nav_news_off.gif HTTP/1.0", "status": 200, "size": 855} +{"@timestamp": 895435225, "clientip":"40.180.2.0", "request": "GET /french/images/nav_store_off.gif HTTP/1.0", "status": 200, "size": 976} +{"@timestamp": 895435225, "clientip":"99.190.4.0", "request": "GET /english/playing/body.html HTTP/1.0", "status": 200, "size": 4955} +{"@timestamp": 895435225, "clientip":"43.105.4.0", "request": "GET /images/home_eng_phrase.gif HTTP/1.0", "status": 200, "size": 2861} +{"@timestamp": 895435225, "clientip":"59.1.0.0", "request": "GET /images/cal-lens.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435225, "clientip":"43.105.4.0", "request": "GET /images/home_fr_button.gif HTTP/1.0", "status": 200, "size": 2140} +{"@timestamp": 895435225, "clientip":"182.168.2.0", "request": "GET /images/bg_generic.jpg HTTP/1.0", "status": 200, "size": 21127} +{"@timestamp": 895435225, "clientip":"182.168.2.0", "request": "GET /images/space.gif HTTP/1.0", "status": 200, "size": 43} +{"@timestamp": 895435225, "clientip":"183.1.0.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435225, "clientip":"31.105.4.0", "request": "GET /english/images/comp_bu_stage1n.gif HTTP/1.1", "status": 200, "size": 1548} +{"@timestamp": 895435225, "clientip":"26.105.4.0", "request": "GET /english/competition/format_of_tournament.htm HTTP/1.0", "status": 200, "size": 7893} +{"@timestamp": 895435225, "clientip":"59.1.0.0", "request": "GET /images/cal_stdenis.gif HTTP/1.0", "status": 200, "size": 402} +{"@timestamp": 895435225, "clientip":"201.255.2.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435226, "clientip":"19.105.4.0", "request": "GET /images/102377.gif HTTP/1.0", "status": 200, "size": 1583} +{"@timestamp": 895435226, "clientip":"19.105.4.0", "request": "GET /images/team_goals_e.gif HTTP/1.0", "status": 200, "size": 812} +{"@timestamp": 895435226, "clientip":"59.1.0.0", "request": "GET /images/cal_lyon.gif HTTP/1.0", "status": 200, "size": 286} +{"@timestamp": 895435226, "clientip":"31.105.4.0", "request": "GET /english/images/comp_bu_stage2n_on.gif HTTP/1.1", "status": 200, "size": 996} +{"@timestamp": 895435226, "clientip":"59.1.0.0", "request": "GET /images/cal_steti.gif HTTP/1.0", "status": 200, "size": 1125} +{"@timestamp": 895435226, "clientip":"19.105.4.0", "request": "GET /images/team_defs_e.gif HTTP/1.0", "status": 200, "size": 772} +{"@timestamp": 895435226, "clientip":"31.105.4.0", "request": "GET /images/comp_stage2_brc_top.gif HTTP/1.1", "status": 200, "size": 163} +{"@timestamp": 895435226, "clientip":"243.46.0.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435226, "clientip":"27.20.6.0", "request": "GET /english/playing/download/images/bucket.gif HTTP/1.0", "status": 200, "size": 1662} +{"@timestamp": 895435227, "clientip":"40.180.2.0", "request": "GET /images/calendarvf.swf HTTP/1.0", "status": 200, "size": 55584} +{"@timestamp": 895435227, "clientip":"40.180.2.0", "request": "GET /french/competition/headtohead0.htm HTTP/1.0", "status": 200, "size": 22692} +{"@timestamp": 895435227, "clientip":"80.38.0.0", "request": "GET /english/teams/teambio121.htm HTTP/1.0", "status": 200, "size": 10557} +{"@timestamp": 895435227, "clientip":"59.1.0.0", "request": "GET /images/cal_mars.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435227, "clientip":"53.105.4.0", "request": "GET /english/news/fig0303.htm HTTP/1.0", "status": 200, "size": 5839} +{"@timestamp": 895435227, "clientip":"182.168.2.0", "request": "GET /images/home_intro.anim.gif HTTP/1.0", "status": 200, "size": 60349} +{"@timestamp": 895435227, "clientip":"59.1.0.0", "request": "GET /images/cal_mont.gif HTTP/1.0", "status": 200, "size": 316} +{"@timestamp": 895435227, "clientip":"59.1.0.0", "request": "GET /images/cal_toul.gif HTTP/1.0", "status": 200, "size": 380} +{"@timestamp": 895435227, "clientip":"243.46.0.0", "request": "GET /images/home_eng_phrase.gif HTTP/1.0", "status": 200, "size": 2861} +{"@timestamp": 895435228, "clientip":"130.19.1.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435228, "clientip":"59.1.0.0", "request": "GET /images/cal_bord.gif HTTP/1.0", "status": 200, "size": 416} +{"@timestamp": 895435228, "clientip":"19.105.4.0", "request": "GET /images/arw_llk.gif HTTP/1.0", "status": 200, "size": 454} +{"@timestamp": 895435228, "clientip":"19.105.4.0", "request": "GET /images/team_fwds_e.gif HTTP/1.0", "status": 200, "size": 761} +{"@timestamp": 895435228, "clientip":"31.105.4.0", "request": "GET /images/comp_stage2_brc_topr.gif HTTP/1.1", "status": 200, "size": 163} +{"@timestamp": 895435228, "clientip":"19.105.4.0", "request": "GET /images/team_mids_e.gif HTTP/1.0", "status": 200, "size": 807} +{"@timestamp": 895435228, "clientip":"243.46.0.0", "request": "GET /images/home_fr_button.gif HTTP/1.0", "status": 200, "size": 2140} +{"@timestamp": 895435228, "clientip":"31.105.4.0", "request": "GET /images/comp_stage2_brc_bot.gif HTTP/1.1", "status": 200, "size": 160} +{"@timestamp": 895435228, "clientip":"98.190.4.0", "request": "GET /images/backnews.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435228, "clientip":"31.105.4.0", "request": "GET /images/comp_stage2_brc_botr.gif HTTP/1.1", "status": 200, "size": 158} +{"@timestamp": 895435228, "clientip":"98.190.4.0", "request": "GET /english/images/fpnewstop.gif HTTP/1.0", "status": 200, "size": 568} +{"@timestamp": 895435228, "clientip":"98.190.4.0", "request": "GET /english/images/space.gif HTTP/1.0", "status": 200, "size": 42} +{"@timestamp": 895435228, "clientip":"243.46.0.0", "request": "GET /images/home_tool.gif HTTP/1.0", "status": 200, "size": 327} +{"@timestamp": 895435228, "clientip":"182.168.2.0", "request": "GET /english/images/team_hm_header.gif HTTP/1.0", "status": 200, "size": 763} +{"@timestamp": 895435228, "clientip":"26.105.4.0", "request": "GET /english/images/comp_hm_header.gif HTTP/1.0", "status": 200, "size": 1189} +{"@timestamp": 895435228, "clientip":"243.46.0.0", "request": "GET /images/home_eng_button.gif HTTP/1.0", "status": 200, "size": 1927} +{"@timestamp": 895435228, "clientip":"31.105.4.0", "request": "GET /images/comp_stage2_brc.gif HTTP/1.1", "status": 200, "size": 82} +{"@timestamp": 895435228, "clientip":"59.1.0.0", "request": "GET /images/cal_nant.gif HTTP/1.0", "status": 200, "size": 359} +{"@timestamp": 895435228, "clientip":"218.213.3.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435229, "clientip":"243.46.0.0", "request": "GET /images/home_sponsor.gif HTTP/1.0", "status": 200, "size": 2491} +{"@timestamp": 895435229, "clientip":"88.7.0.0", "request": "GET /images/10563.jpg HTTP/1.1", "status": 200, "size": 18697} +{"@timestamp": 895435229, "clientip":"88.7.0.0", "request": "GET /images/news_hm_arw.gif HTTP/1.1", "status": 200, "size": 152} +{"@timestamp": 895435229, "clientip":"88.7.0.0", "request": "GET /images/102327.gif HTTP/1.1", "status": 200, "size": 1559} +{"@timestamp": 895435229, "clientip":"103.55.3.0", "request": "GET /images/s102477.gif HTTP/1.1", "status": 200, "size": 214} +{"@timestamp": 895435229, "clientip":"106.190.4.0", "request": "GET /images/arw_lk.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435229, "clientip":"40.180.2.0", "request": "GET /french/images/comp_bu_stage1n.gif HTTP/1.0", "status": 200, "size": 1547} +{"@timestamp": 895435230, "clientip":"30.20.6.0", "request": "GET /french/images/nav_venue_off.gif HTTP/1.0", "status": 200, "size": 945} +{"@timestamp": 895435230, "clientip":"40.180.2.0", "request": "GET /french/images/comp_bu_groupsn_on.gif HTTP/1.0", "status": 200, "size": 1193} +{"@timestamp": 895435230, "clientip":"201.255.2.0", "request": "GET /images/home_eng_phrase.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435230, "clientip":"107.190.4.0", "request": "GET /images/home_bg_stars.gif HTTP/1.0", "status": 200, "size": 2557} +{"@timestamp": 895435230, "clientip":"201.255.2.0", "request": "GET /images/home_bg_stars.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435230, "clientip":"103.55.3.0", "request": "GET /images/s102382.gif HTTP/1.1", "status": 200, "size": 102} +{"@timestamp": 895435230, "clientip":"39.105.4.0", "request": "GET /images/space.gif HTTP/1.0", "status": 200, "size": 43} +{"@timestamp": 895435230, "clientip":"201.255.2.0", "request": "GET /images/home_fr_phrase.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435230, "clientip":"106.190.4.0", "request": "GET /images/logo_cfo.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435230, "clientip":"201.255.2.0", "request": "GET /images/home_intro.anim.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435230, "clientip":"26.105.4.0", "request": "GET /english/images/comp_bu_stage1_off.gif HTTP/1.0", "status": 200, "size": 1206} +{"@timestamp": 895435230, "clientip":"88.105.4.0", "request": "GET /english/history/body.html HTTP/1.0", "status": 200, "size": 2909} +{"@timestamp": 895435230, "clientip":"43.105.4.0", "request": "GET /images/home_eng_button.gif HTTP/1.0", "status": 200, "size": 1927} +{"@timestamp": 895435230, "clientip":"201.255.2.0", "request": "GET /images/home_tool.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435230, "clientip":"201.255.2.0", "request": "GET /images/home_eng_button.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435231, "clientip":"103.55.3.0", "request": "GET /images/s102324.gif HTTP/1.1", "status": 200, "size": 176} +{"@timestamp": 895435231, "clientip":"201.255.2.0", "request": "GET /images/home_fr_button.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435231, "clientip":"201.255.2.0", "request": "GET /images/home_sponsor.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435231, "clientip":"57.190.4.0", "request": "GET /images/102323.gif HTTP/1.1", "status": 200, "size": 1340} +{"@timestamp": 895435231, "clientip":"7.218.3.0", "request": "GET /english/venues/body.html HTTP/1.0", "status": 200, "size": 3055} +{"@timestamp": 895435231, "clientip":"26.105.4.0", "request": "GET /english/images/comp_bu_stage2_off.gif HTTP/1.0", "status": 200, "size": 898} +{"@timestamp": 895435231, "clientip":"45.105.4.0", "request": "GET /english/images/nav_sitemap_off.gif HTTP/1.0", "status": 200, "size": 416} +{"@timestamp": 895435231, "clientip":"26.105.4.0", "request": "GET /english/images/comp_bu_group_off.gif HTTP/1.0", "status": 200, "size": 1557} +{"@timestamp": 895435231, "clientip":"243.46.0.0", "request": "GET /english/splash_inet.html HTTP/1.0", "status": 200, "size": 3933} +{"@timestamp": 895435231, "clientip":"243.46.0.0", "request": "GET /english/nav_inet.html HTTP/1.0", "status": 200, "size": 2642} +{"@timestamp": 895435231, "clientip":"52.79.0.0", "request": "GET /images/home_eng_phrase.gif HTTP/1.0", "status": 200, "size": 2861} +{"@timestamp": 895435231, "clientip":"99.190.4.0", "request": "GET /english/playing/images/play_hm_bg_opt1.jpg HTTP/1.0", "status": 200, "size": 44502} +{"@timestamp": 895435231, "clientip":"43.105.4.0", "request": "GET /images/home_tool.gif HTTP/1.0", "status": 200, "size": 327} +{"@timestamp": 895435231, "clientip":"45.105.4.0", "request": "GET /english/images/nav_venue_off.gif HTTP/1.0", "status": 200, "size": 870} +{"@timestamp": 895435231, "clientip":"98.190.4.0", "request": "GET /english/images/news_btn_letter_off.gif HTTP/1.0", "status": 200, "size": 852} +{"@timestamp": 895435231, "clientip":"98.190.4.0", "request": "GET /english/images/top_stories.gif HTTP/1.0", "status": 200, "size": 1210} +{"@timestamp": 895435231, "clientip":"98.190.4.0", "request": "GET /images/hm_f98_top.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435231, "clientip":"243.46.0.0", "request": "GET /images/hm_nbg.jpg HTTP/1.0", "status": 200, "size": 23521} +{"@timestamp": 895435231, "clientip":"243.46.0.0", "request": "GET /images/space.gif HTTP/1.0", "status": 200, "size": 43} +{"@timestamp": 895435231, "clientip":"52.79.0.0", "request": "GET /images/home_fr_button.gif HTTP/1.0", "status": 200, "size": 2140} +{"@timestamp": 895435231, "clientip":"218.213.3.0", "request": "GET /images/logo_cfo.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435231, "clientip":"52.79.0.0", "request": "GET /images/home_tool.gif HTTP/1.0", "status": 200, "size": 327} +{"@timestamp": 895435231, "clientip":"218.213.3.0", "request": "GET /images/home_eng_phrase.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435232, "clientip":"145.188.0.0", "request": "GET /images/home_sponsor.gif HTTP/1.0", "status": 200, "size": 2491} +{"@timestamp": 895435232, "clientip":"218.213.3.0", "request": "GET /images/nav_bg_top.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435232, "clientip":"53.105.4.0", "request": "GET /english/images/news_hm_header.gif HTTP/1.0", "status": 200, "size": 527} +{"@timestamp": 895435232, "clientip":"218.213.3.0", "request": "GET /images/nav_bg_bottom.jpg HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435232, "clientip":"218.213.3.0", "request": "GET /english/images/nav_comp_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435232, "clientip":"53.105.4.0", "request": "GET /english/images/news_bu_press_off.gif HTTP/1.0", "status": 200, "size": 847} +{"@timestamp": 895435232, "clientip":"218.213.3.0", "request": "GET /images/hm_nbg.jpg HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435232, "clientip":"218.213.3.0", "request": "GET /images/space.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435232, "clientip":"218.213.3.0", "request": "GET /english/images/hm_official.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435232, "clientip":"53.105.4.0", "request": "GET /english/images/news_bu_letter_off.gif HTTP/1.0", "status": 200, "size": 940} +{"@timestamp": 895435232, "clientip":"218.213.3.0", "request": "GET /english/images/nav_tickets_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435232, "clientip":"248.0.0.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435232, "clientip":"243.46.0.0", "request": "GET /english/images/nav_news_off.gif HTTP/1.0", "status": 200, "size": 853} +{"@timestamp": 895435232, "clientip":"243.46.0.0", "request": "GET /images/hm_anime_e.gif HTTP/1.0", "status": 200, "size": 7376} +{"@timestamp": 895435232, "clientip":"243.46.0.0", "request": "GET /english/images/nav_comp_off.gif HTTP/1.0", "status": 200, "size": 994} +{"@timestamp": 895435232, "clientip":"30.20.6.0", "request": "GET /french/images/nav_history_off.gif HTTP/1.0", "status": 200, "size": 966} +{"@timestamp": 895435233, "clientip":"218.213.3.0", "request": "GET /images/space.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435233, "clientip":"26.105.4.0", "request": "GET /english/images/comp_bu_ref_off.gif HTTP/1.0", "status": 200, "size": 733} +{"@timestamp": 895435233, "clientip":"218.213.3.0", "request": "GET /english/images/nav_history_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435233, "clientip":"103.55.3.0", "request": "GET /images/s102328.gif HTTP/1.1", "status": 200, "size": 236} +{"@timestamp": 895435233, "clientip":"45.105.4.0", "request": "GET /images/space.gif HTTP/1.0", "status": 200, "size": 43} +{"@timestamp": 895435233, "clientip":"218.213.3.0", "request": "GET /english/images/nav_hosts_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435233, "clientip":"243.46.0.0", "request": "GET /english/images/nav_field_off.gif HTTP/1.0", "status": 200, "size": 1005} +{"@timestamp": 895435233, "clientip":"45.105.4.0", "request": "GET /images/hm_anime_e.gif HTTP/1.0", "status": 200, "size": 7376} +{"@timestamp": 895435233, "clientip":"243.46.0.0", "request": "GET /english/images/nav_store_off.gif HTTP/1.0", "status": 200, "size": 934} +{"@timestamp": 895435233, "clientip":"243.46.0.0", "request": "GET /english/images/nav_home_off.gif HTTP/1.0", "status": 200, "size": 828} +{"@timestamp": 895435233, "clientip":"45.105.4.0", "request": "GET /images/hm_brdl.gif HTTP/1.0", "status": 200, "size": 208} +{"@timestamp": 895435234, "clientip":"218.213.3.0", "request": "GET /images/hm_anime_e.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435234, "clientip":"39.105.4.0", "request": "GET /english/ProScroll.class HTTP/1.0", "status": 200, "size": 6507} +{"@timestamp": 895435234, "clientip":"218.213.3.0", "request": "GET /images/hm_brdl.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435234, "clientip":"243.46.0.0", "request": "GET /images/hm_brdl.gif HTTP/1.0", "status": 200, "size": 208} +{"@timestamp": 895435234, "clientip":"243.46.0.0", "request": "GET /english/images/nav_venue_off.gif HTTP/1.0", "status": 200, "size": 870} +{"@timestamp": 895435234, "clientip":"48.4.0.0", "request": "GET /images/home_intro.anim.gif HTTP/1.0", "status": 200, "size": 60349} +{"@timestamp": 895435234, "clientip":"243.46.0.0", "request": "GET /images/hm_brdr.gif HTTP/1.0", "status": 200, "size": 235} +{"@timestamp": 895435234, "clientip":"243.46.0.0", "request": "GET /images/dot.gif HTTP/1.0", "status": 200, "size": 43} +{"@timestamp": 895435234, "clientip":"57.190.4.0", "request": "GET /images/10503.jpg HTTP/1.1", "status": 200, "size": 13024} +{"@timestamp": 895435234, "clientip":"130.19.1.0", "request": "GET /images/home_bg_stars.gif HTTP/1.0", "status": 200, "size": 2557} +{"@timestamp": 895435234, "clientip":"218.213.3.0", "request": "GET /english/images/nav_news_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435234, "clientip":"27.20.6.0", "request": "GET /english/playing/download/images/box_saver2.gif HTTP/1.0", "status": 200, "size": 2264} +{"@timestamp": 895435234, "clientip":"30.20.6.0", "request": "GET /french/images/nav_field_off.gif HTTP/1.0", "status": 200, "size": 982} +{"@timestamp": 895435235, "clientip":"27.20.6.0", "request": "GET /english/playing/download/images/box_saver1.gif HTTP/1.0", "status": 200, "size": 2979} +{"@timestamp": 895435235, "clientip":"243.46.0.0", "request": "GET /images/hm_linkf.gif HTTP/1.0", "status": 200, "size": 123} +{"@timestamp": 895435235, "clientip":"77.190.4.0", "request": "GET /english/teams/teamgroup.htm HTTP/1.0", "status": 200, "size": 11971} +{"@timestamp": 895435235, "clientip":"66.192.2.0", "request": "GET /english/playing/mascot/mascot.html HTTP/1.0", "status": 200, "size": 5041} +{"@timestamp": 895435235, "clientip":"98.190.4.0", "request": "GET /images/case5.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435235, "clientip":"243.46.0.0", "request": "GET /images/nav_bg_bottom.jpg HTTP/1.0", "status": 200, "size": 8389} +{"@timestamp": 895435235, "clientip":"243.46.0.0", "request": "GET /images/info.gif HTTP/1.0", "status": 200, "size": 1251} +{"@timestamp": 895435235, "clientip":"98.190.4.0", "request": "GET /images/ligne4_latebreak.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435235, "clientip":"218.213.3.0", "request": "GET /english/images/nav_store_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435235, "clientip":"108.190.4.0", "request": "GET / HTTP/1.1", "status": 200, "size": 8857} +{"@timestamp": 895435235, "clientip":"98.190.4.0", "request": "GET /images/ligneb01.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435235, "clientip":"53.105.4.0", "request": "GET /english/images/news_bu_kits_off.gif HTTP/1.0", "status": 200, "size": 1027} +{"@timestamp": 895435235, "clientip":"57.190.4.0", "request": "GET /images/arg.gif HTTP/1.1", "status": 200, "size": 1903} +{"@timestamp": 895435235, "clientip":"218.213.3.0", "request": "GET /english/images/nav_field_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435235, "clientip":"218.213.3.0", "request": "GET /images/hm_day_e.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435236, "clientip":"66.192.2.0", "request": "GET /english/images/nav_team_off.gif HTTP/1.0", "status": 200, "size": 776} +{"@timestamp": 895435236, "clientip":"218.213.3.0", "request": "GET /images/hm_brdr.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435236, "clientip":"218.213.3.0", "request": "GET /english/images/nav_home_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435236, "clientip":"218.213.3.0", "request": "GET /english/images/nav_sitemap_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435236, "clientip":"103.190.4.0", "request": "GET /english/index.html HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435236, "clientip":"66.192.2.0", "request": "GET /english/images/nav_venue_off.gif HTTP/1.0", "status": 200, "size": 870} +{"@timestamp": 895435236, "clientip":"98.190.4.0", "request": "GET /images/ligne01.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435236, "clientip":"218.213.3.0", "request": "GET /images/hm_arw.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435236, "clientip":"53.105.4.0", "request": "GET /images/figpic1.gif HTTP/1.0", "status": 200, "size": 2993} +{"@timestamp": 895435236, "clientip":"218.213.3.0", "request": "GET /english/images/nav_logo_sponsors.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435236, "clientip":"218.213.3.0", "request": "GET /images/hm_linkf.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435236, "clientip":"53.105.4.0", "request": "GET /images/figpic3.gif HTTP/1.0", "status": 200, "size": 3038} +{"@timestamp": 895435236, "clientip":"170.59.3.0", "request": "GET / HTTP/1.1", "status": 200, "size": 8857} +{"@timestamp": 895435236, "clientip":"30.20.6.0", "request": "GET /french/images/nav_tickets_off.gif HTTP/1.0", "status": 200, "size": 965} +{"@timestamp": 895435236, "clientip":"145.188.0.0", "request": "GET /images/home_fr_button.gif HTTP/1.0", "status": 200, "size": 2140} +{"@timestamp": 895435237, "clientip":"30.20.6.0", "request": "GET /french/images/nav_hosts_off.gif HTTP/1.0", "status": 200, "size": 1139} +{"@timestamp": 895435237, "clientip":"41.105.4.0", "request": "GET /images/32t49803.jpg HTTP/1.1", "status": 200, "size": 4581} +{"@timestamp": 895435237, "clientip":"57.190.4.0", "request": "GET /images/32t49803.jpg HTTP/1.1", "status": 200, "size": 4581} +{"@timestamp": 895435237, "clientip":"218.213.3.0", "request": "GET /english/images/nav_team_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435237, "clientip":"41.105.4.0", "request": "GET /images/bg_generic.jpg HTTP/1.1", "status": 200, "size": 21127} +{"@timestamp": 895435237, "clientip":"218.213.3.0", "request": "GET /english/ProScroll.class HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435237, "clientip":"66.192.2.0", "request": "GET /english/playing/images/play_header.gif HTTP/1.0", "status": 200, "size": 2262} +{"@timestamp": 895435237, "clientip":"218.213.3.0", "request": "GET /images/info.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435238, "clientip":"109.190.4.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435238, "clientip":"98.190.4.0", "request": "GET /english/images/today_new.gif HTTP/1.0", "status": 200, "size": 809} +{"@timestamp": 895435238, "clientip":"98.190.4.0", "request": "GET /images/ligneb.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435238, "clientip":"98.190.4.0", "request": "GET /english/images/news_btn_kits_off.gif HTTP/1.0", "status": 200, "size": 933} +{"@timestamp": 895435238, "clientip":"53.105.4.0", "request": "GET /images/bg_generic.jpg HTTP/1.0", "status": 200, "size": 21127} +{"@timestamp": 895435238, "clientip":"41.105.4.0", "request": "GET /english/images/team_group_header_a.gif HTTP/1.1", "status": 200, "size": 639} +{"@timestamp": 895435238, "clientip":"41.105.4.0", "request": "GET /images/teams_hm_bg.jpg HTTP/1.1", "status": 200, "size": 18794} +{"@timestamp": 895435238, "clientip":"50.114.2.0", "request": "GET /french/news/1605colo.htm HTTP/1.0", "status": 200, "size": 3147} +{"@timestamp": 895435238, "clientip":"41.105.4.0", "request": "GET /images/s102386.gif HTTP/1.1", "status": 200, "size": 279} +{"@timestamp": 895435238, "clientip":"41.105.4.0", "request": "GET /images/teams_hm_bracket.gif HTTP/1.1", "status": 200, "size": 655} +{"@timestamp": 895435238, "clientip":"52.79.0.0", "request": "GET /images/home_sponsor.gif HTTP/1.0", "status": 200, "size": 2491} +{"@timestamp": 895435238, "clientip":"218.213.3.0", "request": "GET /images/dot.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435238, "clientip":"109.190.4.0", "request": "GET /images/home_logo.gif HTTP/1.0", "status": 200, "size": 3401} +{"@timestamp": 895435238, "clientip":"109.190.4.0", "request": "GET /images/home_fr_phrase.gif HTTP/1.0", "status": 200, "size": 2843} +{"@timestamp": 895435238, "clientip":"109.190.4.0", "request": "GET /images/home_bg_stars.gif HTTP/1.0", "status": 200, "size": 2557} +{"@timestamp": 895435238, "clientip":"109.190.4.0", "request": "GET /images/home_eng_phrase.gif HTTP/1.0", "status": 200, "size": 2861} +{"@timestamp": 895435238, "clientip":"71.190.4.0", "request": "GET /images/ita1934.gif HTTP/1.1", "status": 200, "size": 5383} +{"@timestamp": 895435238, "clientip":"71.190.4.0", "request": "GET /images/dot.gif HTTP/1.1", "status": 200, "size": 43} +{"@timestamp": 895435239, "clientip":"30.20.6.0", "request": "GET /french/images/nav_store_off.gif HTTP/1.0", "status": 200, "size": 976} +{"@timestamp": 895435239, "clientip":"27.20.6.0", "request": "GET /english/playing/images/play_down_side.gif HTTP/1.0", "status": 200, "size": 3194} +{"@timestamp": 895435239, "clientip":"66.192.2.0", "request": "GET /english/playing/images/france98b.GIF HTTP/1.0", "status": 200, "size": 597} +{"@timestamp": 895435239, "clientip":"109.190.4.0", "request": "GET /images/home_tool.gif HTTP/1.0", "status": 200, "size": 327} +{"@timestamp": 895435239, "clientip":"66.192.2.0", "request": "GET /english/images/nav_tickets_off.gif HTTP/1.0", "status": 200, "size": 937} +{"@timestamp": 895435239, "clientip":"39.105.4.0", "request": "GET /images/hm_anime_e.gif HTTP/1.0", "status": 200, "size": 7376} +{"@timestamp": 895435239, "clientip":"109.190.4.0", "request": "GET /images/home_sponsor.gif HTTP/1.0", "status": 200, "size": 2491} +{"@timestamp": 895435239, "clientip":"66.192.2.0", "request": "GET /english/playing/images/mascots_on.GIF HTTP/1.0", "status": 200, "size": 1324} +{"@timestamp": 895435239, "clientip":"218.213.3.0", "request": "GET /english/images/nav_venue_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435239, "clientip":"109.190.4.0", "request": "GET /images/home_eng_button.gif HTTP/1.0", "status": 200, "size": 1927} +{"@timestamp": 895435239, "clientip":"109.190.4.0", "request": "GET /images/home_fr_button.gif HTTP/1.0", "status": 200, "size": 2140} +{"@timestamp": 895435239, "clientip":"41.105.4.0", "request": "GET /images/s102327.gif HTTP/1.1", "status": 200, "size": 97} +{"@timestamp": 895435239, "clientip":"88.105.4.0", "request": "GET /english/history/images/history_hm_bg2.jpg HTTP/1.0", "status": 200, "size": 22515} +{"@timestamp": 895435239, "clientip":"45.105.4.0", "request": "GET /english/images/nav_hosts_off.gif HTTP/1.0", "status": 200, "size": 914} +{"@timestamp": 895435239, "clientip":"55.0.0.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435240, "clientip":"43.105.4.0", "request": "GET /images/home_sponsor.gif HTTP/1.0", "status": 200, "size": 2491} +{"@timestamp": 895435240, "clientip":"45.105.4.0", "request": "GET /english/images/nav_store_off.gif HTTP/1.0", "status": 200, "size": 934} +{"@timestamp": 895435240, "clientip":"41.105.4.0", "request": "GET /english/images/team_group_header_c.gif HTTP/1.1", "status": 200, "size": 670} +{"@timestamp": 895435240, "clientip":"109.190.4.0", "request": "GET /images/home_intro.anim.gif HTTP/1.0", "status": 200, "size": 60349} +{"@timestamp": 895435240, "clientip":"52.79.0.0", "request": "GET /images/home_eng_button.gif HTTP/1.0", "status": 200, "size": 1927} +{"@timestamp": 895435240, "clientip":"51.105.4.0", "request": "GET /english/teams/teamgroup.htm HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435240, "clientip":"45.105.4.0", "request": "GET /images/hm_day_e.gif HTTP/1.0", "status": 200, "size": 499} +{"@timestamp": 895435240, "clientip":"243.46.0.0", "request": "GET /images/teams_hm_bg.jpg HTTP/1.0", "status": 200, "size": 18794} +{"@timestamp": 895435240, "clientip":"66.192.2.0", "request": "GET /english/images/nav_field_off.gif HTTP/1.0", "status": 200, "size": 1005} +{"@timestamp": 895435240, "clientip":"243.46.0.0", "request": "GET /english/images/team_group_header_a.gif HTTP/1.0", "status": 200, "size": 639} +{"@timestamp": 895435240, "clientip":"243.46.0.0", "request": "GET /english/images/teams_bu_group_on.gif HTTP/1.0", "status": 200, "size": 668} +{"@timestamp": 895435240, "clientip":"243.46.0.0", "request": "GET /english/images/teams_bu_confed_off.gif HTTP/1.0", "status": 200, "size": 1105} +{"@timestamp": 895435240, "clientip":"130.19.1.0", "request": "GET /images/home_fr_phrase.gif HTTP/1.0", "status": 200, "size": 2843} +{"@timestamp": 895435240, "clientip":"66.192.2.0", "request": "GET /english/images/nav_history_off.gif HTTP/1.0", "status": 200, "size": 914} +{"@timestamp": 895435240, "clientip":"66.192.2.0", "request": "GET /english/images/nav_hosts_off.gif HTTP/1.0", "status": 200, "size": 914} +{"@timestamp": 895435240, "clientip":"71.190.4.0", "request": "GET /images/ita1990.gif HTTP/1.1", "status": 200, "size": 3700} +{"@timestamp": 895435240, "clientip":"31.20.6.0", "request": "GET /french/terrain/mascot/images/footix.test.gif HTTP/1.0", "status": 404, "size": 320} +{"@timestamp": 895435241, "clientip":"27.20.6.0", "request": "GET /english/playing/download/images/box_saver3.gif HTTP/1.0", "status": 200, "size": 2161} +{"@timestamp": 895435241, "clientip":"243.46.0.0", "request": "GET /images/s102321.gif HTTP/1.0", "status": 200, "size": 218} +{"@timestamp": 895435241, "clientip":"243.46.0.0", "request": "GET /english/images/team_hm_header_shad.gif HTTP/1.0", "status": 200, "size": 1379} +{"@timestamp": 895435241, "clientip":"243.46.0.0", "request": "GET /images/s102330.gif HTTP/1.0", "status": 200, "size": 259} +{"@timestamp": 895435241, "clientip":"41.105.4.0", "request": "GET /images/s102338.gif HTTP/1.1", "status": 200, "size": 138} +{"@timestamp": 895435241, "clientip":"41.105.4.0", "request": "GET /images/s102487.gif HTTP/1.1", "status": 200, "size": 269} +{"@timestamp": 895435241, "clientip":"44.253.1.0", "request": "GET /images/home_intro.anim.gif HTTP/1.0", "status": 200, "size": 60349} +{"@timestamp": 895435241, "clientip":"243.46.0.0", "request": "GET /images/s102384.gif HTTP/1.0", "status": 200, "size": 148} +{"@timestamp": 895435241, "clientip":"66.192.2.0", "request": "GET /english/images/nav_store_off.gif HTTP/1.0", "status": 200, "size": 934} +{"@timestamp": 895435242, "clientip":"103.55.3.0", "request": "GET /images/s102380.gif HTTP/1.1", "status": 200, "size": 207} +{"@timestamp": 895435242, "clientip":"130.19.1.0", "request": "GET /images/home_eng_phrase.gif HTTP/1.0", "status": 200, "size": 2861} +{"@timestamp": 895435242, "clientip":"103.55.3.0", "request": "GET /french/images/team_group_header_f.gif HTTP/1.1", "status": 200, "size": 729} +{"@timestamp": 895435242, "clientip":"39.105.4.0", "request": "GET /images/hm_brdl.gif HTTP/1.0", "status": 200, "size": 208} +{"@timestamp": 895435242, "clientip":"170.59.3.0", "request": "GET /images/home_bg_stars.gif HTTP/1.1", "status": 200, "size": 2557} +{"@timestamp": 895435242, "clientip":"130.19.1.0", "request": "GET /images/home_fr_button.gif HTTP/1.0", "status": 200, "size": 2140} +{"@timestamp": 895435242, "clientip":"170.59.3.0", "request": "GET /images/home_fr_phrase.gif HTTP/1.1", "status": 200, "size": 2843} +{"@timestamp": 895435242, "clientip":"41.105.4.0", "request": "GET /images/s102381.gif HTTP/1.1", "status": 200, "size": 269} +{"@timestamp": 895435242, "clientip":"98.190.4.0", "request": "GET /english/news/newspkt.htm HTTP/1.0", "status": 200, "size": 5433} +{"@timestamp": 895435242, "clientip":"243.46.0.0", "request": "GET /images/teams_hm_bracket.gif HTTP/1.0", "status": 200, "size": 655} +{"@timestamp": 895435242, "clientip":"41.105.4.0", "request": "GET /images/s102424.gif HTTP/1.1", "status": 200, "size": 164} +{"@timestamp": 895435242, "clientip":"243.46.0.0", "request": "GET /images/s102386.gif HTTP/1.0", "status": 200, "size": 279} +{"@timestamp": 895435242, "clientip":"170.59.3.0", "request": "GET /images/home_fr_button.gif HTTP/1.1", "status": 200, "size": 2140} +{"@timestamp": 895435242, "clientip":"66.192.2.0", "request": "GET /english/images/nav_home_off.gif HTTP/1.0", "status": 200, "size": 828} +{"@timestamp": 895435242, "clientip":"53.105.4.0", "request": "GET /images/figpic5e.gif HTTP/1.0", "status": 200, "size": 2928} +{"@timestamp": 895435242, "clientip":"30.20.6.0", "request": "GET /french/images/nav_comp_off.gif HTTP/1.0", "status": 200, "size": 995} +{"@timestamp": 895435242, "clientip":"30.20.6.0", "request": "GET /french/images/nav_home_off.gif HTTP/1.0", "status": 200, "size": 915} +{"@timestamp": 895435242, "clientip":"71.190.4.0", "request": "GET /images/mex1970.gif HTTP/1.1", "status": 200, "size": 4730} +{"@timestamp": 895435243, "clientip":"31.20.6.0", "request": "GET /french/terrain/mascot/images/footix.test.gif HTTP/1.0", "status": 404, "size": 321} +{"@timestamp": 895435243, "clientip":"45.105.4.0", "request": "GET /english/images/nav_home_off.gif HTTP/1.0", "status": 200, "size": 828} +{"@timestamp": 895435243, "clientip":"39.105.4.0", "request": "GET /images/hm_arw.gif HTTP/1.0", "status": 200, "size": 1050} +{"@timestamp": 895435243, "clientip":"105.190.4.0", "request": "GET /images/home_bg_stars.gif HTTP/1.0", "status": 200, "size": 2557} +{"@timestamp": 895435243, "clientip":"66.192.2.0", "request": "GET /english/images/nav_sitemap_off.gif HTTP/1.0", "status": 200, "size": 416} +{"@timestamp": 895435243, "clientip":"99.190.4.0", "request": "GET /english/playing/images/play_hm_header.gif HTTP/1.0", "status": 200, "size": 2476} +{"@timestamp": 895435243, "clientip":"103.55.3.0", "request": "GET /images/s102376.gif HTTP/1.1", "status": 200, "size": 190} +{"@timestamp": 895435243, "clientip":"53.105.4.0", "request": "GET /images/11105.gif HTTP/1.0", "status": 200, "size": 114} +{"@timestamp": 895435243, "clientip":"41.105.4.0", "request": "GET /english/images/team_group_header_d.gif HTTP/1.1", "status": 200, "size": 646} +{"@timestamp": 895435243, "clientip":"45.105.4.0", "request": "GET /images/hm_arw.gif HTTP/1.0", "status": 200, "size": 1050} +{"@timestamp": 895435243, "clientip":"55.0.0.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435243, "clientip":"41.105.4.0", "request": "GET /images/s102326.gif HTTP/1.1", "status": 200, "size": 248} +{"@timestamp": 895435243, "clientip":"66.192.2.0", "request": "GET /english/images/nav_logo_sponsors.gif HTTP/1.0", "status": 200, "size": 1991} +{"@timestamp": 895435243, "clientip":"130.19.1.0", "request": "GET /images/home_tool.gif HTTP/1.0", "status": 200, "size": 327} +{"@timestamp": 895435243, "clientip":"66.192.2.0", "request": "GET /english/playing/images/downloads.GIF HTTP/1.0", "status": 200, "size": 1294} +{"@timestamp": 895435244, "clientip":"66.192.2.0", "request": "GET /english/playing/images/links.GIF HTTP/1.0", "status": 200, "size": 1394} +{"@timestamp": 895435244, "clientip":"53.105.4.0", "request": "GET /images/11101.gif HTTP/1.0", "status": 200, "size": 415} +{"@timestamp": 895435244, "clientip":"39.105.4.0", "request": "GET /images/hm_linkf.gif HTTP/1.0", "status": 200, "size": 123} +{"@timestamp": 895435244, "clientip":"99.190.4.0", "request": "GET /english/playing/images/anim/trivia_on.gif HTTP/1.0", "status": 200, "size": 1661} +{"@timestamp": 895435244, "clientip":"51.105.4.0", "request": "GET /images/teams_hm_bg.jpg HTTP/1.1", "status": 200, "size": 18794} +{"@timestamp": 895435244, "clientip":"99.190.4.0", "request": "GET /english/playing/images/play_hm_trivia.gif HTTP/1.0", "status": 200, "size": 796} +{"@timestamp": 895435244, "clientip":"99.190.4.0", "request": "GET /english/playing/images/anim/mascot_on.gif HTTP/1.0", "status": 200, "size": 2870} +{"@timestamp": 895435244, "clientip":"41.105.4.0", "request": "GET /images/s102383.gif HTTP/1.1", "status": 200, "size": 976} +{"@timestamp": 895435244, "clientip":"41.105.4.0", "request": "GET /images/s102477.gif HTTP/1.1", "status": 200, "size": 214} +{"@timestamp": 895435244, "clientip":"108.190.4.0", "request": "GET /images/home_eng_phrase.gif HTTP/1.1", "status": 200, "size": 2861} +{"@timestamp": 895435244, "clientip":"108.190.4.0", "request": "GET /images/home_bg_stars.gif HTTP/1.1", "status": 200, "size": 2557} +{"@timestamp": 895435244, "clientip":"30.20.6.0", "request": "GET /french/images/nav_sitemap_off.gif HTTP/1.0", "status": 200, "size": 413} +{"@timestamp": 895435245, "clientip":"30.20.6.0", "request": "GET /french/images/hm_official.gif HTTP/1.0", "status": 200, "size": 972} +{"@timestamp": 895435245, "clientip":"30.20.6.0", "request": "GET /images/space.gif HTTP/1.0", "status": 200, "size": 43} +{"@timestamp": 895435245, "clientip":"30.20.6.0", "request": "GET /french/images/nav_logo_sponsors.gif HTTP/1.0", "status": 200, "size": 1991} +{"@timestamp": 895435245, "clientip":"243.46.0.0", "request": "GET /english/images/team_group_header_b.gif HTTP/1.0", "status": 200, "size": 665} +{"@timestamp": 895435245, "clientip":"243.46.0.0", "request": "GET /images/s102336.gif HTTP/1.0", "status": 200, "size": 177} +{"@timestamp": 895435245, "clientip":"243.46.0.0", "request": "GET /images/s102325.gif HTTP/1.0", "status": 200, "size": 187} +{"@timestamp": 895435245, "clientip":"108.190.4.0", "request": "GET /images/home_fr_phrase.gif HTTP/1.1", "status": 200, "size": 2843} +{"@timestamp": 895435245, "clientip":"99.190.4.0", "request": "GET /english/playing/images/play_hm_mascot.gif HTTP/1.0", "status": 200, "size": 498} +{"@timestamp": 895435245, "clientip":"130.19.1.0", "request": "GET /images/home_eng_button.gif HTTP/1.0", "status": 200, "size": 1927} +{"@timestamp": 895435245, "clientip":"243.46.0.0", "request": "GET /images/s102373.gif HTTP/1.0", "status": 200, "size": 142} +{"@timestamp": 895435245, "clientip":"243.46.0.0", "request": "GET /english/images/team_group_header_c.gif HTTP/1.0", "status": 200, "size": 670} +{"@timestamp": 895435245, "clientip":"243.46.0.0", "request": "GET /images/s102338.gif HTTP/1.0", "status": 200, "size": 138} +{"@timestamp": 895435245, "clientip":"105.190.4.0", "request": "GET /images/home_logo.gif HTTP/1.0", "status": 200, "size": 3401} +{"@timestamp": 895435245, "clientip":"105.190.4.0", "request": "GET /images/home_fr_phrase.gif HTTP/1.0", "status": 200, "size": 2843} +{"@timestamp": 895435245, "clientip":"41.105.4.0", "request": "GET /images/s102382.gif HTTP/1.1", "status": 200, "size": 102} +{"@timestamp": 895435245, "clientip":"53.7.0.0", "request": "GET /images/hm_anime_e.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435245, "clientip":"66.192.2.0", "request": "GET /english/playing/images/trivia.GIF HTTP/1.0", "status": 200, "size": 999} +{"@timestamp": 895435245, "clientip":"243.46.0.0", "request": "GET /images/s102487.gif HTTP/1.0", "status": 200, "size": 269} +{"@timestamp": 895435246, "clientip":"243.46.0.0", "request": "GET /images/s102381.gif HTTP/1.0", "status": 200, "size": 269} +{"@timestamp": 895435246, "clientip":"243.46.0.0", "request": "GET /images/s102424.gif HTTP/1.0", "status": 200, "size": 164} +{"@timestamp": 895435246, "clientip":"51.105.4.0", "request": "GET /english/images/teams_bu_confed_off.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435246, "clientip":"41.105.4.0", "request": "GET /english/images/team_group_header_e.gif HTTP/1.1", "status": 200, "size": 643} +{"@timestamp": 895435246, "clientip":"53.105.4.0", "request": "GET /images/11103.gif HTTP/1.0", "status": 200, "size": 513} +{"@timestamp": 895435246, "clientip":"99.190.4.0", "request": "GET /english/playing/images/anim/down_on.gif HTTP/1.0", "status": 200, "size": 3717} +{"@timestamp": 895435246, "clientip":"66.192.2.0", "request": "GET /english/playing/images/play_mascot_header.gif HTTP/1.0", "status": 200, "size": 6555} +{"@timestamp": 895435246, "clientip":"170.59.3.0", "request": "GET /images/home_tool.gif HTTP/1.1", "status": 200, "size": 327} +{"@timestamp": 895435246, "clientip":"66.192.2.0", "request": "GET /english/playing/mascot/images/button.01.gif HTTP/1.0", "status": 200, "size": 952} +{"@timestamp": 895435246, "clientip":"99.190.4.0", "request": "GET /english/playing/images/play_hm_dowloads.gif HTTP/1.0", "status": 200, "size": 488} +{"@timestamp": 895435246, "clientip":"45.105.4.0", "request": "GET /images/hm_linkf.gif HTTP/1.0", "status": 200, "size": 123} +{"@timestamp": 895435246, "clientip":"243.46.0.0", "request": "GET /english/images/team_group_header_d.gif HTTP/1.0", "status": 200, "size": 646} +{"@timestamp": 895435246, "clientip":"243.46.0.0", "request": "GET /images/s102326.gif HTTP/1.0", "status": 200, "size": 248} +{"@timestamp": 895435246, "clientip":"243.46.0.0", "request": "GET /images/s102383.gif HTTP/1.0", "status": 200, "size": 976} +{"@timestamp": 895435246, "clientip":"170.59.3.0", "request": "GET /images/home_eng_button.gif HTTP/1.1", "status": 200, "size": 1927} +{"@timestamp": 895435246, "clientip":"218.213.3.0", "request": "GET /english/images/fpnewstop.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435246, "clientip":"218.213.3.0", "request": "GET /english/images/hm_f98_top.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435246, "clientip":"218.213.3.0", "request": "GET /english/images/news_btn_press_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435246, "clientip":"130.19.1.0", "request": "GET /images/home_sponsor.gif HTTP/1.0", "status": 200, "size": 2491} +{"@timestamp": 895435246, "clientip":"77.190.4.0", "request": "GET /images/teams_hm_bg.jpg HTTP/1.0", "status": 200, "size": 18794} +{"@timestamp": 895435246, "clientip":"243.46.0.0", "request": "GET /images/s102382.gif HTTP/1.0", "status": 200, "size": 102} +{"@timestamp": 895435246, "clientip":"90.190.4.0", "request": "GET /english/individuals/player115188.htm HTTP/1.0", "status": 200, "size": 5921} +{"@timestamp": 895435246, "clientip":"77.190.4.0", "request": "GET /english/images/teams_bu_group_on.gif HTTP/1.0", "status": 200, "size": 668} +{"@timestamp": 895435247, "clientip":"77.190.4.0", "request": "GET /english/images/teams_bu_confed_off.gif HTTP/1.0", "status": 200, "size": 1105} +{"@timestamp": 895435247, "clientip":"243.46.0.0", "request": "GET /english/images/team_group_header_e.gif HTTP/1.0", "status": 200, "size": 643} +{"@timestamp": 895435247, "clientip":"15.5.0.0", "request": "GET /images/hm_nbg.jpg HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435247, "clientip":"15.5.0.0", "request": "GET /images/hm_brdl.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435247, "clientip":"170.58.3.0", "request": "GET /english/news/newsnwl.htm HTTP/1.0", "status": 200, "size": 6874} +{"@timestamp": 895435247, "clientip":"99.190.4.0", "request": "GET /english/playing/images/anim/hall_on.gif HTTP/1.0", "status": 200, "size": 4916} +{"@timestamp": 895435247, "clientip":"218.213.3.0", "request": "GET /images/backnews.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435247, "clientip":"41.105.4.0", "request": "GET /images/s102378.gif HTTP/1.1", "status": 200, "size": 118} +{"@timestamp": 895435247, "clientip":"218.213.3.0", "request": "GET /english/images/news_btn_letter_off.gif HTTP/1.0", "status": 200, "size": 852} +{"@timestamp": 895435247, "clientip":"243.46.0.0", "request": "GET /images/s102378.gif HTTP/1.0", "status": 200, "size": 118} +{"@timestamp": 895435247, "clientip":"243.46.0.0", "request": "GET /images/s102324.gif HTTP/1.0", "status": 200, "size": 176} +{"@timestamp": 895435247, "clientip":"170.59.3.0", "request": "GET /images/home_sponsor.gif HTTP/1.1", "status": 200, "size": 2491} +{"@timestamp": 895435247, "clientip":"66.192.2.0", "request": "GET /english/playing/mascot/images/button.02.gif HTTP/1.0", "status": 200, "size": 894} +{"@timestamp": 895435247, "clientip":"99.190.4.0", "request": "GET /english/playing/images/play_hm_links.gif HTTP/1.0", "status": 200, "size": 1043} +{"@timestamp": 895435247, "clientip":"243.46.0.0", "request": "GET /images/s102328.gif HTTP/1.0", "status": 200, "size": 236} +{"@timestamp": 895435248, "clientip":"243.46.0.0", "request": "GET /images/s102380.gif HTTP/1.0", "status": 200, "size": 207} +{"@timestamp": 895435248, "clientip":"243.46.0.0", "request": "GET /images/s102327.gif HTTP/1.0", "status": 200, "size": 97} +{"@timestamp": 895435248, "clientip":"243.46.0.0", "request": "GET /images/s102477.gif HTTP/1.0", "status": 200, "size": 214} +{"@timestamp": 895435248, "clientip":"41.105.4.0", "request": "GET /images/s102324.gif HTTP/1.1", "status": 200, "size": 176} +{"@timestamp": 895435248, "clientip":"170.59.3.0", "request": "GET /images/home_eng_phrase.gif HTTP/1.1", "status": 200, "size": 2861} +{"@timestamp": 895435248, "clientip":"109.190.4.0", "request": "GET /english/index.html HTTP/1.0", "status": 200, "size": 892} +{"@timestamp": 895435248, "clientip":"218.213.3.0", "request": "GET /english/images/news_btn_kits_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435248, "clientip":"218.213.3.0", "request": "GET /english/news/22ind055.htm HTTP/1.0", "status": 200, "size": 38300} +{"@timestamp": 895435248, "clientip":"243.46.0.0", "request": "GET /images/s102320.gif HTTP/1.0", "status": 200, "size": 259} +{"@timestamp": 895435248, "clientip":"243.46.0.0", "request": "GET /english/images/team_group_header_f.gif HTTP/1.0", "status": 200, "size": 631} +{"@timestamp": 895435248, "clientip":"243.46.0.0", "request": "GET /images/s102376.gif HTTP/1.0", "status": 200, "size": 190} +{"@timestamp": 895435248, "clientip":"243.46.0.0", "request": "GET /images/s102353.gif HTTP/1.0", "status": 200, "size": 867} +{"@timestamp": 895435248, "clientip":"109.190.4.0", "request": "GET /english/nav_top_inet.html HTTP/1.0", "status": 200, "size": 374} +{"@timestamp": 895435248, "clientip":"66.192.2.0", "request": "GET /english/playing/mascot/images/button.03.gif HTTP/1.0", "status": 200, "size": 893} +{"@timestamp": 895435248, "clientip":"109.190.4.0", "request": "GET /english/nav_inet.html HTTP/1.0", "status": 200, "size": 2642} +{"@timestamp": 895435248, "clientip":"109.190.4.0", "request": "GET /english/splash_inet.html HTTP/1.0", "status": 200, "size": 3933} +{"@timestamp": 895435248, "clientip":"109.190.4.0", "request": "GET /images/nav_bg_bottom.jpg HTTP/1.0", "status": 200, "size": 8389} +{"@timestamp": 895435248, "clientip":"30.20.6.0", "request": "GET /images/hm_brdr.gif HTTP/1.0", "status": 200, "size": 235} +{"@timestamp": 895435249, "clientip":"30.20.6.0", "request": "GET /images/hm_anime_f.gif HTTP/1.0", "status": 200, "size": 7108} +{"@timestamp": 895435249, "clientip":"105.190.4.0", "request": "GET /images/home_eng_phrase.gif HTTP/1.0", "status": 200, "size": 2861} +{"@timestamp": 895435249, "clientip":"109.190.4.0", "request": "GET /english/images/nav_news_off.gif HTTP/1.0", "status": 200, "size": 853} +{"@timestamp": 895435249, "clientip":"109.190.4.0", "request": "GET /english/images/nav_tickets_off.gif HTTP/1.0", "status": 200, "size": 937} +{"@timestamp": 895435249, "clientip":"109.190.4.0", "request": "GET /images/space.gif HTTP/1.0", "status": 200, "size": 43} +{"@timestamp": 895435249, "clientip":"109.190.4.0", "request": "GET /english/images/hm_official.gif HTTP/1.0", "status": 200, "size": 1807} +{"@timestamp": 895435249, "clientip":"109.190.4.0", "request": "GET /images/hm_nbg.jpg HTTP/1.0", "status": 200, "size": 23521} +{"@timestamp": 895435249, "clientip":"243.46.0.0", "request": "GET /images/s102438.gif HTTP/1.0", "status": 200, "size": 297} +{"@timestamp": 895435249, "clientip":"109.190.4.0", "request": "GET /english/images/nav_comp_off.gif HTTP/1.0", "status": 200, "size": 994} +{"@timestamp": 895435249, "clientip":"243.46.0.0", "request": "GET /images/s102357.gif HTTP/1.0", "status": 200, "size": 173} +{"@timestamp": 895435249, "clientip":"243.46.0.0", "request": "GET /images/s140875.gif HTTP/1.0", "status": 200, "size": 184} +{"@timestamp": 895435249, "clientip":"243.46.0.0", "request": "GET /english/images/team_group_header_g.gif HTTP/1.0", "status": 200, "size": 641} +{"@timestamp": 895435249, "clientip":"109.190.4.0", "request": "GET /images/logo_cfo.gif HTTP/1.0", "status": 200, "size": 1504} +{"@timestamp": 895435249, "clientip":"109.190.4.0", "request": "GET /images/nav_bg_top.gif HTTP/1.0", "status": 200, "size": 929} +{"@timestamp": 895435249, "clientip":"109.190.4.0", "request": "GET /english/images/nav_history_off.gif HTTP/1.0", "status": 200, "size": 914} +{"@timestamp": 895435249, "clientip":"41.105.4.0", "request": "GET /images/s102328.gif HTTP/1.1", "status": 200, "size": 236} +{"@timestamp": 895435249, "clientip":"109.190.4.0", "request": "GET /english/images/nav_team_off.gif HTTP/1.0", "status": 200, "size": 776} +{"@timestamp": 895435249, "clientip":"109.190.4.0", "request": "GET /english/images/nav_venue_off.gif HTTP/1.0", "status": 200, "size": 870} +{"@timestamp": 895435249, "clientip":"109.190.4.0", "request": "GET /english/images/nav_sitemap_off.gif HTTP/1.0", "status": 200, "size": 416} +{"@timestamp": 895435249, "clientip":"243.46.0.0", "request": "GET /images/s102329.gif HTTP/1.0", "status": 200, "size": 159} +{"@timestamp": 895435249, "clientip":"109.190.4.0", "request": "GET /english/images/nav_logo_sponsors.gif HTTP/1.0", "status": 200, "size": 1991} +{"@timestamp": 895435249, "clientip":"243.46.0.0", "request": "GET /images/s102374.gif HTTP/1.0", "status": 200, "size": 141} +{"@timestamp": 895435249, "clientip":"243.46.0.0", "request": "GET /images/s102377.gif HTTP/1.0", "status": 200, "size": 173} +{"@timestamp": 895435249, "clientip":"109.190.4.0", "request": "GET /images/hm_day_e.gif HTTP/1.0", "status": 200, "size": 499} +{"@timestamp": 895435249, "clientip":"243.46.0.0", "request": "GET /english/images/team_group_header_h.gif HTTP/1.0", "status": 200, "size": 628} +{"@timestamp": 895435249, "clientip":"218.213.3.0", "request": "GET /images/11104.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435249, "clientip":"109.190.4.0", "request": "GET /english/images/nav_home_off.gif HTTP/1.0", "status": 200, "size": 828} +{"@timestamp": 895435249, "clientip":"218.213.3.0", "request": "GET /images/11103.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435249, "clientip":"218.213.3.0", "request": "GET /images/10982.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435250, "clientip":"109.190.4.0", "request": "GET /images/hm_brdl.gif HTTP/1.0", "status": 200, "size": 208} +{"@timestamp": 895435250, "clientip":"109.190.4.0", "request": "GET /english/images/nav_store_off.gif HTTP/1.0", "status": 200, "size": 934} +{"@timestamp": 895435250, "clientip":"53.105.4.0", "request": "GET /images/10981.gif HTTP/1.0", "status": 200, "size": 173} +{"@timestamp": 895435250, "clientip":"243.46.0.0", "request": "GET /images/s102323.gif HTTP/1.0", "status": 200, "size": 152} +{"@timestamp": 895435250, "clientip":"243.46.0.0", "request": "GET /images/s102443.gif HTTP/1.0", "status": 200, "size": 165} +{"@timestamp": 895435250, "clientip":"243.46.0.0", "request": "GET /images/s102442.gif HTTP/1.0", "status": 200, "size": 245} +{"@timestamp": 895435250, "clientip":"109.190.4.0", "request": "GET /images/info.gif HTTP/1.0", "status": 200, "size": 1251} +{"@timestamp": 895435250, "clientip":"109.190.4.0", "request": "GET /english/images/nav_field_off.gif HTTP/1.0", "status": 200, "size": 1005} +{"@timestamp": 895435250, "clientip":"109.190.4.0", "request": "GET /english/images/nav_hosts_off.gif HTTP/1.0", "status": 200, "size": 914} +{"@timestamp": 895435250, "clientip":"109.190.4.0", "request": "GET /images/hm_brdr.gif HTTP/1.0", "status": 200, "size": 235} +{"@timestamp": 895435250, "clientip":"41.105.4.0", "request": "GET /images/s102380.gif HTTP/1.1", "status": 200, "size": 207} +{"@timestamp": 895435250, "clientip":"51.105.4.0", "request": "GET /english/images/team_hm_header_shad.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435250, "clientip":"90.190.4.0", "request": "GET /english/images/team_bu_detail_off.gif HTTP/1.0", "status": 200, "size": 918} +{"@timestamp": 895435250, "clientip":"109.190.4.0", "request": "GET /images/dot.gif HTTP/1.0", "status": 200, "size": 43} +{"@timestamp": 895435250, "clientip":"51.105.4.0", "request": "GET /images/space.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435250, "clientip":"51.105.4.0", "request": "GET /english/images/teams_bu_group_on.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435250, "clientip":"103.55.3.0", "request": "GET /images/s102320.gif HTTP/1.1", "status": 200, "size": 259} +{"@timestamp": 895435250, "clientip":"109.190.4.0", "request": "GET /images/hm_linkf.gif HTTP/1.0", "status": 200, "size": 123} +{"@timestamp": 895435250, "clientip":"103.55.3.0", "request": "GET /images/s102353.gif HTTP/1.1", "status": 200, "size": 867} +{"@timestamp": 895435250, "clientip":"109.190.4.0", "request": "GET /images/hm_arw.gif HTTP/1.0", "status": 200, "size": 1050} +{"@timestamp": 895435250, "clientip":"109.190.4.0", "request": "GET /images/hm_anime_e.gif HTTP/1.0", "status": 200, "size": 7376} +{"@timestamp": 895435250, "clientip":"218.213.3.0", "request": "GET /images/10981.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435250, "clientip":"41.105.4.0", "request": "GET /english/images/team_group_header_f.gif HTTP/1.1", "status": 200, "size": 631} +{"@timestamp": 895435250, "clientip":"53.105.4.0", "request": "GET /images/figpic4e.gif HTTP/1.0", "status": 200, "size": 2843} +{"@timestamp": 895435250, "clientip":"103.55.3.0", "request": "GET /images/s102438.gif HTTP/1.1", "status": 200, "size": 297} +{"@timestamp": 895435250, "clientip":"66.192.2.0", "request": "GET /english/playing/mascot/images/footix.test.gif HTTP/1.0", "status": 200, "size": 20385} +{"@timestamp": 895435250, "clientip":"110.189.4.0", "request": "GET /english/playing/mascot/images/footix.test.gif HTTP/1.1", "status": 200, "size": 20385} +{"@timestamp": 895435250, "clientip":"30.20.6.0", "request": "GET /images/hm_arw.gif HTTP/1.0", "status": 200, "size": 1050} +{"@timestamp": 895435250, "clientip":"30.20.6.0", "request": "GET /images/hm_day_f.gif HTTP/1.0", "status": 200, "size": 574} +{"@timestamp": 895435250, "clientip":"71.190.4.0", "request": "GET /images/usa1994.gif HTTP/1.1", "status": 200, "size": 3320} +{"@timestamp": 895435251, "clientip":"53.105.4.0", "request": "GET /images/11102.gif HTTP/1.0", "status": 200, "size": 417} +{"@timestamp": 895435251, "clientip":"218.213.3.0", "request": "GET /images/11101.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435251, "clientip":"109.190.4.0", "request": "GET /english/ProScroll.class HTTP/1.0", "status": 200, "size": 6507} +{"@timestamp": 895435251, "clientip":"45.190.4.0", "request": "GET /english/teams/teambio124.htm HTTP/1.0", "status": 200, "size": 10763} +{"@timestamp": 895435252, "clientip":"90.190.4.0", "request": "GET /images/32p49805.jpg HTTP/1.0", "status": 200, "size": 10714} +{"@timestamp": 895435252, "clientip":"7.218.3.0", "request": "GET /english/venues/images/Venue_map_top_off.gif HTTP/1.0", "status": 200, "size": 8369} +{"@timestamp": 895435252, "clientip":"218.213.3.0", "request": "GET /images/102321s.gif HTTP/1.0", "status": 200, "size": 793} +{"@timestamp": 895435252, "clientip":"26.105.4.0", "request": "GET /english/competition/stage2.htm HTTP/1.0", "status": 200, "size": 16861} +{"@timestamp": 895435252, "clientip":"7.218.3.0", "request": "GET /english/venues/images/venue_hm_nav.gif HTTP/1.0", "status": 200, "size": 16290} +{"@timestamp": 895435252, "clientip":"40.180.2.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435252, "clientip":"110.190.4.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435252, "clientip":"130.19.1.0", "request": "GET /english/index.html HTTP/1.0", "status": 200, "size": 892} +{"@timestamp": 895435252, "clientip":"130.19.1.0", "request": "GET /images/home_intro.anim.gif HTTP/1.0", "status": 200, "size": 60349} +{"@timestamp": 895435252, "clientip":"88.7.0.0", "request": "GET /english/teams/teambio154.htm HTTP/1.1", "status": 200, "size": 11227} +{"@timestamp": 895435253, "clientip":"39.105.4.0", "request": "GET /english/index.html HTTP/1.0", "status": 200, "size": 892} +{"@timestamp": 895435253, "clientip":"40.105.4.0", "request": "GET /images/home_eng_phrase.gif HTTP/1.1", "status": 200, "size": 2861} +{"@timestamp": 895435253, "clientip":"41.105.4.0", "request": "GET /images/comp_stage2_brc_bot.gif HTTP/1.1", "status": 200, "size": 160} +{"@timestamp": 895435253, "clientip":"42.105.4.0", "request": "GET /french/images/news_bu_kits_off.gif HTTP/1.0", "status": 200, "size": 918} +{"@timestamp": 895435253, "clientip":"66.192.2.0", "request": "GET /english/ProScroll.class HTTP/1.0", "status": 200, "size": 6507} +{"@timestamp": 895435253, "clientip":"218.213.3.0", "request": "GET /images/11102.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435253, "clientip":"81.132.3.0", "request": "GET /english/competition/stage1.htm HTTP/1.0", "status": 200, "size": 36621} +{"@timestamp": 895435253, "clientip":"54.104.4.0", "request": "GET /english/playing/mascot/bio.html HTTP/1.1", "status": 200, "size": 5341} +{"@timestamp": 895435253, "clientip":"218.213.3.0", "request": "GET /images/102338s.gif HTTP/1.0", "status": 200, "size": 780} +{"@timestamp": 895435253, "clientip":"218.213.3.0", "request": "GET /images/102381s.gif HTTP/1.0", "status": 200, "size": 771} +{"@timestamp": 895435253, "clientip":"30.20.6.0", "request": "GET /images/hm_brdl.gif HTTP/1.0", "status": 200, "size": 208} +{"@timestamp": 895435253, "clientip":"30.20.6.0", "request": "GET /images/hm_linkf.gif HTTP/1.0", "status": 200, "size": 123} +{"@timestamp": 895435253, "clientip":"27.20.6.0", "request": "GET /english/playing/download/images/little.bird.gif HTTP/1.0", "status": 200, "size": 5984} +{"@timestamp": 895435254, "clientip":"53.105.4.0", "request": "GET /images/10982.gif HTTP/1.0", "status": 200, "size": 183} +{"@timestamp": 895435254, "clientip":"66.192.2.0", "request": "GET /english/playing/mascot/images/fliptm.gif HTTP/1.0", "status": 200, "size": 227} +{"@timestamp": 895435254, "clientip":"218.213.3.0", "request": "GET /images/11106.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435254, "clientip":"53.105.4.0", "request": "GET /images/11106.gif HTTP/1.0", "status": 200, "size": 114} +{"@timestamp": 895435254, "clientip":"130.19.1.0", "request": "GET /english/nav_top_inet.html HTTP/1.0", "status": 200, "size": 374} +{"@timestamp": 895435254, "clientip":"43.105.4.0", "request": "GET /images/home_fr_phrase.gif HTTP/1.0", "status": 200, "size": 2843} +{"@timestamp": 895435254, "clientip":"143.49.0.0", "request": "GET /images/s102357.gif HTTP/1.0", "status": 200, "size": 173} +{"@timestamp": 895435254, "clientip":"41.105.4.0", "request": "GET /images/comp_stage2_brc_topr.gif HTTP/1.1", "status": 200, "size": 163} +{"@timestamp": 895435255, "clientip":"51.105.4.0", "request": "GET /english/images/team_group_header_a.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435255, "clientip":"54.104.4.0", "request": "GET /english/playing/mascot/images/artist.jpg HTTP/1.1", "status": 200, "size": 8539} +{"@timestamp": 895435255, "clientip":"108.190.4.0", "request": "GET /english/index.html HTTP/1.1", "status": 200, "size": 892} +{"@timestamp": 895435255, "clientip":"218.213.3.0", "request": "GET /images/102336s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435255, "clientip":"53.105.4.0", "request": "GET /images/figpic2e.gif HTTP/1.0", "status": 200, "size": 2633} +{"@timestamp": 895435255, "clientip":"105.190.4.0", "request": "GET /images/home_sponsor.gif HTTP/1.0", "status": 200, "size": 2491} +{"@timestamp": 895435255, "clientip":"98.190.4.0", "request": "GET /english/teams/teamgroup.htm HTTP/1.0", "status": 200, "size": 11971} +{"@timestamp": 895435255, "clientip":"218.213.3.0", "request": "GET /images/102330s.gif HTTP/1.0", "status": 200, "size": 784} +{"@timestamp": 895435255, "clientip":"170.59.3.0", "request": "GET /english/index.html HTTP/1.1", "status": 200, "size": 892} +{"@timestamp": 895435255, "clientip":"218.213.3.0", "request": "GET /images/102373s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435255, "clientip":"218.213.3.0", "request": "GET /images/102487s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435255, "clientip":"41.105.4.0", "request": "GET /images/s102376.gif HTTP/1.1", "status": 200, "size": 190} +{"@timestamp": 895435255, "clientip":"40.180.2.0", "request": "GET /images/home_fr_phrase.gif HTTP/1.0", "status": 200, "size": 2843} +{"@timestamp": 895435255, "clientip":"45.105.4.0", "request": "GET /images/dot.gif HTTP/1.0", "status": 200, "size": 43} +{"@timestamp": 895435255, "clientip":"130.19.1.0", "request": "GET /english/nav_inet.html HTTP/1.0", "status": 200, "size": 2642} +{"@timestamp": 895435255, "clientip":"71.190.4.0", "request": "GET /images/mex1986.gif HTTP/1.1", "status": 200, "size": 5002} +{"@timestamp": 895435256, "clientip":"105.190.4.0", "request": "GET /images/home_tool.gif HTTP/1.0", "status": 200, "size": 327} +{"@timestamp": 895435256, "clientip":"130.19.1.0", "request": "GET /images/nav_bg_top.gif HTTP/1.0", "status": 200, "size": 929} +{"@timestamp": 895435256, "clientip":"40.180.2.0", "request": "GET /images/home_eng_phrase.gif HTTP/1.0", "status": 200, "size": 2861} +{"@timestamp": 895435256, "clientip":"218.213.3.0", "request": "GET /images/102477s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435256, "clientip":"45.190.4.0", "request": "GET /images/10505.jpg HTTP/1.0", "status": 200, "size": 19321} +{"@timestamp": 895435256, "clientip":"218.213.3.0", "request": "GET /images/102326s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435256, "clientip":"45.190.4.0", "request": "GET /images/32t49805.jpg HTTP/1.0", "status": 200, "size": 4710} +{"@timestamp": 895435256, "clientip":"41.105.4.0", "request": "GET /images/s102320.gif HTTP/1.1", "status": 200, "size": 259} +{"@timestamp": 895435256, "clientip":"218.213.3.0", "request": "GET /images/102327s.gif HTTP/1.0", "status": 200, "size": 782} +{"@timestamp": 895435256, "clientip":"42.105.4.0", "request": "GET /french/images/space.gif HTTP/1.0", "status": 200, "size": 42} +{"@timestamp": 895435256, "clientip":"19.105.4.0", "request": "GET /english/news/22eng125.htm HTTP/1.0", "status": 200, "size": 11241} +{"@timestamp": 895435256, "clientip":"43.105.4.0", "request": "GET /images/home_bg_stars.gif HTTP/1.0", "status": 200, "size": 2557} +{"@timestamp": 895435257, "clientip":"143.49.0.0", "request": "GET /images/s102327.gif HTTP/1.0", "status": 200, "size": 97} +{"@timestamp": 895435257, "clientip":"143.49.0.0", "request": "GET /french/images/team_group_header_h.gif HTTP/1.0", "status": 200, "size": 737} +{"@timestamp": 895435257, "clientip":"143.49.0.0", "request": "GET /french/images/team_group_header_g.gif HTTP/1.0", "status": 200, "size": 753} +{"@timestamp": 895435257, "clientip":"42.105.4.0", "request": "GET /french/images/news_bu_press_off.gif HTTP/1.0", "status": 200, "size": 1141} +{"@timestamp": 895435257, "clientip":"105.190.4.0", "request": "GET /images/home_fr_button.gif HTTP/1.0", "status": 200, "size": 2140} +{"@timestamp": 895435257, "clientip":"41.105.4.0", "request": "GET /images/s102325.gif HTTP/1.1", "status": 200, "size": 187} +{"@timestamp": 895435257, "clientip":"26.105.4.0", "request": "GET /english/competition/stage1.htm HTTP/1.0", "status": 200, "size": 36621} +{"@timestamp": 895435257, "clientip":"45.190.4.0", "request": "GET /images/bra.gif HTTP/1.0", "status": 200, "size": 2526} +{"@timestamp": 895435257, "clientip":"218.213.3.0", "request": "GET /images/102325s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435257, "clientip":"53.105.4.0", "request": "GET /images/11104.gif HTTP/1.0", "status": 200, "size": 508} +{"@timestamp": 895435257, "clientip":"130.19.1.0", "request": "GET /images/logo_cfo.gif HTTP/1.0", "status": 200, "size": 1504} +{"@timestamp": 895435257, "clientip":"130.19.1.0", "request": "GET /english/splash_inet.html HTTP/1.0", "status": 200, "size": 3933} +{"@timestamp": 895435257, "clientip":"40.180.2.0", "request": "GET /images/home_bg_stars.gif HTTP/1.0", "status": 200, "size": 2557} +{"@timestamp": 895435258, "clientip":"98.190.4.0", "request": "GET /english/teams/teamgroup.htm HTTP/1.0", "status": 200, "size": 11971} +{"@timestamp": 895435258, "clientip":"218.213.3.0", "request": "GET /images/102386s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435258, "clientip":"105.190.4.0", "request": "GET /images/home_eng_button.gif HTTP/1.0", "status": 200, "size": 1927} +{"@timestamp": 895435258, "clientip":"218.213.3.0", "request": "GET /images/102382s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435258, "clientip":"45.105.4.0", "request": "GET /english/images/nav_logo_sponsors.gif HTTP/1.0", "status": 200, "size": 1991} +{"@timestamp": 895435258, "clientip":"40.180.2.0", "request": "GET /images/home_fr_button.gif HTTP/1.0", "status": 200, "size": 2140} +{"@timestamp": 895435258, "clientip":"45.105.4.0", "request": "GET /english/images/nav_field_off.gif HTTP/1.0", "status": 200, "size": 1005} +{"@timestamp": 895435258, "clientip":"108.190.4.0", "request": "GET /english/nav_top_inet.html HTTP/1.1", "status": 200, "size": 374} +{"@timestamp": 895435258, "clientip":"41.105.4.0", "request": "GET /images/bg_generic.jpg HTTP/1.1", "status": 200, "size": 21127} +{"@timestamp": 895435259, "clientip":"41.105.4.0", "request": "GET /images/10503.jpg HTTP/1.1", "status": 206, "size": 11564} +{"@timestamp": 895435259, "clientip":"187.144.0.0", "request": "GET /english/images/fpnewstop.gif HTTP/1.0", "status": 200, "size": 568} +{"@timestamp": 895435259, "clientip":"41.105.4.0", "request": "GET /images/32t49803.jpg HTTP/1.1", "status": 200, "size": 4581} +{"@timestamp": 895435259, "clientip":"218.213.3.0", "request": "GET /images/102424s.gif HTTP/1.0", "status": 200, "size": 812} +{"@timestamp": 895435259, "clientip":"187.144.0.0", "request": "GET /english/images/hm_f98_top.gif HTTP/1.0", "status": 200, "size": 915} +{"@timestamp": 895435259, "clientip":"108.190.4.0", "request": "GET /english/splash_inet.html HTTP/1.1", "status": 200, "size": 3933} +{"@timestamp": 895435259, "clientip":"218.213.3.0", "request": "GET /images/102324s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435259, "clientip":"108.190.4.0", "request": "GET /english/nav_inet.html HTTP/1.1", "status": 200, "size": 2642} +{"@timestamp": 895435259, "clientip":"187.144.0.0", "request": "GET /images/backnews.gif HTTP/1.0", "status": 200, "size": 3964} +{"@timestamp": 895435259, "clientip":"51.105.4.0", "request": "GET /images/s102321.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435259, "clientip":"145.188.0.0", "request": "GET /english/index.html HTTP/1.0", "status": 200, "size": 892} +{"@timestamp": 895435259, "clientip":"40.180.2.0", "request": "GET /images/home_tool.gif HTTP/1.0", "status": 200, "size": 327} +{"@timestamp": 895435259, "clientip":"130.19.1.0", "request": "GET /images/hm_nbg.jpg HTTP/1.0", "status": 200, "size": 23521} +{"@timestamp": 895435259, "clientip":"42.105.4.0", "request": "GET /images/figpic1f.gif HTTP/1.0", "status": 200, "size": 2595} +{"@timestamp": 895435260, "clientip":"39.105.4.0", "request": "GET /images/hm_nbg.jpg HTTP/1.0", "status": 200, "size": 23521} +{"@timestamp": 895435260, "clientip":"42.105.4.0", "request": "GET /images/11103.gif HTTP/1.0", "status": 200, "size": 513} +{"@timestamp": 895435260, "clientip":"43.105.4.0", "request": "GET /images/home_intro.anim.gif HTTP/1.0", "status": 200, "size": 60349} +{"@timestamp": 895435260, "clientip":"187.144.0.0", "request": "GET /english/news/22ind055.htm HTTP/1.0", "status": 200, "size": 38300} +{"@timestamp": 895435260, "clientip":"130.19.1.0", "request": "GET /images/nav_bg_bottom.jpg HTTP/1.0", "status": 200, "size": 8389} +{"@timestamp": 895435260, "clientip":"170.59.3.0", "request": "GET /english/nav_top_inet.html HTTP/1.1", "status": 200, "size": 374} +{"@timestamp": 895435260, "clientip":"218.213.3.0", "request": "GET /images/102378s.gif HTTP/1.0", "status": 200, "size": 795} +{"@timestamp": 895435260, "clientip":"170.59.3.0", "request": "GET /english/nav_inet.html HTTP/1.1", "status": 200, "size": 2642} +{"@timestamp": 895435260, "clientip":"170.59.3.0", "request": "GET /english/splash_inet.html HTTP/1.1", "status": 200, "size": 3933} +{"@timestamp": 895435260, "clientip":"218.213.3.0", "request": "GET /images/102383s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435260, "clientip":"108.190.4.0", "request": "GET /images/nav_bg_top.gif HTTP/1.1", "status": 200, "size": 929} +{"@timestamp": 895435260, "clientip":"218.213.3.0", "request": "GET /images/102353s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435260, "clientip":"108.190.4.0", "request": "GET /images/logo_cfo.gif HTTP/1.1", "status": 200, "size": 1504} +{"@timestamp": 895435261, "clientip":"218.213.3.0", "request": "GET /images/102328s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435261, "clientip":"243.46.0.0", "request": "GET /english/teams/teambio169.htm HTTP/1.0", "status": 200, "size": 11157} +{"@timestamp": 895435261, "clientip":"218.213.3.0", "request": "GET /images/102376s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435261, "clientip":"170.59.3.0", "request": "GET /images/nav_bg_top.gif HTTP/1.1", "status": 200, "size": 929} +{"@timestamp": 895435261, "clientip":"40.105.4.0", "request": "GET /english/splash_inet.html HTTP/1.1", "status": 200, "size": 3933} +{"@timestamp": 895435261, "clientip":"40.105.4.0", "request": "GET /english/nav_inet.html HTTP/1.1", "status": 200, "size": 2642} +{"@timestamp": 895435261, "clientip":"26.105.4.0", "request": "GET /english/images/comp_bu_stage1n_on.gif HTTP/1.0", "status": 200, "size": 1466} +{"@timestamp": 895435261, "clientip":"218.213.3.0", "request": "GET /images/102374s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435261, "clientip":"26.105.4.0", "request": "GET /english/images/comp_bu_stage2n.gif HTTP/1.0", "status": 200, "size": 984} +{"@timestamp": 895435261, "clientip":"40.180.2.0", "request": "GET /images/home_eng_button.gif HTTP/1.0", "status": 200, "size": 1927} +{"@timestamp": 895435262, "clientip":"26.105.4.0", "request": "GET /english/images/comp_bu_groupsn.gif HTTP/1.0", "status": 200, "size": 993} +{"@timestamp": 895435262, "clientip":"41.105.4.0", "request": "GET /english/images/comp_hm_header.gif HTTP/1.1", "status": 200, "size": 1189} +{"@timestamp": 895435262, "clientip":"41.105.4.0", "request": "GET /english/images/comp_bu_refsn.gif HTTP/1.1", "status": 200, "size": 933} +{"@timestamp": 895435262, "clientip":"41.105.4.0", "request": "GET /images/comp_stage2_brc_top.gif HTTP/1.1", "status": 200, "size": 163} +{"@timestamp": 895435262, "clientip":"40.180.2.0", "request": "GET /images/home_sponsor.gif HTTP/1.0", "status": 200, "size": 2491} +{"@timestamp": 895435262, "clientip":"218.213.3.0", "request": "GET /images/102438s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435262, "clientip":"243.46.0.0", "request": "GET /images/102326.gif HTTP/1.0", "status": 200, "size": 1596} +{"@timestamp": 895435262, "clientip":"243.46.0.0", "request": "GET /english/images/team_hm_header.gif HTTP/1.0", "status": 200, "size": 763} +{"@timestamp": 895435262, "clientip":"30.190.4.0", "request": "GET /english/playing/mascot/mascot.html HTTP/1.0", "status": 200, "size": 5041} +{"@timestamp": 895435262, "clientip":"218.213.3.0", "request": "GET /images/102377s.gif HTTP/1.0", "status": 200, "size": 778} +{"@timestamp": 895435262, "clientip":"77.190.4.0", "request": "GET /english/images/team_group_header_a.gif HTTP/1.0", "status": 200, "size": 639} +{"@timestamp": 895435262, "clientip":"77.190.4.0", "request": "GET /images/s102330.gif HTTP/1.0", "status": 200, "size": 259} +{"@timestamp": 895435262, "clientip":"218.213.3.0", "request": "GET /images/102357s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435262, "clientip":"170.59.3.0", "request": "GET /images/nav_bg_bottom.jpg HTTP/1.1", "status": 200, "size": 8389} +{"@timestamp": 895435262, "clientip":"170.59.3.0", "request": "GET /images/logo_cfo.gif HTTP/1.1", "status": 200, "size": 1504} +{"@timestamp": 895435262, "clientip":"40.105.4.0", "request": "GET /images/logo_cfo.gif HTTP/1.1", "status": 200, "size": 1504} +{"@timestamp": 895435262, "clientip":"45.190.4.0", "request": "GET /images/102321.gif HTTP/1.0", "status": 200, "size": 1602} +{"@timestamp": 895435262, "clientip":"42.105.4.0", "request": "GET /images/figpic5f.gif HTTP/1.0", "status": 200, "size": 2936} +{"@timestamp": 895435262, "clientip":"66.192.2.0", "request": "GET /english/images/nav_news_off.gif HTTP/1.0", "status": 200, "size": 853} +{"@timestamp": 895435263, "clientip":"44.105.4.0", "request": "GET /images/home_tool.gif HTTP/1.0", "status": 200, "size": 327} +{"@timestamp": 895435263, "clientip":"42.105.4.0", "request": "GET /images/11105.gif HTTP/1.0", "status": 200, "size": 114} +{"@timestamp": 895435263, "clientip":"44.105.4.0", "request": "GET /images/home_fr_phrase.gif HTTP/1.0", "status": 200, "size": 2843} +{"@timestamp": 895435263, "clientip":"66.192.2.0", "request": "GET /images/nav_bg_bottom.jpg HTTP/1.0", "status": 200, "size": 8389} +{"@timestamp": 895435263, "clientip":"108.190.4.0", "request": "GET /images/hm_nbg.jpg HTTP/1.1", "status": 200, "size": 23521} +{"@timestamp": 895435263, "clientip":"218.213.3.0", "request": "GET /images/102380s.gif HTTP/1.0", "status": 200, "size": 800} +{"@timestamp": 895435263, "clientip":"110.190.4.0", "request": "GET /images/home_bg_stars.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435263, "clientip":"66.192.2.0", "request": "GET /images/logo_cfo.gif HTTP/1.0", "status": 200, "size": 1504} +{"@timestamp": 895435263, "clientip":"77.190.4.0", "request": "GET /images/s102386.gif HTTP/1.0", "status": 200, "size": 279} +{"@timestamp": 895435263, "clientip":"40.105.4.0", "request": "GET /english/images/nav_news_off.gif HTTP/1.1", "status": 200, "size": 853} +{"@timestamp": 895435263, "clientip":"45.105.4.0", "request": "GET /images/info.gif HTTP/1.0", "status": 200, "size": 1251} +{"@timestamp": 895435263, "clientip":"7.218.3.0", "request": "GET /english/venues/images/Venue_map_bot_off.gif HTTP/1.0", "status": 200, "size": 7397} +{"@timestamp": 895435263, "clientip":"218.213.3.0", "request": "GET /images/102329s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435264, "clientip":"110.190.4.0", "request": "GET /images/home_fr_phrase.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435264, "clientip":"103.55.3.0", "request": "GET /french/images/team_group_header_g.gif HTTP/1.1", "status": 200, "size": 753} +{"@timestamp": 895435264, "clientip":"145.188.0.0", "request": "GET /english/nav_top_inet.html HTTP/1.0", "status": 200, "size": 374} +{"@timestamp": 895435264, "clientip":"98.190.4.0", "request": "GET /english/teams/teamgroup.htm HTTP/1.0", "status": 200, "size": 11971} +{"@timestamp": 895435264, "clientip":"145.188.0.0", "request": "GET /english/nav_inet.html HTTP/1.0", "status": 200, "size": 2642} +{"@timestamp": 895435264, "clientip":"110.190.4.0", "request": "GET /images/home_fr_button.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435264, "clientip":"30.190.4.0", "request": "GET /english/playing/images/play_header.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435264, "clientip":"145.188.0.0", "request": "GET /english/splash_inet.html HTTP/1.0", "status": 200, "size": 3933} +{"@timestamp": 895435264, "clientip":"45.105.4.0", "request": "GET /english/images/nav_history_off.gif HTTP/1.0", "status": 200, "size": 914} +{"@timestamp": 895435265, "clientip":"77.190.4.0", "request": "GET /images/s102378.gif HTTP/1.0", "status": 200, "size": 118} +{"@timestamp": 895435265, "clientip":"110.190.4.0", "request": "GET /images/home_tool.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435265, "clientip":"243.46.0.0", "request": "GET /english/images/team_bu_route_off.gif HTTP/1.0", "status": 200, "size": 766} +{"@timestamp": 895435265, "clientip":"243.46.0.0", "request": "GET /images/10512.jpg HTTP/1.0", "status": 200, "size": 17227} +{"@timestamp": 895435265, "clientip":"66.192.2.0", "request": "GET /english/teams/teamgroup.htm HTTP/1.0", "status": 200, "size": 11971} +{"@timestamp": 895435265, "clientip":"30.190.4.0", "request": "GET /english/playing/images/france98b.GIF HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435265, "clientip":"170.59.3.0", "request": "GET /english/images/nav_news_off.gif HTTP/1.1", "status": 200, "size": 853} +{"@timestamp": 895435265, "clientip":"81.132.3.0", "request": "GET /english/images/comp_bu_stage1n.gif HTTP/1.0", "status": 200, "size": 1548} +{"@timestamp": 895435265, "clientip":"30.190.4.0", "request": "GET /english/playing/images/mascots_on.GIF HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435265, "clientip":"81.132.3.0", "request": "GET /english/images/comp_bu_calendar_on.gif HTTP/1.0", "status": 200, "size": 1191} +{"@timestamp": 895435265, "clientip":"151.44.1.0", "request": "GET /english/news/22ger115.htm HTTP/1.0", "status": 200, "size": 10676} +{"@timestamp": 895435266, "clientip":"30.20.6.0", "request": "GET /images/info.gif HTTP/1.0", "status": 200, "size": 1251} +{"@timestamp": 895435266, "clientip":"26.105.4.0", "request": "GET /english/images/comp_bu_calendar.gif HTTP/1.0", "status": 200, "size": 1197} +{"@timestamp": 895435266, "clientip":"81.132.3.0", "request": "GET /images/cal_stdenis.gif HTTP/1.0", "status": 200, "size": 402} +{"@timestamp": 895435266, "clientip":"145.188.0.0", "request": "GET /images/nav_bg_top.gif HTTP/1.0", "status": 200, "size": 929} +{"@timestamp": 895435266, "clientip":"218.213.3.0", "request": "GET /images/102442s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435266, "clientip":"40.105.4.0", "request": "GET /english/images/nav_comp_off.gif HTTP/1.1", "status": 200, "size": 994} +{"@timestamp": 895435266, "clientip":"218.213.3.0", "request": "GET /images/140875s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435266, "clientip":"110.190.4.0", "request": "GET /images/home_eng_button.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435266, "clientip":"30.190.4.0", "request": "GET /english/playing/images/downloads.GIF HTTP/1.0", "status": 200, "size": 1294} +{"@timestamp": 895435266, "clientip":"218.213.3.0", "request": "GET /images/102320s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435266, "clientip":"30.190.4.0", "request": "GET /english/playing/images/links.GIF HTTP/1.0", "status": 200, "size": 1394} +{"@timestamp": 895435266, "clientip":"30.190.4.0", "request": "GET /english/playing/images/trivia.GIF HTTP/1.0", "status": 200, "size": 999} +{"@timestamp": 895435266, "clientip":"145.188.0.0", "request": "GET /images/nav_bg_bottom.jpg HTTP/1.0", "status": 200, "size": 8389} +{"@timestamp": 895435266, "clientip":"42.105.4.0", "request": "GET /images/11101.gif HTTP/1.0", "status": 200, "size": 415} +{"@timestamp": 895435267, "clientip":"209.15.3.0", "request": "GET /english/splash_inet.html HTTP/1.0", "status": 200, "size": 3933} +{"@timestamp": 895435267, "clientip":"209.15.3.0", "request": "GET /english/nav_inet.html HTTP/1.0", "status": 200, "size": 2642} +{"@timestamp": 895435267, "clientip":"170.59.3.0", "request": "GET /english/images/nav_comp_off.gif HTTP/1.1", "status": 200, "size": 994} +{"@timestamp": 895435267, "clientip":"55.0.0.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435267, "clientip":"66.192.2.0", "request": "GET /images/teams_hm_bg.jpg HTTP/1.0", "status": 200, "size": 18794} +{"@timestamp": 895435267, "clientip":"218.213.3.0", "request": "GET /images/102323s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435267, "clientip":"40.105.4.0", "request": "GET /english/images/nav_field_off.gif HTTP/1.1", "status": 200, "size": 1005} +{"@timestamp": 895435267, "clientip":"110.190.4.0", "request": "GET /images/home_sponsor.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435267, "clientip":"108.190.4.0", "request": "GET /images/space.gif HTTP/1.1", "status": 200, "size": 43} +{"@timestamp": 895435267, "clientip":"77.190.4.0", "request": "GET /images/s102328.gif HTTP/1.0", "status": 200, "size": 236} +{"@timestamp": 895435267, "clientip":"110.190.4.0", "request": "GET /images/home_eng_phrase.gif HTTP/1.0", "status": 200, "size": 2861} +{"@timestamp": 895435267, "clientip":"81.132.3.0", "request": "GET /english/competition/schedule.htm HTTP/1.0", "status": 200, "size": 49432} +{"@timestamp": 895435267, "clientip":"40.105.4.0", "request": "GET /english/images/nav_team_off.gif HTTP/1.1", "status": 200, "size": 776} +{"@timestamp": 895435268, "clientip":"88.7.0.0", "request": "GET /english/playing/images/anim/hall_off.gif HTTP/1.1", "status": 200, "size": 211} +{"@timestamp": 895435268, "clientip":"88.7.0.0", "request": "GET /english/playing/images/anim/hall_on.gif HTTP/1.1", "status": 200, "size": 4916} +{"@timestamp": 895435268, "clientip":"88.7.0.0", "request": "GET /english/playing/images/anim/down_on.gif HTTP/1.1", "status": 200, "size": 3717} +{"@timestamp": 895435268, "clientip":"187.144.0.0", "request": "GET /english/images/news_btn_kits_off.gif HTTP/1.0", "status": 200, "size": 933} +{"@timestamp": 895435268, "clientip":"243.46.0.0", "request": "GET /images/32t49809.jpg HTTP/1.0", "status": 200, "size": 5623} +{"@timestamp": 895435268, "clientip":"218.213.3.0", "request": "GET /images/102443s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435268, "clientip":"108.190.4.0", "request": "GET /english/images/hm_official.gif HTTP/1.1", "status": 200, "size": 1807} +{"@timestamp": 895435268, "clientip":"81.132.3.0", "request": "GET /images/cal_steti.gif HTTP/1.0", "status": 200, "size": 1125} +{"@timestamp": 895435268, "clientip":"40.105.4.0", "request": "GET /english/images/nav_hosts_off.gif HTTP/1.1", "status": 200, "size": 914} +{"@timestamp": 895435268, "clientip":"66.192.2.0", "request": "GET /english/images/nav_comp_off.gif HTTP/1.0", "status": 200, "size": 994} +{"@timestamp": 895435268, "clientip":"32.20.6.0", "request": "GET /images/home_fr_phrase.gif HTTP/1.1", "status": 200, "size": 3073} +{"@timestamp": 895435269, "clientip":"30.190.4.0", "request": "GET /english/playing/mascot/images/button.01.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435269, "clientip":"81.132.3.0", "request": "GET /images/cal_mont.gif HTTP/1.0", "status": 200, "size": 316} +{"@timestamp": 895435269, "clientip":"170.59.3.0", "request": "GET /english/images/nav_team_off.gif HTTP/1.1", "status": 200, "size": 776} +{"@timestamp": 895435269, "clientip":"40.105.4.0", "request": "GET /english/images/nav_history_off.gif HTTP/1.1", "status": 200, "size": 914} +{"@timestamp": 895435269, "clientip":"88.7.0.0", "request": "GET /english/playing/images/anim/trivia_off.gif HTTP/1.1", "status": 200, "size": 213} +{"@timestamp": 895435269, "clientip":"145.188.0.0", "request": "GET /images/hm_nbg.jpg HTTP/1.0", "status": 200, "size": 23521} +{"@timestamp": 895435269, "clientip":"81.132.3.0", "request": "GET /images/cal_bord.gif HTTP/1.0", "status": 200, "size": 416} +{"@timestamp": 895435269, "clientip":"98.190.4.0", "request": "GET /images/teams_hm_bg.jpg HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435269, "clientip":"98.190.4.0", "request": "GET /english/images/teams_bu_group_on.gif HTTP/1.0", "status": 200, "size": 668} +{"@timestamp": 895435269, "clientip":"98.190.4.0", "request": "GET /english/images/teams_bu_confed_off.gif HTTP/1.0", "status": 200, "size": 1105} +{"@timestamp": 895435269, "clientip":"77.190.4.0", "request": "GET /english/images/team_group_header_b.gif HTTP/1.0", "status": 200, "size": 665} +{"@timestamp": 895435269, "clientip":"77.190.4.0", "request": "GET /images/s102320.gif HTTP/1.0", "status": 200, "size": 259} +{"@timestamp": 895435269, "clientip":"218.213.3.0", "request": "GET /images/102384s.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435270, "clientip":"40.105.4.0", "request": "GET /english/images/nav_home_off.gif HTTP/1.1", "status": 200, "size": 828} +{"@timestamp": 895435270, "clientip":"30.190.4.0", "request": "GET /english/playing/mascot/images/button.02.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435270, "clientip":"30.190.4.0", "request": "GET /english/playing/mascot/images/button.03.gif HTTP/1.0", "status": 200, "size": 893} +{"@timestamp": 895435270, "clientip":"40.105.4.0", "request": "GET /images/hm_nbg.jpg HTTP/1.1", "status": 200, "size": 23521} +{"@timestamp": 895435270, "clientip":"51.105.4.0", "request": "GET /images/s102384.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435270, "clientip":"218.213.3.0", "request": "GET /images/arw_lk.gif HTTP/1.0", "status": 200, "size": 669} +{"@timestamp": 895435270, "clientip":"218.213.3.0", "request": "GET /images/11105.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435270, "clientip":"243.46.0.0", "request": "GET /images/esp.gif HTTP/1.0", "status": 200, "size": 1892} +{"@timestamp": 895435270, "clientip":"51.105.4.0", "request": "GET /images/s102386.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435270, "clientip":"30.190.4.0", "request": "GET /english/playing/images/play_mascot_header.gif HTTP/1.0", "status": 200, "size": 6555} +{"@timestamp": 895435270, "clientip":"52.105.4.0", "request": "GET /french/teams/teamgroup.htm HTTP/1.0", "status": 200, "size": 11978} +{"@timestamp": 895435270, "clientip":"79.190.4.0", "request": "GET /french/news/1605laba.htm HTTP/1.0", "status": 200, "size": 6300} +{"@timestamp": 895435270, "clientip":"40.180.2.0", "request": "GET /french/venues/body.html HTTP/1.0", "status": 200, "size": 2932} +{"@timestamp": 895435270, "clientip":"40.180.2.0", "request": "GET /french/venues/body.html HTTP/1.0", "status": 200, "size": 2932} +{"@timestamp": 895435271, "clientip":"170.59.3.0", "request": "GET /images/hm_nbg.jpg HTTP/1.1", "status": 200, "size": 23521} +{"@timestamp": 895435271, "clientip":"105.190.4.0", "request": "GET /images/home_intro.anim.gif HTTP/1.0", "status": 200, "size": 60349} +{"@timestamp": 895435271, "clientip":"88.105.4.0", "request": "GET /images/space.gif HTTP/1.0", "status": 200, "size": 43} +{"@timestamp": 895435271, "clientip":"40.105.4.0", "request": "GET /english/images/hm_official.gif HTTP/1.1", "status": 200, "size": 1807} +{"@timestamp": 895435271, "clientip":"30.190.4.0", "request": "GET /english/playing/mascot/images/footix.test.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435271, "clientip":"88.105.4.0", "request": "GET /english/history/images/history_hm_header.gif HTTP/1.0", "status": 200, "size": 688} +{"@timestamp": 895435271, "clientip":"56.105.4.0", "request": "GET /english/teams/teambio124.htm HTTP/1.0", "status": 200, "size": 10763} +{"@timestamp": 895435271, "clientip":"88.105.4.0", "request": "GET /english/history/images/history_hm_3094.gif HTTP/1.0", "status": 200, "size": 1031} +{"@timestamp": 895435271, "clientip":"40.105.4.0", "request": "GET /images/hm_anime_e.gif HTTP/1.1", "status": 200, "size": 7376} +{"@timestamp": 895435271, "clientip":"50.114.2.0", "request": "GET /french/news/fig0303.htm HTTP/1.0", "status": 200, "size": 6199} +{"@timestamp": 895435271, "clientip":"101.190.4.0", "request": "GET /images/home_intro.anim.gif HTTP/1.0", "status": 200, "size": 60349} +{"@timestamp": 895435271, "clientip":"51.105.4.0", "request": "GET /images/teams_hm_bracket.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435271, "clientip":"39.105.4.0", "request": "GET /english/images/hm_official.gif HTTP/1.0", "status": 200, "size": 1807} +{"@timestamp": 895435272, "clientip":"30.190.4.0", "request": "GET /english/playing/mascot/images/fliptm.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435272, "clientip":"77.190.4.0", "request": "GET /images/s102338.gif HTTP/1.0", "status": 200, "size": 138} +{"@timestamp": 895435272, "clientip":"77.190.4.0", "request": "GET /images/s102329.gif HTTP/1.0", "status": 200, "size": 159} +{"@timestamp": 895435272, "clientip":"170.59.3.0", "request": "GET /images/space.gif HTTP/1.1", "status": 200, "size": 43} +{"@timestamp": 895435272, "clientip":"170.59.3.0", "request": "GET /english/images/hm_official.gif HTTP/1.1", "status": 200, "size": 1807} +{"@timestamp": 895435272, "clientip":"77.190.4.0", "request": "GET /images/s102373.gif HTTP/1.0", "status": 200, "size": 142} +{"@timestamp": 895435272, "clientip":"34.105.4.0", "request": "GET /english/competition/maincomp.htm HTTP/1.0", "status": 200, "size": 2909} +{"@timestamp": 895435272, "clientip":"77.190.4.0", "request": "GET /images/s102377.gif HTTP/1.0", "status": 200, "size": 173} +{"@timestamp": 895435272, "clientip":"99.190.4.0", "request": "GET /english/playing/links.html HTTP/1.0", "status": 200, "size": 18978} +{"@timestamp": 895435272, "clientip":"81.132.3.0", "request": "GET /images/cal_paris.gif HTTP/1.0", "status": 200, "size": 307} +{"@timestamp": 895435272, "clientip":"88.105.4.0", "request": "GET /english/history/images/history_hm_nav.gif HTTP/1.0", "status": 200, "size": 18328} +{"@timestamp": 895435272, "clientip":"51.105.4.0", "request": "GET /english/images/team_group_header_b.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435272, "clientip":"77.190.4.0", "request": "GET /english/images/team_group_header_h.gif HTTP/1.0", "status": 200, "size": 628} +{"@timestamp": 895435272, "clientip":"81.132.3.0", "request": "GET /images/cal_lyon.gif HTTP/1.0", "status": 200, "size": 286} +{"@timestamp": 895435272, "clientip":"42.105.4.0", "request": "GET /french/index.html HTTP/1.0", "status": 200, "size": 954} +{"@timestamp": 895435272, "clientip":"145.188.0.0", "request": "GET /english/images/nav_news_off.gif HTTP/1.0", "status": 200, "size": 853} +{"@timestamp": 895435272, "clientip":"77.190.4.0", "request": "GET /images/s102443.gif HTTP/1.0", "status": 200, "size": 165} +{"@timestamp": 895435272, "clientip":"30.20.6.0", "request": "GET /french/competition/flashed_stage1.htm HTTP/1.0", "status": 200, "size": 2531} +{"@timestamp": 895435272, "clientip":"79.190.4.0", "request": "GET /french/images/news_btn_kits_off.gif HTTP/1.0", "status": 200, "size": 965} +{"@timestamp": 895435272, "clientip":"79.190.4.0", "request": "GET /french/images/news_btn_press_off.gif HTTP/1.0", "status": 200, "size": 1795} +{"@timestamp": 895435273, "clientip":"79.190.4.0", "request": "GET /images/bord_g.gif HTTP/1.0", "status": 200, "size": 231} +{"@timestamp": 895435273, "clientip":"40.180.2.0", "request": "GET /images/space.gif HTTP/1.0", "status": 304, "size": 43} +{"@timestamp": 895435273, "clientip":"79.190.4.0", "request": "GET /french/images/news_btn_letter_off.gif HTTP/1.0", "status": 200, "size": 871} +{"@timestamp": 895435273, "clientip":"151.44.1.0", "request": "GET /images/102376.gif HTTP/1.0", "status": 200, "size": 1780} +{"@timestamp": 895435273, "clientip":"79.190.4.0", "request": "GET /images/bord_d.gif HTTP/1.0", "status": 200, "size": 231} +{"@timestamp": 895435273, "clientip":"81.132.3.0", "request": "GET /images/cal_toul.gif HTTP/1.0", "status": 200, "size": 380} +{"@timestamp": 895435273, "clientip":"47.37.0.0", "request": "GET / HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435273, "clientip":"145.188.0.0", "request": "GET /english/images/nav_comp_off.gif HTTP/1.0", "status": 200, "size": 994} +{"@timestamp": 895435273, "clientip":"77.190.4.0", "request": "GET /images/s140875.gif HTTP/1.0", "status": 200, "size": 184} +{"@timestamp": 895435273, "clientip":"77.190.4.0", "request": "GET /images/s102381.gif HTTP/1.0", "status": 200, "size": 269} +{"@timestamp": 895435273, "clientip":"88.105.4.0", "request": "GET /english/history/images/history_hm_posters.jpg HTTP/1.0", "status": 200, "size": 33296} +{"@timestamp": 895435273, "clientip":"145.188.0.0", "request": "GET /images/space.gif HTTP/1.0", "status": 200, "size": 43} +{"@timestamp": 895435273, "clientip":"77.190.4.0", "request": "GET /english/images/team_group_header_d.gif HTTP/1.0", "status": 200, "size": 646} +{"@timestamp": 895435273, "clientip":"77.190.4.0", "request": "GET /images/s102383.gif HTTP/1.0", "status": 200, "size": 976} +{"@timestamp": 895435274, "clientip":"77.190.4.0", "request": "GET /images/s102382.gif HTTP/1.0", "status": 200, "size": 102} +{"@timestamp": 895435274, "clientip":"42.105.4.0", "request": "GET /french/nav_top_inet.html HTTP/1.0", "status": 200, "size": 374} +{"@timestamp": 895435274, "clientip":"40.105.4.0", "request": "GET /images/hm_brdl.gif HTTP/1.1", "status": 200, "size": 208} +{"@timestamp": 895435274, "clientip":"50.114.2.0", "request": "GET /images/bg_generic.jpg HTTP/1.0", "status": 200, "size": 21127} +{"@timestamp": 895435274, "clientip":"145.188.0.0", "request": "GET /images/logo_cfo.gif HTTP/1.0", "status": 200, "size": 1504} +{"@timestamp": 895435274, "clientip":"51.105.4.0", "request": "GET /images/s102327.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435274, "clientip":"170.59.3.0", "request": "GET /english/images/nav_venue_off.gif HTTP/1.1", "status": 200, "size": 870} +{"@timestamp": 895435274, "clientip":"122.4.0.0", "request": "GET /english/news/newsprr.htm HTTP/1.0", "status": 200, "size": 31038} +{"@timestamp": 895435274, "clientip":"77.190.4.0", "request": "GET /images/s102321.gif HTTP/1.0", "status": 200, "size": 218} +{"@timestamp": 895435274, "clientip":"77.190.4.0", "request": "GET /english/images/team_group_header_e.gif HTTP/1.0", "status": 200, "size": 643} +{"@timestamp": 895435274, "clientip":"81.132.3.0", "request": "GET /images/cal-lens.gif HTTP/1.0", "status": 200, "size": 284} +{"@timestamp": 895435274, "clientip":"56.105.4.0", "request": "GET /english/images/team_bu_detail_on.gif HTTP/1.0", "status": 200, "size": 1007} +{"@timestamp": 895435274, "clientip":"81.132.3.0", "request": "GET /images/cal_nant.gif HTTP/1.0", "status": 200, "size": 359} +{"@timestamp": 895435274, "clientip":"52.105.4.0", "request": "GET /images/teams_hm_bg.jpg HTTP/1.0", "status": 200, "size": 18794} +{"@timestamp": 895435274, "clientip":"81.132.3.0", "request": "GET /images/cal_mars.gif HTTP/1.0", "status": 200, "size": 377} +{"@timestamp": 895435274, "clientip":"40.180.2.0", "request": "GET /french/venues/images/Venue_map_mid_off.gif HTTP/1.0", "status": 200, "size": 9911} +{"@timestamp": 895435274, "clientip":"79.190.4.0", "request": "GET /french/images/fpnewstop.gif HTTP/1.0", "status": 200, "size": 1317} +{"@timestamp": 895435274, "clientip":"79.190.4.0", "request": "GET /images/hm_f98_top.gif HTTP/1.0", "status": 200, "size": 915} +{"@timestamp": 895435274, "clientip":"79.190.4.0", "request": "GET /images/backnews.gif HTTP/1.0", "status": 200, "size": 3964} +{"@timestamp": 895435274, "clientip":"39.105.4.0", "request": "GET /images/hm_day_e.gif HTTP/1.0", "status": 200, "size": 499} +{"@timestamp": 895435275, "clientip":"66.192.2.0", "request": "GET /images/nav_bg_top.gif HTTP/1.0", "status": 200, "size": 929} +{"@timestamp": 895435275, "clientip":"77.190.4.0", "request": "GET /images/s102380.gif HTTP/1.0", "status": 200, "size": 207} +{"@timestamp": 895435275, "clientip":"77.190.4.0", "request": "GET /images/s102376.gif HTTP/1.0", "status": 200, "size": 190} +{"@timestamp": 895435275, "clientip":"34.105.4.0", "request": "GET /english/images/comp_bg2_hm.gif HTTP/1.0", "status": 200, "size": 3785} +{"@timestamp": 895435275, "clientip":"42.105.4.0", "request": "GET /french/splash_inet.html HTTP/1.0", "status": 200, "size": 3770} +{"@timestamp": 895435275, "clientip":"187.144.0.0", "request": "GET /images/102321s.gif HTTP/1.0", "status": 200, "size": 793} +{"@timestamp": 895435275, "clientip":"42.105.4.0", "request": "GET /images/nav_bg_top.gif HTTP/1.0", "status": 200, "size": 929} +{"@timestamp": 895435275, "clientip":"77.190.4.0", "request": "GET /images/s102327.gif HTTP/1.0", "status": 200, "size": 97} +{"@timestamp": 895435275, "clientip":"77.190.4.0", "request": "GET /images/s102438.gif HTTP/1.0", "status": 200, "size": 297} +{"@timestamp": 895435275, "clientip":"77.190.4.0", "request": "GET /images/s102325.gif HTTP/1.0", "status": 200, "size": 187} +{"@timestamp": 895435275, "clientip":"77.190.4.0", "request": "GET /english/images/team_group_header_g.gif HTTP/1.0", "status": 200, "size": 641} +{"@timestamp": 895435275, "clientip":"99.190.4.0", "request": "GET /english/playing/images/backg.gif HTTP/1.0", "status": 200, "size": 1462} +{"@timestamp": 895435276, "clientip":"108.190.4.0", "request": "GET /images/nav_bg_bottom.jpg HTTP/1.1", "status": 200, "size": 8389} +{"@timestamp": 895435276, "clientip":"77.190.4.0", "request": "GET /images/s102442.gif HTTP/1.0", "status": 200, "size": 245} +{"@timestamp": 895435276, "clientip":"77.190.4.0", "request": "GET /images/s102424.gif HTTP/1.0", "status": 200, "size": 164} +{"@timestamp": 895435276, "clientip":"145.188.0.0", "request": "GET /english/images/hm_official.gif HTTP/1.0", "status": 200, "size": 1807} +{"@timestamp": 895435276, "clientip":"77.190.4.0", "request": "GET /images/s102477.gif HTTP/1.0", "status": 200, "size": 214} +{"@timestamp": 895435276, "clientip":"5.11.0.0", "request": "GET / HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"98.190.4.0", "request": "GET /english/images/team_group_header_a.gif HTTP/1.0", "status": 200, "size": 639} +{"@timestamp": 895435276, "clientip":"39.105.4.0", "request": "GET /images/hm_brdr.gif HTTP/1.0", "status": 200, "size": 235} +{"@timestamp": 895435276, "clientip":"39.105.4.0", "request": "GET /images/dot.gif HTTP/1.0", "status": 200, "size": 43} +{"@timestamp": 895435276, "clientip":"75.184.5.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"183.109.2.0", "request": "GET /images/140875.gif HTTP/1.0", "status": 200, "size": 1687} +{"@timestamp": 895435276, "clientip":"255.16.2.0", "request": "GET /english/index.html HTTP/1.1", "status": 304, "size": 892} +{"@timestamp": 895435276, "clientip":"83.2.0.0", "request": "GET /images/home_eng_phrase.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"102.184.5.0", "request": "GET /english/index.html HTTP/1.1", "status": 200, "size": 892} +{"@timestamp": 895435276, "clientip":"83.2.0.0", "request": "GET /images/home_intro.anim.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"83.2.0.0", "request": "GET /images/home_fr_phrase.gif HTTP/1.1", "status": 200, "size": 2843} +{"@timestamp": 895435276, "clientip":"183.109.2.0", "request": "GET /images/140875.gif HTTP/1.0", "status": 200, "size": 1687} +{"@timestamp": 895435276, "clientip":"103.190.4.0", "request": "GET /english/index.html HTTP/1.0", "status": 304, "size": 892} +{"@timestamp": 895435276, "clientip":"204.37.0.0", "request": "GET /english/images/news_bu_press_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"204.37.0.0", "request": "GET /english/images/news_bu_letter_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"204.37.0.0", "request": "GET /english/images/news_bu_kits_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"204.37.0.0", "request": "GET /images/10442.jpg HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"100.184.5.0", "request": "GET /english/nav_top_inet.html HTTP/1.0", "status": 200, "size": 374} +{"@timestamp": 895435276, "clientip":"100.184.5.0", "request": "GET /english/nav_inet.html HTTP/1.0", "status": 200, "size": 2642} +{"@timestamp": 895435276, "clientip":"100.184.5.0", "request": "GET /english/splash_inet.html HTTP/1.0", "status": 200, "size": 3933} +{"@timestamp": 895435276, "clientip":"103.184.5.0", "request": "GET /english/help/body.html HTTP/1.1", "status": 200, "size": 6958} +{"@timestamp": 895435276, "clientip":"55.65.1.0", "request": "GET /french/news/22esp075.htm HTTP/1.0", "status": 200, "size": 10640} +{"@timestamp": 895435276, "clientip":"70.190.4.0", "request": "GET /images/102336.gif HTTP/1.0", "status": 200, "size": 1617} +{"@timestamp": 895435276, "clientip":"83.2.0.0", "request": "GET / HTTP/1.1", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"70.190.4.0", "request": "GET /french/images/team_bu_detail_on.gif HTTP/1.0", "status": 200, "size": 1084} +{"@timestamp": 895435276, "clientip":"252.26.0.0", "request": "GET /english/frntpage.htm HTTP/1.0", "status": 200, "size": 11980} +{"@timestamp": 895435276, "clientip":"252.26.0.0", "request": "GET /images/10815.jpg HTTP/1.0", "status": 200, "size": 6547} +{"@timestamp": 895435276, "clientip":"252.26.0.0", "request": "GET /images/10792.jpg HTTP/1.0", "status": 200, "size": 6572} +{"@timestamp": 895435276, "clientip":"252.26.0.0", "request": "GET /images/10788.jpg HTTP/1.0", "status": 206, "size": 5233} +{"@timestamp": 895435276, "clientip":"105.190.4.0", "request": "GET /french/index.html HTTP/1.0", "status": 200, "size": 1183} +{"@timestamp": 895435276, "clientip":"134.1.0.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"104.184.5.0", "request": "GET /images/cal_mars.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"100.184.5.0", "request": "GET /english/index.html HTTP/1.0", "status": 200, "size": 892} +{"@timestamp": 895435276, "clientip":"136.9.0.0", "request": "GET /images/logo_cfo.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"204.37.0.0", "request": "GET /english/news/10483.htm HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"102.184.5.0", "request": "GET / HTTP/1.1", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"209.15.3.0", "request": "GET /images/hm_anime_e.gif HTTP/1.0", "status": 200, "size": 7376} +{"@timestamp": 895435276, "clientip":"183.109.2.0", "request": "GET /french/news/22hrv155.htm HTTP/1.0", "status": 200, "size": 10761} +{"@timestamp": 895435276, "clientip":"55.65.1.0", "request": "GET /french/news/22esp075.htm HTTP/1.0", "status": 200, "size": 10640} +{"@timestamp": 895435276, "clientip":"70.190.4.0", "request": "GET /french/images/team_hm_header.gif HTTP/1.0", "status": 200, "size": 1168} +{"@timestamp": 895435276, "clientip":"126.60.0.0", "request": "GET /french/competition/stage2.htm HTTP/1.1", "status": 200, "size": 14559} +{"@timestamp": 895435276, "clientip":"151.44.1.0", "request": "GET /english/splash_inet.html HTTP/1.0", "status": 200, "size": 3933} +{"@timestamp": 895435276, "clientip":"252.26.0.0", "request": "GET /english/index.html HTTP/1.0", "status": 304, "size": 892} +{"@timestamp": 895435276, "clientip":"30.5.0.0", "request": "GET /english/teams/teambio122.htm HTTP/1.0", "status": 200, "size": 11672} +{"@timestamp": 895435276, "clientip":"252.26.0.0", "request": "GET /english/news/22eng125.htm HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"151.44.1.0", "request": "GET /english/nav_inet.html HTTP/1.0", "status": 200, "size": 2642} +{"@timestamp": 895435276, "clientip":"151.44.1.0", "request": "GET /english/nav_top_inet.html HTTP/1.0", "status": 200, "size": 374} +{"@timestamp": 895435276, "clientip":"55.65.1.0", "request": "GET /french/news/22esp075.htm HTTP/1.0", "status": 200, "size": 10640} +{"@timestamp": 895435276, "clientip":"209.0.0.0", "request": "GET /french/teams/teambio111.htm HTTP/1.0", "status": 200, "size": 10454} +{"@timestamp": 895435276, "clientip":"44.105.4.0", "request": "GET /french/index.html HTTP/1.0", "status": 200, "size": 1183} +{"@timestamp": 895435276, "clientip":"252.26.0.0", "request": "GET /english/index.html HTTP/1.0", "status": 304, "size": 892} +{"@timestamp": 895435276, "clientip":"151.44.1.0", "request": "GET /english/news/22ger115.htm HTTP/1.0", "status": 200, "size": 10445} +{"@timestamp": 895435276, "clientip":"126.60.0.0", "request": "GET /images/comp_hm_brac.gif HTTP/1.1", "status": 200, "size": 254} +{"@timestamp": 895435276, "clientip":"126.60.0.0", "request": "GET /images/comp_hm_archive.gif HTTP/1.1", "status": 200, "size": 1644} +{"@timestamp": 895435276, "clientip":"126.60.0.0", "request": "GET /french/competition/maincomp.htm HTTP/1.1", "status": 200, "size": 2888} +{"@timestamp": 895435276, "clientip":"126.60.0.0", "request": "GET /french/competition/maincomp.htm HTTP/1.1", "status": 200, "size": 2888} +{"@timestamp": 895435276, "clientip":"126.60.0.0", "request": "GET /french/competition/maincomp.htm HTTP/1.1", "status": 200, "size": 2888} +{"@timestamp": 895435276, "clientip":"126.60.0.0", "request": "GET /french/competition/maincomp.htm HTTP/1.1", "status": 200, "size": 2888} +{"@timestamp": 895435276, "clientip":"105.184.5.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"63.1.0.0", "request": "GET /english/frntpage.htm HTTP/1.0", "status": 200, "size": 11980} +{"@timestamp": 895435276, "clientip":"18.207.2.0", "request": "GET /images/102325s.gif HTTP/1.0", "status": 200, "size": 776} +{"@timestamp": 895435276, "clientip":"70.33.0.0", "request": "GET /english/nav_inet.html HTTP/1.0", "status": 200, "size": 2642} +{"@timestamp": 895435276, "clientip":"104.89.0.0", "request": "GET /english/competition/schedule.htm HTTP/1.0", "status": 206, "size": 32082} +{"@timestamp": 895435276, "clientip":"70.33.0.0", "request": "GET /images/hm_nbg.jpg HTTP/1.0", "status": 206, "size": 4424} +{"@timestamp": 895435276, "clientip":"70.33.0.0", "request": "GET /images/hm_anime_e.gif HTTP/1.0", "status": 206, "size": 3485} +{"@timestamp": 895435276, "clientip":"190.0.0.0", "request": "GET /french/index.html HTTP/1.0", "status": 200, "size": 1159} +{"@timestamp": 895435276, "clientip":"172.2.0.0", "request": "GET /english/index.html HTTP/1.0", "status": 200, "size": 892} +{"@timestamp": 895435276, "clientip":"75.1.0.0", "request": "GET /english/frntpage.htm HTTP/1.0", "status": 200, "size": 11980} +{"@timestamp": 895435276, "clientip":"79.190.4.0", "request": "GET /french/nav_inet.html HTTP/1.0", "status": 200, "size": 2665} +{"@timestamp": 895435276, "clientip":"79.190.4.0", "request": "GET /french/nav_top_inet.html HTTP/1.0", "status": 200, "size": 374} +{"@timestamp": 895435276, "clientip":"151.44.1.0", "request": "GET /english/news/22bel065.htm HTTP/1.0", "status": 200, "size": 10715} +{"@timestamp": 895435276, "clientip":"70.190.4.0", "request": "GET /french/teams/teambio125.htm HTTP/1.0", "status": 200, "size": 10673} +{"@timestamp": 895435276, "clientip":"252.26.0.0", "request": "GET /english/news/22eng125.htm HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"70.33.0.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"204.37.0.0", "request": "GET /english/news/10483.htm HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"183.1.0.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"126.60.0.0", "request": "GET /french/images/comp_bg2_hm.gif HTTP/1.1", "status": 200, "size": 3785} +{"@timestamp": 895435276, "clientip":"126.60.0.0", "request": "GET /french/images/france98b.gif HTTP/1.1", "status": 200, "size": 2122} +{"@timestamp": 895435276, "clientip":"126.60.0.0", "request": "GET /french/images/comp_hm_header_shad.gif HTTP/1.1", "status": 200, "size": 2207} +{"@timestamp": 895435276, "clientip":"126.60.0.0", "request": "GET /images/space.gif HTTP/1.1", "status": 200, "size": 43} +{"@timestamp": 895435276, "clientip":"126.60.0.0", "request": "GET /images/arw_red_lk.gif HTTP/1.1", "status": 200, "size": 1068} +{"@timestamp": 895435276, "clientip":"126.60.0.0", "request": "GET /french/images/comp_hm_nav.gif HTTP/1.1", "status": 200, "size": 11652} +{"@timestamp": 895435276, "clientip":"157.14.1.0", "request": "GET /french/hosts/fifa/blatter.html HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"242.189.4.0", "request": "GET /english/competition/headtohead73.htm HTTP/1.0", "status": 200, "size": 22661} +{"@timestamp": 895435276, "clientip":"106.184.5.0", "request": "GET /english/news/0605tick.htm HTTP/1.1", "status": 200, "size": 7668} +{"@timestamp": 895435276, "clientip":"79.190.4.0", "request": "GET /french/index.html HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"136.9.0.0", "request": "GET /images/hm_nbg.jpg HTTP/1.0", "status": 200, "size": 23521} +{"@timestamp": 895435276, "clientip":"136.9.0.0", "request": "GET /images/hm_anime_e.gif HTTP/1.0", "status": 200, "size": 7376} +{"@timestamp": 895435276, "clientip":"36.105.4.0", "request": "GET /english/ProScroll.class HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"234.2.0.0", "request": "GET /english/images/nav_history_off.gif HTTP/1.0", "status": 200, "size": 914} +{"@timestamp": 895435276, "clientip":"201.129.4.0", "request": "GET /english/index.html HTTP/1.0", "status": 200, "size": 892} +{"@timestamp": 895435276, "clientip":"183.109.2.0", "request": "GET /french/news/22hrv155.htm HTTP/1.0", "status": 200, "size": 10761} +{"@timestamp": 895435276, "clientip":"107.184.5.0", "request": "GET /english/venues/body.html HTTP/1.1", "status": 200, "size": 3055} +{"@timestamp": 895435276, "clientip":"108.184.5.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"116.200.3.0", "request": "GET /french/index.html HTTP/1.1", "status": 200, "size": 1183} +{"@timestamp": 895435276, "clientip":"109.184.5.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"62.26.0.0", "request": "GET /english/history/body.html HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"62.26.0.0", "request": "GET /english/history/body.html HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"110.184.5.0", "request": "GET /english/news/newsprr.htm HTTP/1.0", "status": 200, "size": 31038} +{"@timestamp": 895435276, "clientip":"61.26.0.0", "request": "GET /english/index.html HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"61.26.0.0", "request": "GET /english/index.html HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"55.49.4.0", "request": "GET /english/ProScroll.class HTTP/1.0", "status": 200, "size": 6507} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio141.htm HTTP/1.0", "status": 200, "size": 10309} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio141.htm HTTP/1.0", "status": 200, "size": 10309} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio141.htm HTTP/1.0", "status": 200, "size": 10309} +{"@timestamp": 895435276, "clientip":"111.184.5.0", "request": "GET / HTTP/1.1", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"207.189.4.0", "request": "GET /french/teams/teamgroup.htm HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"55.65.1.0", "request": "GET /french/index.html HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio141.htm HTTP/1.0", "status": 200, "size": 10309} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio141.htm HTTP/1.0", "status": 200, "size": 10309} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio141.htm HTTP/1.0", "status": 200, "size": 10309} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio141.htm HTTP/1.0", "status": 200, "size": 10309} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio141.htm HTTP/1.0", "status": 200, "size": 10309} +{"@timestamp": 895435276, "clientip":"55.65.1.0", "request": "GET /french/index.html HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio124.htm HTTP/1.0", "status": 200, "size": 10763} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio124.htm HTTP/1.0", "status": 200, "size": 10763} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio124.htm HTTP/1.0", "status": 200, "size": 10763} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio124.htm HTTP/1.0", "status": 200, "size": 10763} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio124.htm HTTP/1.0", "status": 200, "size": 10763} +{"@timestamp": 895435276, "clientip":"221.189.4.0", "request": "GET /french/news/11415.htm HTTP/1.0", "status": 200, "size": 22015} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio124.htm HTTP/1.0", "status": 200, "size": 10763} +{"@timestamp": 895435276, "clientip":"205.7.4.0", "request": "GET /english/teams/teamgroup.htm HTTP/1.1", "status": 200, "size": 11971} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio124.htm HTTP/1.0", "status": 200, "size": 10763} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio124.htm HTTP/1.0", "status": 200, "size": 10763} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio124.htm HTTP/1.0", "status": 200, "size": 10763} +{"@timestamp": 895435276, "clientip":"4.1.0.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"44.7.0.0", "request": "GET /images/home_bg_stars.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"112.184.5.0", "request": "GET / HTTP/1.1", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"249.41.0.0", "request": "GET /french/ProScroll.class HTTP/1.0", "status": 200, "size": 6507} +{"@timestamp": 895435276, "clientip":"21.190.4.0", "request": "GET /french/index.html HTTP/1.1", "status": 200, "size": 1183} +{"@timestamp": 895435276, "clientip":"30.5.0.0", "request": "GET /images/hm_day_e.gif HTTP/1.0", "status": 200, "size": 499} +{"@timestamp": 895435276, "clientip":"72.169.0.0", "request": "GET /english/teams/teambio124.htm HTTP/1.0", "status": 200, "size": 10763} +{"@timestamp": 895435276, "clientip":"221.189.4.0", "request": "GET /french/news/11415.htm HTTP/1.0", "status": 200, "size": 22015} +{"@timestamp": 895435276, "clientip":"55.0.0.0", "request": "GET /french/index.html HTTP/1.0", "status": 200, "size": 954} +{"@timestamp": 895435276, "clientip":"113.184.5.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"38.17.0.0", "request": "GET /english/frntpage.htm HTTP/1.0", "status": 200, "size": 11980} +{"@timestamp": 895435276, "clientip":"81.146.0.0", "request": "GET /french/index.html HTTP/1.0", "status": 200, "size": 954} +{"@timestamp": 895435276, "clientip":"38.17.0.0", "request": "GET /images/backnews.gif HTTP/1.0", "status": 200, "size": 3964} +{"@timestamp": 895435276, "clientip":"38.17.0.0", "request": "GET /english/images/fpnewstop.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"38.17.0.0", "request": "GET /english/images/space.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"38.17.0.0", "request": "GET /images/hm_f98_top.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"55.0.0.0", "request": "GET /french/index.html HTTP/1.0", "status": 200, "size": 954} +{"@timestamp": 895435276, "clientip":"83.2.0.0", "request": "GET /english/news/10457.htm HTTP/1.0", "status": 200, "size": 9620} +{"@timestamp": 895435276, "clientip":"91.184.5.0", "request": "GET / HTTP/1.1", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"0.75.0.0", "request": "GET /english/history/body.html HTTP/1.0", "status": 200, "size": 2909} +{"@timestamp": 895435276, "clientip":"38.17.0.0", "request": "GET /english/teams/teambio154.htm HTTP/1.0", "status": 200, "size": 11227} +{"@timestamp": 895435276, "clientip":"4.1.0.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"242.26.0.0", "request": "GET /english/index.html HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"15.5.0.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"174.1.0.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"113.184.5.0", "request": "GET /french/index.html HTTP/1.0", "status": 200, "size": 954} +{"@timestamp": 895435276, "clientip":"209.15.3.0", "request": "GET /english/playing/download/download.html HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"35.231.0.0", "request": "GET /english/teams/teambio154.htm HTTP/1.0", "status": 200, "size": 11227} +{"@timestamp": 895435276, "clientip":"55.0.0.0", "request": "GET /french/index.html HTTP/1.0", "status": 200, "size": 954} +{"@timestamp": 895435276, "clientip":"209.15.3.0", "request": "GET /images/home_intro.anim.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435276, "clientip":"174.1.0.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435276, "clientip":"231.104.4.0", "request": "GET /english/tickets/body.html HTTP/1.0", "status": 200, "size": 2684} +{"@timestamp": 895435277, "clientip":"55.65.1.0", "request": "GET /french/news/22esp075.htm HTTP/1.0", "status": 200, "size": 10640} +{"@timestamp": 895435277, "clientip":"26.1.0.0", "request": "GET / HTTP/1.0", "status": 200, "size": 8857} +{"@timestamp": 895435277, "clientip":"100.184.5.0", "request": "GET /english/index.html HTTP/1.0", "status": 200, "size": 892} +{"@timestamp": 895435277, "clientip":"53.23.0.0", "request": "GET /english/images/nav_comp_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435277, "clientip":"53.23.0.0", "request": "GET /english/images/nav_logo_sponsors.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 895435277, "clientip":"101.184.5.0", "request": "GET /english/teams/teambio142.htm HTTP/1.0", "status": 200, "size": 11509} +{"@timestamp": 895435277, "clientip":"31.1.0.0", "request": "GET /images/home_intro.anim.gif HTTP/1.0", "status": 200, "size": 60349} +{"@timestamp": 895435277, "clientip":"39.105.4.0", "request": "GET /images/info.gif HTTP/1.0", "status": 200, "size": 1251} +{"@timestamp": 895435277, "clientip":"77.190.4.0", "request": "GET /images/s102384.gif HTTP/1.0", "status": 200, "size": 148} +{"@timestamp": 895435277, "clientip":"40.105.4.0", "request": "GET /images/hm_brdr.gif HTTP/1.1", "status": 200, "size": 235} +{"@timestamp": 895435277, "clientip":"77.190.4.0", "request": "GET /english/images/team_group_header_f.gif HTTP/1.0", "status": 200, "size": 631} +{"@timestamp": 895435277, "clientip":"77.190.4.0", "request": "GET /images/s102353.gif HTTP/1.0", "status": 200, "size": 867} +{"@timestamp": 895435277, "clientip":"45.105.4.0", "request": "GET /english/tickets/body.html HTTP/1.0", "status": 200, "size": 2684} +{"@timestamp": 895435277, "clientip":"77.190.4.0", "request": "GET /images/s102487.gif HTTP/1.0", "status": 200, "size": 269} +{"@timestamp": 895435277, "clientip":"51.105.4.0", "request": "GET /images/s102325.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435277, "clientip":"56.105.4.0", "request": "GET /english/images/team_bu_route_off.gif HTTP/1.0", "status": 200, "size": 766} +{"@timestamp": 895435277, "clientip":"51.105.4.0", "request": "GET /images/s102336.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435277, "clientip":"51.105.4.0", "request": "GET /images/s102373.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 895435277, "clientip":"98.190.4.0", "request": "GET /images/teams_hm_bg.jpg HTTP/1.0", "status": 206, "size": 5729} +{"@timestamp": 895435277, "clientip":"77.190.4.0", "request": "GET /english/images/team_hm_header_shad.gif HTTP/1.0", "status": 200, "size": 1379} +{"@timestamp": 895435277, "clientip":"145.188.0.0", "request": "GET /english/images/nav_team_off.gif HTTP/1.0", "status": 200, "size": 776} +{"@timestamp": 895435277, "clientip":"77.190.4.0", "request": "GET /images/teams_hm_bracket.gif HTTP/1.0", "status": 200, "size": 655} +{"@timestamp": 895435277, "clientip":"40.180.2.0", "request": "GET /french/venues/images/Venue_map_top_off.gif HTTP/1.0", "status": 200, "size": 8369} +{"@timestamp": 895435278, "clientip":"157.14.1.0", "request": "GET /english/news/10019.htm HTTP/1.0", "status": 200, "size": 1913} +{"@timestamp": 895435278, "clientip":"40.105.4.0", "request": "GET /images/hm_arw.gif HTTP/1.1", "status": 200, "size": 1050} +{"@timestamp": 895435278, "clientip":"77.190.4.0", "request": "GET /english/images/team_group_header_c.gif HTTP/1.0", "status": 200, "size": 670} +{"@timestamp": 895435278, "clientip":"98.190.4.0", "request": "GET /images/teams_hm_bracket.gif HTTP/1.0", "status": 200, "size": 655} +{"@timestamp": 895435278, "clientip":"108.190.4.0", "request": "GET /english/images/nav_news_off.gif HTTP/1.1", "status": 200, "size": 853} +{"@timestamp": 895435278, "clientip":"34.105.4.0", "request": "GET /english/images/france98b.gif HTTP/1.0", "status": 200, "size": 2122} +{"@timestamp": 895435278, "clientip":"34.105.4.0", "request": "GET /english/images/comp_hm_header_shad.gif HTTP/1.0", "status": 200, "size": 2207} +{"@timestamp": 895435278, "clientip":"42.105.4.0", "request": "GET /french/images/nav_venue_off.gif HTTP/1.0", "status": 200, "size": 945} +{"@timestamp": 895435278, "clientip":"108.190.4.0", "request": "GET /english/images/nav_comp_off.gif HTTP/1.1", "status": 200, "size": 994} +{"@timestamp": 895435278, "clientip":"56.105.4.0", "request": "GET /images/102321.gif HTTP/1.0", "status": 200, "size": 1602} +{"@timestamp": 895435278, "clientip":"77.190.4.0", "request": "GET /images/s102323.gif HTTP/1.0", "status": 200, "size": 152} +{"@timestamp": 895435278, "clientip":"66.192.2.0", "request": "GET /english/images/teams_bu_group_on.gif HTTP/1.0", "status": 200, "size": 668} +{"@timestamp": 895435278, "clientip":"56.105.4.0", "request": "GET /images/10505.jpg HTTP/1.0", "status": 200, "size": 19321} +{"@timestamp": 895435278, "clientip":"66.192.2.0", "request": "GET /english/images/teams_bu_confed_off.gif HTTP/1.0", "status": 200, "size": 1105} +{"@timestamp": 895435278, "clientip":"161.0.0.0", "request": "GET /images/home_intro.anim.gif HTTP/1.0", "status": 200, "size": 60349} +{"@timestamp": 895435278, "clientip":"103.184.5.0", "request": "GET /english/help/image/faq_on.GIF HTTP/1.1", "status": 200, "size": 1367} +{"@timestamp": 895435278, "clientip":"55.65.1.0", "request": "GET /french/nav_inet.html HTTP/1.0", "status": 200, "size": 2665} diff --git a/regression-test/data/inverted_index_p0/index_compaction/documents-10.json b/regression-test/data/inverted_index_p0/index_compaction/documents-10.json new file mode 100644 index 00000000000000..19d67519296f5d --- /dev/null +++ b/regression-test/data/inverted_index_p0/index_compaction/documents-10.json @@ -0,0 +1,1000 @@ +{"@timestamp": 897410925, "clientip":"37.155.12.0", "request": "GET /images/space.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 897410925, "clientip":"98.28.3.0", "request": "GET /images/hm_btm_arw01.gif HTTP/1.0", "status": 200, "size": 428} +{"@timestamp": 897410925, "clientip":"134.155.12.0", "request": "GET /images/jersey_bel_e.gif HTTP/1.0", "status": 200, "size": 5352} +{"@timestamp": 897410925, "clientip":"144.155.12.0", "request": "GET /english/images/nav_tickets_off.gif HTTP/1.0", "status": 200, "size": 937} +{"@timestamp": 897410925, "clientip":"111.155.12.0", "request": "GET /images/s102324.gif HTTP/1.0", "status": 200, "size": 176} +{"@timestamp": 897410925, "clientip":"137.155.12.0", "request": "GET /english/splash_inet.html HTTP/1.0", "status": 200, "size": 39073} +{"@timestamp": 897410925, "clientip":"204.42.0.0", "request": "GET / HTTP/1.0", "status": 200, "size": 4930} +{"@timestamp": 897410925, "clientip":"43.76.1.0", "request": "GET /images/acc_browsers.gif HTTP/1.0", "status": 200, "size": 1682} +{"@timestamp": 897410925, "clientip":"146.155.12.0", "request": "GET /english/images/nav_tickets_off.gif HTTP/1.0", "status": 200, "size": 937} +{"@timestamp": 897410925, "clientip":"169.155.12.0", "request": "GET /images/hm_score_border_l_on.gif HTTP/1.0", "status": 200, "size": 348} +{"@timestamp": 897410925, "clientip":"203.143.12.0", "request": "GET /images/acc_anime.gif HTTP/1.0", "status": 200, "size": 16456} +{"@timestamp": 897410925, "clientip":"121.155.12.0", "request": "GET /english/images/hm_lbn_head.gif HTTP/1.1", "status": 200, "size": 1273} +{"@timestamp": 897410925, "clientip":"119.155.12.0", "request": "GET /english/splash_inet.html HTTP/1.0", "status": 200, "size": 39073} +{"@timestamp": 897410925, "clientip":"155.155.12.0", "request": "GET /english/images/nav_sitemap_off.gif HTTP/1.1", "status": 200, "size": 416} +{"@timestamp": 897410925, "clientip":"14.124.4.0", "request": "GET /images/jersey_esp_e.gif HTTP/1.0", "status": 200, "size": 5335} +{"@timestamp": 897410925, "clientip":"229.43.19.0", "request": "GET /english/enfetes/0706_faces.html HTTP/1.0", "status": 200, "size": 8455} +{"@timestamp": 897410925, "clientip":"50.84.2.0", "request": "GET /images/hm_ligne2_col1.gif HTTP/1.0", "status": 200, "size": 352} +{"@timestamp": 897410925, "clientip":"67.142.5.0", "request": "GET /images/saintdenis_off.gif HTTP/1.0", "status": 200, "size": 872} +{"@timestamp": 897410925, "clientip":"220.2.0.0", "request": "GET /english/images/hm_top_stories_head.gif HTTP/1.0", "status": 200, "size": 1272} +{"@timestamp": 897410925, "clientip":"251.5.1.0", "request": "GET /images/f98f_shar_pic_mailing.gif HTTP/1.0", "status": 200, "size": 197} +{"@timestamp": 897410925, "clientip":"54.141.4.0", "request": "GET / HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410925, "clientip":"55.142.11.0", "request": "GET /english/images/nav_venue_off.gif HTTP/1.1", "status": 200, "size": 870} +{"@timestamp": 897410925, "clientip":"43.44.19.0", "request": "GET /english/images/nav_field_off.gif HTTP/1.0", "status": 200, "size": 1005} +{"@timestamp": 897410925, "clientip":"43.44.19.0", "request": "GET /english/images/nav_hosts_off.gif HTTP/1.0", "status": 200, "size": 914} +{"@timestamp": 897410925, "clientip":"99.48.7.0", "request": "GET /english/images/venue_bu_accomm_off.gif HTTP/1.0", "status": 200, "size": 825} +{"@timestamp": 897410925, "clientip":"43.44.19.0", "request": "GET /english/images/nav_tickets_off.gif HTTP/1.0", "status": 200, "size": 937} +{"@timestamp": 897410925, "clientip":"52.198.19.0", "request": "GET /images/hm_factoids_02_03.gif HTTP/1.0", "status": 200, "size": 240} +{"@timestamp": 897410925, "clientip":"99.48.7.0", "request": "GET /english/venues/images/venue_dist_top.gif HTTP/1.0", "status": 200, "size": 29625} +{"@timestamp": 897410925, "clientip":"43.44.19.0", "request": "GET /english/images/nav_logo_sponsors.gif HTTP/1.0", "status": 200, "size": 1991} +{"@timestamp": 897410925, "clientip":"81.114.12.0", "request": "GET /images/news_hm_arw.gif HTTP/1.0", "status": 200, "size": 152} +{"@timestamp": 897410925, "clientip":"183.155.12.0", "request": "GET /images/10510.jpg HTTP/1.1", "status": 200, "size": 16376} +{"@timestamp": 897410925, "clientip":"183.155.12.0", "request": "GET /images/space.gif HTTP/1.1", "status": 200, "size": 43} +{"@timestamp": 897410925, "clientip":"154.154.12.0", "request": "GET /english/nav_inet.html HTTP/1.0", "status": 200, "size": 2884} +{"@timestamp": 897410925, "clientip":"86.191.10.0", "request": "GET /images/hm_f98_top.gif HTTP/1.1", "status": 200, "size": 749} +{"@timestamp": 897410925, "clientip":"68.228.1.0", "request": "GET /images/f98dnld_memo_sc6.gif HTTP/1.0", "status": 200, "size": 5770} +{"@timestamp": 897410925, "clientip":"35.44.19.0", "request": "GET /images/news_hm_arw.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 897410925, "clientip":"55.44.19.0", "request": "GET /images/hm_btm_arw01.gif HTTP/1.0", "status": 200, "size": 428} +{"@timestamp": 897410926, "clientip":"193.218.0.0", "request": "GET /images/acc_bg.gif HTTP/1.0", "status": 200, "size": 10103} +{"@timestamp": 897410926, "clientip":"16.112.0.0", "request": "GET /english/images/comp_hm_header_shad.gif HTTP/1.1", "status": 200, "size": 2207} +{"@timestamp": 897410926, "clientip":"58.44.19.0", "request": "GET /images/hm_hola.gif HTTP/1.0", "status": 200, "size": 2240} +{"@timestamp": 897410926, "clientip":"152.155.12.0", "request": "GET /images/f98f_home_speech_e.gif HTTP/1.0", "status": 200, "size": 2266} +{"@timestamp": 897410926, "clientip":"98.28.3.0", "request": "GET /images/hm_score_border_r01.gif HTTP/1.0", "status": 200, "size": 929} +{"@timestamp": 897410926, "clientip":"111.155.12.0", "request": "GET /english/images/team_group_header_c.gif HTTP/1.0", "status": 200, "size": 670} +{"@timestamp": 897410926, "clientip":"155.155.12.0", "request": "GET /english/index.html HTTP/1.1", "status": 200, "size": 892} +{"@timestamp": 897410926, "clientip":"165.252.9.0", "request": "GET /images/f98f_shar_tit_faces_e.gif HTTP/1.0", "status": 200, "size": 1719} +{"@timestamp": 897410926, "clientip":"220.2.0.0", "request": "GET /images/hm_arw_01.gif HTTP/1.0", "status": 200, "size": 464} +{"@timestamp": 897410926, "clientip":"148.12.0.0", "request": "GET /english/splash_inet.html HTTP/1.0", "status": 200, "size": 39073} +{"@timestamp": 897410926, "clientip":"131.155.12.0", "request": "GET /images/esp.gif HTTP/1.1", "status": 200, "size": 1892} +{"@timestamp": 897410926, "clientip":"55.142.11.0", "request": "GET /english/images/nav_tickets_off.gif HTTP/1.1", "status": 200, "size": 937} +{"@timestamp": 897410926, "clientip":"143.184.16.0", "request": "GET /images/hm_ligne1_col3.gif HTTP/1.0", "status": 200, "size": 1065} +{"@timestamp": 897410926, "clientip":"115.249.14.0", "request": "GET /english/images/teams_bu_confed_off.gif HTTP/1.0", "status": 200, "size": 1105} +{"@timestamp": 897410926, "clientip":"51.19.16.0", "request": "GET /images/acc_tools.gif HTTP/1.0", "status": 200, "size": 2696} +{"@timestamp": 897410926, "clientip":"185.51.4.0", "request": "GET /english/images/hm_caption_f98f.gif HTTP/1.0", "status": 200, "size": 8544} +{"@timestamp": 897410926, "clientip":"84.17.0.0", "request": "GET /english/images/nav_fetes_off.gif HTTP/1.0", "status": 200, "size": 694} +{"@timestamp": 897410926, "clientip":"78.44.19.0", "request": "GET /images/hm_score_up_line02.gif HTTP/1.0", "status": 200, "size": 89} +{"@timestamp": 897410926, "clientip":"36.44.19.0", "request": "GET /english/nav_inet.html HTTP/1.1", "status": 200, "size": 2884} +{"@timestamp": 897410926, "clientip":"97.155.12.0", "request": "GET /images/11327.jpg HTTP/1.0", "status": 200, "size": 7746} +{"@timestamp": 897410926, "clientip":"152.155.12.0", "request": "GET /english/enfetes/0706_faces_d.html HTTP/1.0", "status": 200, "size": 20071} +{"@timestamp": 897410926, "clientip":"121.155.12.0", "request": "GET /images/hm_lbn_tp_rborder.gif HTTP/1.1", "status": 200, "size": 872} +{"@timestamp": 897410926, "clientip":"220.2.0.0", "request": "GET /images/hm_btm_arw02.gif HTTP/1.0", "status": 200, "size": 428} +{"@timestamp": 897410926, "clientip":"150.155.12.0", "request": "GET /english/images/nav_venue_off.gif HTTP/1.0", "status": 200, "size": 870} +{"@timestamp": 897410926, "clientip":"169.155.12.0", "request": "GET /english/images/hm_lbn_head.gif HTTP/1.0", "status": 200, "size": 1273} +{"@timestamp": 897410926, "clientip":"43.237.2.0", "request": "GET /images/hm_score_up_line03.gif HTTP/1.0", "status": 200, "size": 90} +{"@timestamp": 897410926, "clientip":"43.237.2.0", "request": "GET /english/images/hm_lbn_head.gif HTTP/1.0", "status": 200, "size": 1273} +{"@timestamp": 897410926, "clientip":"148.155.12.0", "request": "GET /images/hm_ligne1_col3.gif HTTP/1.0", "status": 200, "size": 1065} +{"@timestamp": 897410926, "clientip":"39.122.9.0", "request": "GET /images/acc_welcome_f.gif HTTP/1.1", "status": 200, "size": 2572} +{"@timestamp": 897410926, "clientip":"17.8.1.0", "request": "GET /english/images/nav_sitemap_off.gif HTTP/1.0", "status": 200, "size": 416} +{"@timestamp": 897410926, "clientip":"98.28.3.0", "request": "GET /images/hm_btm_arw02.gif HTTP/1.0", "status": 200, "size": 428} +{"@timestamp": 897410926, "clientip":"152.155.12.0", "request": "GET /images/f98f_home_menu_e.gif HTTP/1.0", "status": 200, "size": 1624} +{"@timestamp": 897410926, "clientip":"51.153.12.0", "request": "GET /images/acc_copyright.gif HTTP/1.0", "status": 200, "size": 1665} +{"@timestamp": 897410926, "clientip":"104.87.1.0", "request": "GET /english/teams/relatedtem_148.htm HTTP/1.0", "status": 200, "size": 13112} +{"@timestamp": 897410926, "clientip":"17.8.1.0", "request": "GET /english/images/nav_history_off.gif HTTP/1.0", "status": 200, "size": 914} +{"@timestamp": 897410926, "clientip":"228.155.12.0", "request": "GET /english/images/team_hm_header_shad.gif HTTP/1.0", "status": 200, "size": 1379} +{"@timestamp": 897410926, "clientip":"93.173.1.0", "request": "GET /english/history/past_cups/images/past_bu_82_on.gif HTTP/1.0", "status": 200, "size": 507} +{"@timestamp": 897410926, "clientip":"253.38.0.0", "request": "GET /images/13288.jpg HTTP/1.0", "status": 200, "size": 7967} +{"@timestamp": 897410926, "clientip":"48.44.19.0", "request": "GET /images/hm_bg_splash.gif HTTP/1.0", "status": 200, "size": 243} +{"@timestamp": 897410926, "clientip":"144.155.12.0", "request": "GET /english/images/hm_nav_bar.gif HTTP/1.0", "status": 200, "size": 2746} +{"@timestamp": 897410926, "clientip":"51.153.12.0", "request": "GET /images/acc_tools.gif HTTP/1.0", "status": 200, "size": 2696} +{"@timestamp": 897410926, "clientip":"157.155.12.0", "request": "GET /images/acc_sponsors.gif HTTP/1.0", "status": 200, "size": 2740} +{"@timestamp": 897410926, "clientip":"17.8.1.0", "request": "GET /images/hm_bg_splash.gif HTTP/1.0", "status": 200, "size": 243} +{"@timestamp": 897410926, "clientip":"11.14.5.0", "request": "GET /english/images/countdown.gif HTTP/1.0", "status": 200, "size": 2092} +{"@timestamp": 897410926, "clientip":"39.44.19.0", "request": "GET /images/hm_ligne2_col1.gif HTTP/1.1", "status": 200, "size": 352} +{"@timestamp": 897410926, "clientip":"18.218.0.0", "request": "GET /images/mprev_link01.gif HTTP/1.0", "status": 200, "size": 383} +{"@timestamp": 897410926, "clientip":"208.127.11.0", "request": "GET /images/11102.gif HTTP/1.0", "status": 200, "size": 417} +{"@timestamp": 897410926, "clientip":"173.21.0.0", "request": "GET /images/acc_anime.gif HTTP/1.0", "status": 200, "size": 16456} +{"@timestamp": 897410926, "clientip":"246.112.0.0", "request": "GET /images/nav_bg_top.gif HTTP/1.0", "status": 200, "size": 929} +{"@timestamp": 897410926, "clientip":"89.248.13.0", "request": "GET /english/images/nav_history_off.gif HTTP/1.1", "status": 200, "size": 914} +{"@timestamp": 897410926, "clientip":"183.190.18.0", "request": "GET /images/acc_copyright.gif HTTP/1.0", "status": 200, "size": 1665} +{"@timestamp": 897410926, "clientip":"234.173.8.0", "request": "GET /images/saintdenis.gif HTTP/1.0", "status": 200, "size": 702} +{"@timestamp": 897410926, "clientip":"89.248.13.0", "request": "GET /english/images/nav_home_off.gif HTTP/1.1", "status": 200, "size": 828} +{"@timestamp": 897410926, "clientip":"153.54.7.0", "request": "GET /english/playing/download/download.html HTTP/1.0", "status": 200, "size": 16029} +{"@timestamp": 897410926, "clientip":"165.190.18.0", "request": "GET /images/backnews.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"171.190.18.0", "request": "GET /images/hm_factoids_02_01.gif HTTP/1.1", "status": 200, "size": 1766} +{"@timestamp": 897410926, "clientip":"165.190.18.0", "request": "GET /images/dot.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"66.221.12.0", "request": "GET /images/hm_factoids_02_03.gif HTTP/1.1", "status": 200, "size": 240} +{"@timestamp": 897410926, "clientip":"44.192.9.0", "request": "GET /images/dot.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"89.248.13.0", "request": "GET /english/images/nav_hosts_off.gif HTTP/1.1", "status": 200, "size": 914} +{"@timestamp": 897410926, "clientip":"154.255.13.0", "request": "GET /images/102321.gif HTTP/1.0", "status": 200, "size": 1602} +{"@timestamp": 897410926, "clientip":"154.255.13.0", "request": "GET /images/10505.jpg HTTP/1.0", "status": 200, "size": 19321} +{"@timestamp": 897410926, "clientip":"44.192.9.0", "request": "GET /images/dot.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"246.112.0.0", "request": "GET /images/nav_bg_bottom.jpg HTTP/1.0", "status": 200, "size": 8389} +{"@timestamp": 897410926, "clientip":"168.234.0.0", "request": "GET /images/hm_bg_splash.gif HTTP/1.0", "status": 200, "size": 243} +{"@timestamp": 897410926, "clientip":"165.190.18.0", "request": "GET /images/dot.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"61.218.12.0", "request": "GET /images/hm_arw_03.gif HTTP/1.1", "status": 200, "size": 472} +{"@timestamp": 897410926, "clientip":"213.5.0.0", "request": "GET /images/logo_cfo.gif HTTP/1.0", "status": 200, "size": 1504} +{"@timestamp": 897410926, "clientip":"94.241.13.0", "request": "GET /english/images/nav_venue_off.gif HTTP/1.0", "status": 200, "size": 870} +{"@timestamp": 897410926, "clientip":"76.19.16.0", "request": "GET /french/teams/teamgroup.htm HTTP/1.1", "status": 200, "size": 11979} +{"@timestamp": 897410926, "clientip":"69.104.15.0", "request": "GET /images/acc_copyright.gif HTTP/1.0", "status": 200, "size": 1665} +{"@timestamp": 897410926, "clientip":"241.32.10.0", "request": "GET /english/splash_inet.html HTTP/1.0", "status": 200, "size": 39073} +{"@timestamp": 897410926, "clientip":"141.6.0.0", "request": "GET /images/hm_score_border_l_off.gif HTTP/1.1", "status": 200, "size": 326} +{"@timestamp": 897410926, "clientip":"86.19.16.0", "request": "GET /images/hm_score_inter01.gif HTTP/1.0", "status": 200, "size": 298} +{"@timestamp": 897410926, "clientip":"251.55.18.0", "request": "GET /french/images/nav_sitemap_off.gif HTTP/1.1", "status": 200, "size": 413} +{"@timestamp": 897410926, "clientip":"86.19.16.0", "request": "GET /images/hm_score_up_line02.gif HTTP/1.0", "status": 200, "size": 89} +{"@timestamp": 897410926, "clientip":"64.19.16.0", "request": "GET /english/venues/cities/images/paris/venue_paris_header.jpg HTTP/1.0", "status": 200, "size": 8349} +{"@timestamp": 897410926, "clientip":"213.5.0.0", "request": "GET /english/images/nav_field_off.gif HTTP/1.0", "status": 200, "size": 1005} +{"@timestamp": 897410926, "clientip":"128.19.16.0", "request": "GET /images/hm_score_up_line01.gif HTTP/1.0", "status": 200, "size": 106} +{"@timestamp": 897410926, "clientip":"144.185.0.0", "request": "GET /images/nav_bg_top.gif HTTP/1.0", "status": 200, "size": 929} +{"@timestamp": 897410926, "clientip":"1.188.9.0", "request": "GET /images/hm_score_up_line02.gif HTTP/1.0", "status": 200, "size": 89} +{"@timestamp": 897410926, "clientip":"247.55.18.0", "request": "GET /english/images/hm_btm_luca.gif HTTP/1.0", "status": 200, "size": 1308} +{"@timestamp": 897410926, "clientip":"1.188.9.0", "request": "GET /images/hm_score_down_line03.gif HTTP/1.0", "status": 200, "size": 90} +{"@timestamp": 897410926, "clientip":"22.211.0.0", "request": "GET /images/acc_welcome_f.gif HTTP/1.0", "status": 200, "size": 2572} +{"@timestamp": 897410926, "clientip":"132.19.16.0", "request": "GET /english/images/team_group_header_a.gif HTTP/1.0", "status": 200, "size": 639} +{"@timestamp": 897410926, "clientip":"142.67.5.0", "request": "GET /english/images/hm_ligne3_col1.gif HTTP/1.1", "status": 200, "size": 2082} +{"@timestamp": 897410926, "clientip":"250.55.18.0", "request": "GET /js/factoid.js HTTP/1.1", "status": 200, "size": 12008} +{"@timestamp": 897410926, "clientip":"213.5.0.0", "request": "GET /images/hm_bg_splash.gif HTTP/1.0", "status": 200, "size": 243} +{"@timestamp": 897410926, "clientip":"130.19.16.0", "request": "GET /images/hm_score_up_line03.gif HTTP/1.0", "status": 200, "size": 90} +{"@timestamp": 897410926, "clientip":"80.147.0.0", "request": "GET /english/playing/images/trivia/quizbg.gif HTTP/1.1", "status": 200, "size": 1905} +{"@timestamp": 897410926, "clientip":"1.188.9.0", "request": "GET /images/hm_score_down_line01.gif HTTP/1.0", "status": 200, "size": 90} +{"@timestamp": 897410926, "clientip":"153.19.16.0", "request": "GET /images/acc_anime.gif HTTP/1.1", "status": 200, "size": 16456} +{"@timestamp": 897410926, "clientip":"1.188.9.0", "request": "GET /images/hm_score_border_l_off.gif HTTP/1.0", "status": 200, "size": 326} +{"@timestamp": 897410926, "clientip":"224.29.0.0", "request": "GET /english/playing/images/trivia.gif HTTP/1.0", "status": 200, "size": 1295} +{"@timestamp": 897410926, "clientip":"165.190.18.0", "request": "GET /english/images/fpnewstop.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"101.19.16.0", "request": "GET /english/images/hm_ligne4_col4.gif HTTP/1.1", "status": 200, "size": 5149} +{"@timestamp": 897410926, "clientip":"103.185.11.0", "request": "GET /english/images/hm_lbn_head.gif HTTP/1.0", "status": 200, "size": 1273} +{"@timestamp": 897410926, "clientip":"234.173.8.0", "request": "GET /images/paris.gif HTTP/1.0", "status": 200, "size": 591} +{"@timestamp": 897410926, "clientip":"207.67.8.0", "request": "GET /images/nav_bg_top.gif HTTP/1.0", "status": 200, "size": 929} +{"@timestamp": 897410926, "clientip":"103.185.11.0", "request": "GET /english/teams/teambio167.htm HTTP/1.0", "status": 200, "size": 11770} +{"@timestamp": 897410926, "clientip":"193.208.9.0", "request": "GET /images/hm_score_border_r01.gif HTTP/1.0", "status": 200, "size": 929} +{"@timestamp": 897410926, "clientip":"205.94.5.0", "request": "GET /english/images/lateb_new.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"7.113.4.0", "request": "GET /images/arw_red_lk.gif HTTP/1.1", "status": 200, "size": 1068} +{"@timestamp": 897410926, "clientip":"161.137.1.0", "request": "GET /js/factoid.js HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"57.46.7.0", "request": "GET /images/hm_ligne2_col1.gif HTTP/1.0", "status": 200, "size": 352} +{"@timestamp": 897410926, "clientip":"234.173.8.0", "request": "GET /images/saintetienne.gif HTTP/1.0", "status": 200, "size": 761} +{"@timestamp": 897410926, "clientip":"61.218.12.0", "request": "GET /images/hm_lbn_tp_btm.gif HTTP/1.1", "status": 200, "size": 949} +{"@timestamp": 897410926, "clientip":"132.19.16.0", "request": "GET /english/images/teams_bu_group_on.gif HTTP/1.0", "status": 200, "size": 668} +{"@timestamp": 897410926, "clientip":"34.245.2.0", "request": "GET /english/images/comp_bu_refsn.gif HTTP/1.1", "status": 200, "size": 933} +{"@timestamp": 897410926, "clientip":"138.96.7.0", "request": "GET /english/images/nav_field_off.gif HTTP/1.0", "status": 200, "size": 1005} +{"@timestamp": 897410926, "clientip":"241.32.10.0", "request": "GET /english/nav_top_inet.html HTTP/1.0", "status": 200, "size": 374} +{"@timestamp": 897410926, "clientip":"173.204.6.0", "request": "GET /images/hm_lbn_tp_btm.gif HTTP/1.1", "status": 200, "size": 949} +{"@timestamp": 897410926, "clientip":"94.220.13.0", "request": "GET /french/enfetes/entrance.html HTTP/1.0", "status": 200, "size": 7803} +{"@timestamp": 897410926, "clientip":"173.232.11.0", "request": "GET /english/splash_inet.html HTTP/1.0", "status": 200, "size": 39073} +{"@timestamp": 897410926, "clientip":"161.81.1.0", "request": "GET /images/ligne.gif HTTP/1.0", "status": 200, "size": 169} +{"@timestamp": 897410926, "clientip":"158.201.6.0", "request": "GET /images/teams_hm_bracket.gif HTTP/1.0", "status": 200, "size": 655} +{"@timestamp": 897410926, "clientip":"193.208.9.0", "request": "GET /images/hm_score_up_line03.gif HTTP/1.0", "status": 200, "size": 90} +{"@timestamp": 897410926, "clientip":"94.241.13.0", "request": "GET /english/images/nav_tickets_off.gif HTTP/1.0", "status": 200, "size": 937} +{"@timestamp": 897410926, "clientip":"241.32.10.0", "request": "GET /images/nav_bg_top.gif HTTP/1.0", "status": 200, "size": 929} +{"@timestamp": 897410926, "clientip":"149.19.16.0", "request": "GET /images/hm_score_border_r.gif HTTP/1.0", "status": 200, "size": 241} +{"@timestamp": 897410926, "clientip":"57.223.9.0", "request": "GET /images/bg_generic.jpg HTTP/1.0", "status": 200, "size": 21127} +{"@timestamp": 897410926, "clientip":"94.220.13.0", "request": "GET /images/f98f_home_whistle.gif HTTP/1.0", "status": 200, "size": 1335} +{"@timestamp": 897410926, "clientip":"173.204.6.0", "request": "GET /images/hm_btm_arw02.gif HTTP/1.1", "status": 200, "size": 428} +{"@timestamp": 897410926, "clientip":"140.25.0.0", "request": "GET /images/hm_bg_splash.gif HTTP/1.0", "status": 200, "size": 243} +{"@timestamp": 897410926, "clientip":"120.90.6.0", "request": "GET /images/nav_arw_l.gif HTTP/1.1", "status": 200, "size": 316} +{"@timestamp": 897410926, "clientip":"66.112.2.0", "request": "GET /english/playing/download/download.html HTTP/1.1", "status": 200, "size": 16029} +{"@timestamp": 897410926, "clientip":"185.31.0.0", "request": "GET /images/hm_hola.gif HTTP/1.0", "status": 200, "size": 2240} +{"@timestamp": 897410926, "clientip":"191.231.18.0", "request": "GET /images/11105.gif HTTP/1.1", "status": 200, "size": 114} +{"@timestamp": 897410926, "clientip":"174.3.0.0", "request": "GET /images/3cat09.gif HTTP/1.0", "status": 200, "size": 2211} +{"@timestamp": 897410926, "clientip":"15.2.6.0", "request": "GET /images/hm_lbn_tp_rbtm.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"120.90.6.0", "request": "GET /images/jersey_hol_e.gif HTTP/1.1", "status": 200, "size": 5221} +{"@timestamp": 897410926, "clientip":"217.63.20.0", "request": "GET /images/hm_factoids_02_03.gif HTTP/1.0", "status": 200, "size": 240} +{"@timestamp": 897410926, "clientip":"247.235.2.0", "request": "GET /images/hm_lbn_tp_rborder.gif HTTP/1.0", "status": 200, "size": 872} +{"@timestamp": 897410926, "clientip":"114.75.0.0", "request": "GET /images/hm_score_up_line03.gif HTTP/1.1", "status": 200, "size": 90} +{"@timestamp": 897410926, "clientip":"219.63.20.0", "request": "GET /english/images/nav_team_off.gif HTTP/1.0", "status": 200, "size": 776} +{"@timestamp": 897410926, "clientip":"15.2.6.0", "request": "GET /english/images/hm_btm_prol.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"55.42.0.0", "request": "GET /english/teams/teamroster148.htm HTTP/1.0", "status": 200, "size": 24859} +{"@timestamp": 897410926, "clientip":"114.75.0.0", "request": "GET /images/hm_score_border_r.gif HTTP/1.1", "status": 200, "size": 241} +{"@timestamp": 897410926, "clientip":"191.231.18.0", "request": "GET /images/11102.gif HTTP/1.1", "status": 200, "size": 417} +{"@timestamp": 897410926, "clientip":"219.63.20.0", "request": "GET /english/images/nav_tickets_off.gif HTTP/1.0", "status": 200, "size": 937} +{"@timestamp": 897410926, "clientip":"225.63.20.0", "request": "GET /french/playing/download/download_memo.html HTTP/1.0", "status": 200, "size": 9433} +{"@timestamp": 897410926, "clientip":"193.63.20.0", "request": "GET /images/news_arrow.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"202.146.6.0", "request": "GET /english/news/1605espa.htm HTTP/1.0", "status": 200, "size": 2645} +{"@timestamp": 897410926, "clientip":"220.63.20.0", "request": "GET /images/hm_btm_arw05.gif HTTP/1.0", "status": 200, "size": 360} +{"@timestamp": 897410926, "clientip":"58.93.5.0", "request": "GET /english/history/past_cups/images/past_bu_38_off.gif HTTP/1.0", "status": 200, "size": 436} +{"@timestamp": 897410926, "clientip":"150.102.15.0", "request": "GET /images/acc_bg.gif HTTP/1.0", "status": 200, "size": 10103} +{"@timestamp": 897410926, "clientip":"114.75.0.0", "request": "GET /images/hm_score_border_l_off.gif HTTP/1.1", "status": 200, "size": 326} +{"@timestamp": 897410926, "clientip":"150.102.15.0", "request": "GET /images/acc_welcome_f.gif HTTP/1.0", "status": 200, "size": 2572} +{"@timestamp": 897410926, "clientip":"222.63.20.0", "request": "GET /english/images/top_stories.gif HTTP/1.0", "status": 200, "size": 1210} +{"@timestamp": 897410926, "clientip":"15.2.6.0", "request": "GET /images/hm_btm_arw01.gif HTTP/1.1", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"193.63.20.0", "request": "GET /english/images/team_bu_roster.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"150.102.15.0", "request": "GET /images/acc_anime.gif HTTP/1.0", "status": 200, "size": 16456} +{"@timestamp": 897410926, "clientip":"114.75.0.0", "request": "GET /images/hm_score_border_r01.gif HTTP/1.1", "status": 200, "size": 929} +{"@timestamp": 897410926, "clientip":"222.63.20.0", "request": "GET /english/images/fpnewstop.gif HTTP/1.0", "status": 200, "size": 568} +{"@timestamp": 897410926, "clientip":"114.75.0.0", "request": "GET /english/images/hm_lbn_head.gif HTTP/1.1", "status": 200, "size": 1273} +{"@timestamp": 897410926, "clientip":"220.63.20.0", "request": "GET /images/hm_lbn_tp_btm.gif HTTP/1.0", "status": 200, "size": 949} +{"@timestamp": 897410926, "clientip":"250.39.1.0", "request": "GET /french/teams/teamgroup.htm HTTP/1.1", "status": 200, "size": 11979} +{"@timestamp": 897410926, "clientip":"191.231.18.0", "request": "GET /images/11101.gif HTTP/1.1", "status": 200, "size": 415} +{"@timestamp": 897410926, "clientip":"126.3.10.0", "request": "GET /english/images/nav_venue_off.gif HTTP/1.1", "status": 200, "size": 870} +{"@timestamp": 897410926, "clientip":"110.143.10.0", "request": "GET /images/102357.gif HTTP/1.0", "status": 200, "size": 1529} +{"@timestamp": 897410926, "clientip":"46.101.0.0", "request": "GET /images/hm_factoids_03_01.gif HTTP/1.0", "status": 200, "size": 494} +{"@timestamp": 897410926, "clientip":"137.105.20.0", "request": "GET /images/acc_bg.gif HTTP/1.0", "status": 200, "size": 10103} +{"@timestamp": 897410926, "clientip":"219.204.0.0", "request": "GET /images/acc_welcome_f.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"72.179.8.0", "request": "GET /french/news/newsnwl.htm HTTP/1.0", "status": 200, "size": 6942} +{"@timestamp": 897410926, "clientip":"219.204.0.0", "request": "GET /images/acc_anime.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"219.204.0.0", "request": "GET /images/acc_sponsors.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"165.63.20.0", "request": "GET /images/hm_ligne4_col1.gif HTTP/1.1", "status": 200, "size": 286} +{"@timestamp": 897410926, "clientip":"219.204.0.0", "request": "GET /images/acc_browsers.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"233.7.6.0", "request": "GET /images/hm_bg_splash.gif HTTP/1.0", "status": 200, "size": 243} +{"@timestamp": 897410926, "clientip":"248.168.18.0", "request": "GET /french/images/nav_home_off.gif HTTP/1.1", "status": 200, "size": 915} +{"@timestamp": 897410926, "clientip":"149.18.0.0", "request": "GET /robots.txt HTTP/1.0", "status": 404, "size": 207} +{"@timestamp": 897410926, "clientip":"226.231.5.0", "request": "GET /french/playing/images/links.gif HTTP/1.1", "status": 200, "size": 1773} +{"@timestamp": 897410926, "clientip":"81.26.20.0", "request": "GET /js/factoid.js HTTP/1.0", "status": 200, "size": 12008} +{"@timestamp": 897410926, "clientip":"58.190.20.0", "request": "GET /english/images/comp_hm_header_shad.gif HTTP/1.0", "status": 200, "size": 2207} +{"@timestamp": 897410926, "clientip":"165.63.20.0", "request": "GET /english/images/hm_caption_f98f.gif HTTP/1.1", "status": 200, "size": 8544} +{"@timestamp": 897410926, "clientip":"106.216.5.0", "request": "GET /images/hm_factoids_01_03.gif HTTP/1.0", "status": 200, "size": 224} +{"@timestamp": 897410926, "clientip":"226.135.19.0", "request": "GET /images/hm_lbn_tp_btm.gif HTTP/1.0", "status": 200, "size": 949} +{"@timestamp": 897410926, "clientip":"218.18.16.0", "request": "GET /images/s102378.gif HTTP/1.0", "status": 200, "size": 118} +{"@timestamp": 897410926, "clientip":"59.190.20.0", "request": "GET /english/images/nav_logo_sponsors.gif HTTP/1.0", "status": 200, "size": 1991} +{"@timestamp": 897410926, "clientip":"98.184.5.0", "request": "GET /images/hm_score_border_l_on.gif HTTP/1.1", "status": 200, "size": 348} +{"@timestamp": 897410926, "clientip":"98.184.5.0", "request": "GET /french/images/hm_score_next.gif HTTP/1.1", "status": 200, "size": 952} +{"@timestamp": 897410926, "clientip":"133.76.0.0", "request": "GET /english/images/hm_ligne3_col1.gif HTTP/1.0", "status": 200, "size": 2082} +{"@timestamp": 897410926, "clientip":"106.19.16.0", "request": "GET /images/hm_score_border_r01.gif HTTP/1.0", "status": 200, "size": 929} +{"@timestamp": 897410926, "clientip":"135.26.0.0", "request": "GET /french/images/nav_sitemap_off.gif HTTP/1.0", "status": 200, "size": 413} +{"@timestamp": 897410926, "clientip":"141.6.0.0", "request": "GET /images/hm_score_down_line03.gif HTTP/1.1", "status": 200, "size": 90} +{"@timestamp": 897410926, "clientip":"243.55.18.0", "request": "GET /english/images/nav_field_off.gif HTTP/1.1", "status": 200, "size": 1005} +{"@timestamp": 897410926, "clientip":"133.76.0.0", "request": "GET /images/hm_ligne4_col1.gif HTTP/1.0", "status": 200, "size": 286} +{"@timestamp": 897410926, "clientip":"100.19.16.0", "request": "GET /english/images/news_btn_org_off.gif HTTP/1.0", "status": 200, "size": 823} +{"@timestamp": 897410926, "clientip":"246.65.0.0", "request": "GET /images/acc_copyright.gif HTTP/1.0", "status": 200, "size": 1665} +{"@timestamp": 897410926, "clientip":"87.243.14.0", "request": "GET /images/hm_bg_splash.gif HTTP/1.0", "status": 200, "size": 243} +{"@timestamp": 897410926, "clientip":"234.173.8.0", "request": "GET /images/nantes_off.gif HTTP/1.0", "status": 200, "size": 751} +{"@timestamp": 897410926, "clientip":"175.190.18.0", "request": "GET /english/teams/teamgroup.htm HTTP/1.0", "status": 200, "size": 11971} +{"@timestamp": 897410926, "clientip":"73.191.3.0", "request": "GET /french/images/hm_btm_prol.gif HTTP/1.0", "status": 200, "size": 1342} +{"@timestamp": 897410926, "clientip":"154.255.13.0", "request": "GET /images/bra.gif HTTP/1.0", "status": 200, "size": 2526} +{"@timestamp": 897410926, "clientip":"224.29.0.0", "request": "GET /images/f98dnld_memo_sc1.gif HTTP/1.0", "status": 200, "size": 3477} +{"@timestamp": 897410926, "clientip":"57.46.7.0", "request": "GET /english/images/hm_ligne3_col1.gif HTTP/1.0", "status": 200, "size": 2082} +{"@timestamp": 897410926, "clientip":"57.46.7.0", "request": "GET /english/images/countdown.gif HTTP/1.0", "status": 200, "size": 2092} +{"@timestamp": 897410926, "clientip":"178.190.18.0", "request": "GET /english/images/nav_tickets_off.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"205.94.5.0", "request": "GET /english/tickets/images/ticket_hm_bg.jpg HTTP/1.0", "status": 200, "size": 20929} +{"@timestamp": 897410926, "clientip":"246.112.0.0", "request": "GET /images/logo_cfo.gif HTTP/1.0", "status": 200, "size": 1504} +{"@timestamp": 897410926, "clientip":"118.248.13.0", "request": "GET /images/s102353.gif HTTP/1.1", "status": 200, "size": 867} +{"@timestamp": 897410926, "clientip":"132.1.0.0", "request": "GET /images/nws_comp_bdr_r.gif HTTP/1.0", "status": 200, "size": 293} +{"@timestamp": 897410926, "clientip":"225.50.0.0", "request": "GET /english/frntpage.htm HTTP/1.0", "status": 200, "size": 14432} +{"@timestamp": 897410926, "clientip":"53.8.7.0", "request": "GET /images/acc_copyright.gif HTTP/1.0", "status": 200, "size": 1665} +{"@timestamp": 897410926, "clientip":"245.18.16.0", "request": "GET /french/images/venue_bu_city_off.gif HTTP/1.0", "status": 200, "size": 1305} +{"@timestamp": 897410926, "clientip":"252.18.16.0", "request": "GET /images/hm_score_up_line01.gif HTTP/1.0", "status": 200, "size": 106} +{"@timestamp": 897410926, "clientip":"154.19.16.0", "request": "GET /images/logo_cfo.gif HTTP/1.0", "status": 200, "size": 1504} +{"@timestamp": 897410926, "clientip":"126.193.0.0", "request": "GET /english/nav_top_inet.html HTTP/1.0", "status": 200, "size": 374} +{"@timestamp": 897410926, "clientip":"107.19.16.0", "request": "GET /images/ligne4_latebreak.gif HTTP/1.0", "status": 200, "size": 1056} +{"@timestamp": 897410926, "clientip":"249.55.18.0", "request": "GET /english/images/nav_tickets_off.gif HTTP/1.0", "status": 200, "size": 937} +{"@timestamp": 897410926, "clientip":"133.76.0.0", "request": "GET /images/dot.gif HTTP/1.0", "status": 200, "size": 43} +{"@timestamp": 897410926, "clientip":"22.211.0.0", "request": "GET /images/acc_welcome_e.gif HTTP/1.0", "status": 200, "size": 2513} +{"@timestamp": 897410926, "clientip":"158.201.6.0", "request": "GET /english/images/team_group_header_b.gif HTTP/1.0", "status": 200, "size": 665} +{"@timestamp": 897410926, "clientip":"243.55.18.0", "request": "GET /english/images/nav_history_off.gif HTTP/1.1", "status": 200, "size": 914} +{"@timestamp": 897410926, "clientip":"34.245.2.0", "request": "GET /english/images/comp_bu_statistics.gif HTTP/1.1", "status": 200, "size": 1541} +{"@timestamp": 897410926, "clientip":"132.19.16.0", "request": "GET /images/s102386.gif HTTP/1.0", "status": 200, "size": 279} +{"@timestamp": 897410926, "clientip":"22.211.0.0", "request": "GET /images/acc_sponsors.gif HTTP/1.0", "status": 200, "size": 2740} +{"@timestamp": 897410926, "clientip":"94.241.13.0", "request": "GET /english/images/nav_field_off.gif HTTP/1.0", "status": 200, "size": 1005} +{"@timestamp": 897410926, "clientip":"22.211.0.0", "request": "GET /images/acc_copyright.gif HTTP/1.0", "status": 200, "size": 1665} +{"@timestamp": 897410926, "clientip":"247.55.18.0", "request": "GET /images/hm_btm_btm.gif HTTP/1.0", "status": 200, "size": 283} +{"@timestamp": 897410926, "clientip":"126.30.0.0", "request": "GET /english/individuals/player170592.htm HTTP/1.0", "status": 200, "size": 4433} +{"@timestamp": 897410926, "clientip":"241.32.10.0", "request": "GET /english/nav_inet.html HTTP/1.0", "status": 200, "size": 2884} +{"@timestamp": 897410926, "clientip":"193.208.9.0", "request": "GET /images/hm_score_down_line03.gif HTTP/1.0", "status": 200, "size": 90} +{"@timestamp": 897410926, "clientip":"118.156.1.0", "request": "GET /images/acc_welcome_e.gif HTTP/1.1", "status": 200, "size": 2513} +{"@timestamp": 897410926, "clientip":"138.37.1.0", "request": "GET /english/history/past_cups/images/past_bu_90_off.gif HTTP/1.0", "status": 200, "size": 429} +{"@timestamp": 897410926, "clientip":"1.188.9.0", "request": "GET /images/hm_score_up_line01.gif HTTP/1.0", "status": 200, "size": 106} +{"@timestamp": 897410926, "clientip":"110.190.7.0", "request": "GET /images/hm_f98_top.gif HTTP/1.0", "status": 200, "size": 749} +{"@timestamp": 897410926, "clientip":"213.5.0.0", "request": "GET /english/images/nav_fetes_off.gif HTTP/1.0", "status": 200, "size": 694} +{"@timestamp": 897410926, "clientip":"22.211.0.0", "request": "GET /images/acc_bg.gif HTTP/1.0", "status": 200, "size": 10103} +{"@timestamp": 897410926, "clientip":"1.188.9.0", "request": "GET /english/images/hm_score_next.gif HTTP/1.0", "status": 200, "size": 938} +{"@timestamp": 897410926, "clientip":"1.188.9.0", "request": "GET /images/hm_ligne4_col1.gif HTTP/1.0", "status": 200, "size": 286} +{"@timestamp": 897410926, "clientip":"1.188.9.0", "request": "GET /english/images/hm_score_next_head.gif HTTP/1.0", "status": 200, "size": 1426} +{"@timestamp": 897410926, "clientip":"173.204.6.0", "request": "GET /images/hm_btm_arw01.gif HTTP/1.1", "status": 200, "size": 428} +{"@timestamp": 897410926, "clientip":"120.216.13.0", "request": "GET /images/f98f_home_play_button.gif HTTP/1.0", "status": 200, "size": 94} +{"@timestamp": 897410926, "clientip":"1.188.9.0", "request": "GET /english/images/hm_nav_bar.gif HTTP/1.0", "status": 200, "size": 2746} +{"@timestamp": 897410926, "clientip":"181.5.0.0", "request": "GET /images/f98f_shar_bg.gif HTTP/1.0", "status": 200, "size": 20431} +{"@timestamp": 897410926, "clientip":"1.188.9.0", "request": "GET /images/hm_score_inter02.gif HTTP/1.0", "status": 200, "size": 305} +{"@timestamp": 897410926, "clientip":"213.5.0.0", "request": "GET /images/hm_ligne1_col2.gif HTTP/1.0", "status": 200, "size": 201} +{"@timestamp": 897410926, "clientip":"1.188.9.0", "request": "GET /images/hm_score_border_l_on.gif HTTP/1.0", "status": 200, "size": 348} +{"@timestamp": 897410926, "clientip":"87.243.14.0", "request": "GET /english/index.html HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"232.41.0.0", "request": "GET /images/hm_score_border_r01.gif HTTP/1.0", "status": 200, "size": 929} +{"@timestamp": 897410926, "clientip":"232.41.0.0", "request": "GET /french/images/hm_lbn_head.gif HTTP/1.0", "status": 200, "size": 1316} +{"@timestamp": 897410926, "clientip":"253.176.13.0", "request": "GET /english/news/jer_home.htm HTTP/1.0", "status": 200, "size": 7374} +{"@timestamp": 897410926, "clientip":"62.19.16.0", "request": "GET /images/tck_pkit_prev.jpg HTTP/1.0", "status": 200, "size": 9232} +{"@timestamp": 897410926, "clientip":"135.19.16.0", "request": "GET /english/playing/images/links.gif HTTP/1.1", "status": 200, "size": 1756} +{"@timestamp": 897410926, "clientip":"232.41.0.0", "request": "GET /images/hm_lbn_tp_rborder.gif HTTP/1.0", "status": 200, "size": 872} +{"@timestamp": 897410926, "clientip":"20.178.0.0", "request": "GET /images/hm_bg_splash.gif HTTP/1.0", "status": 200, "size": 243} +{"@timestamp": 897410926, "clientip":"132.1.0.0", "request": "POST /cgi-bin/trivia/Trivia.pl HTTP/1.0", "status": 200, "size": 4923} +{"@timestamp": 897410926, "clientip":"71.20.0.0", "request": "GET /english/images/hm_btm_prol.gif HTTP/1.0", "status": 200, "size": 1306} +{"@timestamp": 897410926, "clientip":"179.45.0.0", "request": "GET /french/images/hm_ligne3_col1.gif HTTP/1.0", "status": 200, "size": 1610} +{"@timestamp": 897410926, "clientip":"106.203.10.0", "request": "GET /images/hm_score_down_line01.gif HTTP/1.0", "status": 200, "size": 90} +{"@timestamp": 897410926, "clientip":"128.19.16.0", "request": "GET /images/hm_score_border_l_on.gif HTTP/1.0", "status": 200, "size": 348} +{"@timestamp": 897410926, "clientip":"72.7.0.0", "request": "GET /images/dot.gif HTTP/1.0", "status": 304, "size": 0} +{"@timestamp": 897410926, "clientip":"211.148.8.0", "request": "GET /images/102327s.gif HTTP/1.1", "status": 200, "size": 782} +{"@timestamp": 897410926, "clientip":"173.204.6.0", "request": "GET /images/hm_lbn_tp_rbtm.gif HTTP/1.1", "status": 200, "size": 852} +{"@timestamp": 897410926, "clientip":"142.67.5.0", "request": "GET /images/hm_hola.gif HTTP/1.1", "status": 200, "size": 2240} +{"@timestamp": 897410926, "clientip":"251.55.18.0", "request": "GET /french/images/nav_home_off.gif HTTP/1.1", "status": 200, "size": 915} +{"@timestamp": 897410926, "clientip":"250.55.18.0", "request": "GET /english/images/nav_comp_off.gif HTTP/1.1", "status": 200, "size": 994} +{"@timestamp": 897410926, "clientip":"136.19.16.0", "request": "GET /images/s102424.gif HTTP/1.0", "status": 200, "size": 164} +{"@timestamp": 897410926, "clientip":"250.55.18.0", "request": "GET /english/images/nav_team_off.gif HTTP/1.1", "status": 200, "size": 776} +{"@timestamp": 897410926, "clientip":"34.245.2.0", "request": "GET /english/images/comp_bu_calendar.gif HTTP/1.1", "status": 200, "size": 1197} +{"@timestamp": 897410926, "clientip":"94.220.13.0", "request": "GET /images/f98f_shar_anim_ola.gif HTTP/1.0", "status": 200, "size": 4027} +{"@timestamp": 897410926, "clientip":"91.127.6.0", "request": "GET /images/hm_lbn_tp_btm.gif HTTP/1.0", "status": 200, "size": 949} +{"@timestamp": 897410926, "clientip":"80.147.0.0", "request": "GET /english/playing/images/trivia/banner.jpg HTTP/1.1", "status": 200, "size": 19967} +{"@timestamp": 897410926, "clientip":"61.218.12.0", "request": "GET /images/hm_lbn_tp_rbtm.gif HTTP/1.1", "status": 200, "size": 852} +{"@timestamp": 897410926, "clientip":"136.19.16.0", "request": "GET /english/images/team_group_header_d.gif HTTP/1.0", "status": 200, "size": 646} +{"@timestamp": 897410926, "clientip":"120.216.13.0", "request": "GET /images/f98f_shar_pic_bottom.gif HTTP/1.0", "status": 200, "size": 428} +{"@timestamp": 897410926, "clientip":"252.18.16.0", "request": "GET /images/hm_ligne4_col1.gif HTTP/1.0", "status": 200, "size": 286} +{"@timestamp": 897410926, "clientip":"46.198.19.0", "request": "GET /english/images/comp_bu_stage2n.gif HTTP/1.1", "status": 200, "size": 984} +{"@timestamp": 897410926, "clientip":"186.160.0.0", "request": "GET /english/images/news_btn_archive_off.gif HTTP/1.0", "status": 200, "size": 1420} +{"@timestamp": 897410926, "clientip":"105.25.0.0", "request": "GET /english/news/athm.htm HTTP/1.0", "status": 200, "size": 11992} +{"@timestamp": 897410926, "clientip":"213.5.0.0", "request": "GET /js/factoid.js HTTP/1.0", "status": 200, "size": 12008} +{"@timestamp": 897410926, "clientip":"213.5.0.0", "request": "GET /english/images/nav_hosts_off.gif HTTP/1.0", "status": 200, "size": 914} +{"@timestamp": 897410926, "clientip":"141.6.0.0", "request": "GET /images/hm_score_border_r.gif HTTP/1.1", "status": 200, "size": 241} +{"@timestamp": 897410926, "clientip":"9.65.8.0", "request": "GET /english/news/prev01.htm HTTP/1.0", "status": 200, "size": 10728} +{"@timestamp": 897410926, "clientip":"213.5.0.0", "request": "GET /english/images/nav_home_off.gif HTTP/1.0", "status": 200, "size": 828} +{"@timestamp": 897410926, "clientip":"173.204.6.0", "request": "GET /english/images/hm_btm_prol.gif HTTP/1.1", "status": 200, "size": 1306} +{"@timestamp": 897410926, "clientip":"211.148.8.0", "request": "GET /images/102336s.gif HTTP/1.1", "status": 200, "size": 789} +{"@timestamp": 897410926, "clientip":"36.37.7.0", "request": "GET /images/hm_bg_splash.gif HTTP/1.1", "status": 200, "size": 243} +{"@timestamp": 897410926, "clientip":"129.19.16.0", "request": "GET /images/hm_score_down_line0) tabletJson.rowsets) { beforeSegmentCount += Integer.parseInt(rowset.split(" ")[1]) } + assertEquals(beforeSegmentCount, 5) } - assertEquals(beforeSegmentCount, 5) // trigger compactions for all tablets in ${tableName} for (def tablet in tablets) { @@ -111,8 +112,8 @@ suite("test_variant_bloom_filter", "nonConcurrent") { }); } - int afterSegmentCount = 0 for (def tablet in tablets) { + int afterSegmentCount = 0 String tablet_id = tablet.TabletId (code, out, err) = curl("GET", tablet.CompactionStatus) logger.info("Show tablets status: code=" + code + ", out=" + out + ", err=" + err) @@ -123,8 +124,9 @@ suite("test_variant_bloom_filter", "nonConcurrent") { logger.info("rowset is: " + rowset) afterSegmentCount += Integer.parseInt(rowset.split(" ")[1]) } + assertEquals(afterSegmentCount, 1) } - assertEquals(afterSegmentCount, 1) + try { GetDebugPoint().enableDebugPointForAllBEs("bloom_filter_must_filter_data") diff --git a/regression-test/suites/inverted_index_p0/index_compaction/test_index_compaction_p0.groovy b/regression-test/suites/inverted_index_p0/index_compaction/test_index_compaction_p0.groovy index d25c4f149eb834..009576f5ef18a3 100644 --- a/regression-test/suites/inverted_index_p0/index_compaction/test_index_compaction_p0.groovy +++ b/regression-test/suites/inverted_index_p0/index_compaction/test_index_compaction_p0.groovy @@ -21,7 +21,7 @@ import org.awaitility.Awaitility suite("test_index_compaction_p0", "p0, nonConcurrent") { - def compaction_table_name = "httplogs" + def compaction_table_name = "test_index_compaction_p0_httplogs" def load_json_data = {table_name, file_name -> // load the json data @@ -71,15 +71,11 @@ suite("test_index_compaction_p0", "p0, nonConcurrent") { "disable_auto_compaction" = "true" ); """ - def executor = Executors.newFixedThreadPool(20) (1..20).each { i -> - executor.submit { - def fileName = "documents-" + i + ".json" - load_json_data.call(compaction_table_name, """${getS3Url()}/regression/inverted_index_cases/httplogs/${fileName}""") - } + def fileName = "documents-" + i + ".json" + load_json_data.call(compaction_table_name, """${fileName}""") + } - executor.shutdown() - executor.awaitTermination(1, TimeUnit.MINUTES) def backendId_to_backendIP = [:] def backendId_to_backendHttpPort = [:] @@ -95,8 +91,9 @@ suite("test_index_compaction_p0", "p0, nonConcurrent") { //TabletId,ReplicaId,BackendId,SchemaHash,Version,LstSuccessVersion,LstFailedVersion,LstFailedTime,LocalDataSize,RemoteDataSize,RowCount,State,LstConsistencyCheckTime,CheckVersion,VersionCount,QueryHits,PathHash,MetaUrl,CompactionStatus def tablets = sql_return_maparray """ show tablets from ${compaction_table_name}; """ - int beforeSegmentCount = 0 + for (def tablet in tablets) { + int beforeSegmentCount = 0 String tablet_id = tablet.TabletId (code, out, err) = curl("GET", tablet.CompactionStatus) logger.info("Show tablets status: code=" + code + ", out=" + out + ", err=" + err) @@ -106,14 +103,14 @@ suite("test_index_compaction_p0", "p0, nonConcurrent") { for (String rowset in (List) tabletJson.rowsets) { beforeSegmentCount += Integer.parseInt(rowset.split(" ")[1]) } + assertEquals(beforeSegmentCount, 20) } - assertEquals(beforeSegmentCount, 20) // trigger compactions for all tablets in ${tableName} for (def tablet in tablets) { String tablet_id = tablet.TabletId backend_id = tablet.BackendId - (code, out, err) = be_run_cumulative_compaction(backendId_to_backendIP.get(backend_id), backendId_to_backendHttpPort.get(backend_id), tablet_id) + (code, out, err) = be_run_full_compaction(backendId_to_backendIP.get(backend_id), backendId_to_backendHttpPort.get(backend_id), tablet_id) logger.info("Run compaction: code=" + code + ", out=" + out + ", err=" + err) assertEquals(code, 0) def compactJson = parseJson(out.trim()) @@ -134,8 +131,9 @@ suite("test_index_compaction_p0", "p0, nonConcurrent") { }); } - int afterSegmentCount = 0 + for (def tablet in tablets) { + int afterSegmentCount = 0 String tablet_id = tablet.TabletId (code, out, err) = curl("GET", tablet.CompactionStatus) logger.info("Show tablets status: code=" + code + ", out=" + out + ", err=" + err) @@ -146,6 +144,7 @@ suite("test_index_compaction_p0", "p0, nonConcurrent") { logger.info("rowset is: " + rowset) afterSegmentCount += Integer.parseInt(rowset.split(" ")[1]) } + assertEquals(afterSegmentCount, 1) } - assertEquals(afterSegmentCount, 1) + } diff --git a/regression-test/suites/inverted_index_p0/load/test_insert.groovy b/regression-test/suites/inverted_index_p0/load/test_insert.groovy index 03e7a3ccb26404..3f80fccc56d7f7 100644 --- a/regression-test/suites/inverted_index_p0/load/test_insert.groovy +++ b/regression-test/suites/inverted_index_p0/load/test_insert.groovy @@ -16,7 +16,7 @@ // under the License. import org.codehaus.groovy.runtime.IOGroovyMethods -suite("test_insert_with_index", "p0") { +suite("test_insert_with_index", "p0, nonConcurrent") { def set_be_config = { key, value -> def backendId_to_backendIP = [:] diff --git a/regression-test/suites/inverted_index_p0/load/test_stream_load.groovy b/regression-test/suites/inverted_index_p0/load/test_stream_load.groovy index 1912fdcfc50c4c..28875acc438fc7 100644 --- a/regression-test/suites/inverted_index_p0/load/test_stream_load.groovy +++ b/regression-test/suites/inverted_index_p0/load/test_stream_load.groovy @@ -16,7 +16,7 @@ // under the License. import org.codehaus.groovy.runtime.IOGroovyMethods -suite("test_stream_load_with_inverted_index_p0", "p0") { +suite("test_stream_load_with_inverted_index_p0", "p0, nonConcurrent") { def set_be_config = { key, value -> def backendId_to_backendIP = [:] diff --git a/regression-test/suites/inverted_index_p1/index_compaction/test_index_compaction_p1.groovy b/regression-test/suites/inverted_index_p1/index_compaction/test_index_compaction_p1.groovy index 27a8470bd26296..c55ae3c233bec0 100644 --- a/regression-test/suites/inverted_index_p1/index_compaction/test_index_compaction_p1.groovy +++ b/regression-test/suites/inverted_index_p1/index_compaction/test_index_compaction_p1.groovy @@ -95,8 +95,9 @@ suite("test_index_compaction_p1", "p1, nonConcurrent") { //TabletId,ReplicaId,BackendId,SchemaHash,Version,LstSuccessVersion,LstFailedVersion,LstFailedTime,LocalDataSize,RemoteDataSize,RowCount,State,LstConsistencyCheckTime,CheckVersion,VersionCount,QueryHits,PathHash,MetaUrl,CompactionStatus def tablets = sql_return_maparray """ show tablets from ${compaction_table_name}; """ - int beforeSegmentCount = 0 + for (def tablet in tablets) { + int beforeSegmentCount = 0 String tablet_id = tablet.TabletId (code, out, err) = curl("GET", tablet.CompactionStatus) logger.info("Show tablets status: code=" + code + ", out=" + out + ", err=" + err) @@ -106,14 +107,14 @@ suite("test_index_compaction_p1", "p1, nonConcurrent") { for (String rowset in (List) tabletJson.rowsets) { beforeSegmentCount += Integer.parseInt(rowset.split(" ")[1]) } + assertEquals(beforeSegmentCount, 110) } - assertEquals(beforeSegmentCount, 110) // trigger compactions for all tablets in ${tableName} for (def tablet in tablets) { String tablet_id = tablet.TabletId backend_id = tablet.BackendId - (code, out, err) = be_run_cumulative_compaction(backendId_to_backendIP.get(backend_id), backendId_to_backendHttpPort.get(backend_id), tablet_id) + (code, out, err) = be_run_full_compaction(backendId_to_backendIP.get(backend_id), backendId_to_backendHttpPort.get(backend_id), tablet_id) logger.info("Run compaction: code=" + code + ", out=" + out + ", err=" + err) assertEquals(code, 0) def compactJson = parseJson(out.trim()) @@ -134,8 +135,8 @@ suite("test_index_compaction_p1", "p1, nonConcurrent") { }); } - int afterSegmentCount = 0 for (def tablet in tablets) { + int afterSegmentCount = 0 String tablet_id = tablet.TabletId (code, out, err) = curl("GET", tablet.CompactionStatus) logger.info("Show tablets status: code=" + code + ", out=" + out + ", err=" + err) @@ -146,6 +147,6 @@ suite("test_index_compaction_p1", "p1, nonConcurrent") { logger.info("rowset is: " + rowset) afterSegmentCount += Integer.parseInt(rowset.split(" ")[1]) } + assertEquals(afterSegmentCount, 1) } - assertEquals(afterSegmentCount, 1) } diff --git a/regression-test/suites/inverted_index_p2/test_variant_index_format_v1.groovy b/regression-test/suites/inverted_index_p2/test_variant_index_format_v1.groovy index 5f262c8bf07775..2bf1d20b106323 100644 --- a/regression-test/suites/inverted_index_p2/test_variant_index_format_v1.groovy +++ b/regression-test/suites/inverted_index_p2/test_variant_index_format_v1.groovy @@ -15,7 +15,7 @@ // specific language governing permissions and limitations // under the License. -suite("test_variant_index_format_v1", "p2") { +suite("test_variant_index_format_v1", "p2, nonConcurrent") { def calc_file_crc_on_tablet = { ip, port, tablet -> return curl("GET", String.format("http://%s:%s/api/calc_crc?tablet_id=%s", ip, port, tablet)) } diff --git a/regression-test/suites/load_p2/test_single_replica_load.groovy b/regression-test/suites/load_p2/test_single_replica_load.groovy index cb4f970ac66d1f..67f0b4639f8821 100644 --- a/regression-test/suites/load_p2/test_single_replica_load.groovy +++ b/regression-test/suites/load_p2/test_single_replica_load.groovy @@ -19,7 +19,7 @@ // /testing/trino-product-tests/src/main/resources/sql-tests/testcases // and modified by Doris. -suite("test_single_replica_load", "p2") { +suite("test_single_replica_load", "p2, nonConcurrent") { def load_json_data = {table_name, file_name -> // load the json data diff --git a/regression-test/suites/nereids_rules_p0/simplify_conditional_function/simplify_conditional_function.groovy b/regression-test/suites/nereids_rules_p0/simplify_conditional_function/simplify_conditional_function.groovy index 18443bb152abda..2b99ad0a23a8a5 100644 --- a/regression-test/suites/nereids_rules_p0/simplify_conditional_function/simplify_conditional_function.groovy +++ b/regression-test/suites/nereids_rules_p0/simplify_conditional_function/simplify_conditional_function.groovy @@ -49,4 +49,6 @@ suite("simplify_conditional_function") { qt_test_outer_ref_coalesce "select c1 from (select coalesce(null,a,c) c1,a,b from test_simplify_conditional_function order by c1,a,b limit 2) t group by c1 order by c1" qt_test_outer_ref_nvl "select c1 from (select ifnull(null, c) c1 from test_simplify_conditional_function order by 1 limit 2) t group by c1 order by c1" qt_test_outer_ref_nullif "select c1 from (select nullif(a, null) c1,c from test_simplify_conditional_function order by c1,c limit 2 ) t group by c1 order by c1" + + qt_test_nullable_nullif "SELECT COUNT( DISTINCT NULLIF ( 1, NULL ) ), COUNT( DISTINCT 72 )" } \ No newline at end of file diff --git a/regression-test/suites/variant_p0/with_index/var_index.groovy b/regression-test/suites/variant_p0/with_index/var_index.groovy index 2a302b96b6a22b..82234bc3b5a300 100644 --- a/regression-test/suites/variant_p0/with_index/var_index.groovy +++ b/regression-test/suites/variant_p0/with_index/var_index.groovy @@ -15,7 +15,7 @@ // specific language governing permissions and limitations // under the License. -suite("regression_test_variant_var_index", "p0"){ +suite("regression_test_variant_var_index", "p0, nonConcurrent"){ def table_name = "var_index" sql "DROP TABLE IF EXISTS var_index" sql """ diff --git a/run-cloud-ut.sh b/run-cloud-ut.sh index 16473b1a2a8873..c74eee7b5f3eb4 100755 --- a/run-cloud-ut.sh +++ b/run-cloud-ut.sh @@ -228,6 +228,7 @@ cd test # FILTER: binary_name:gtest_filter # FILTER: meta_service_test:DetachSchemaKVTest.* # ./run_all_tests.sh --test "\"$(echo "${FILTER}" | awk -F: '{print $1}')\"" --filter "\"$(echo "${FILTER}" | awk -F: '{print $2}')\"" --fdb "\"${FDB}\"" +set -euo pipefail if [[ "_${ENABLE_CLANG_COVERAGE}" == "_ON" ]]; then bash -x ./run_all_tests.sh --coverage --test "$(echo "${FILTER}" | awk -F: '{print $1}')" --filter "$(echo "${FILTER}" | awk -F: '{print $2}')" --fdb "${FDB}" else