首页 >> 大全

elasticsearch结构化查询(一)

2023-11-28 大全 25 作者:考证青年

在上一篇中我们介绍了DSL相关的知识,接下来我们将会学习的结构化查询,同时也实践一下上一篇的DSL的查询用法

什么是结构化搜索?

从《权威指南》上摘取部分解释如下:

		结构化搜索是指查询包含内部结构的数据。日期,时间,和数字都是结构化的:它们有明确的格式给你执行逻辑操作。一般包括比较数字或日期的范围,或确定两个值哪个大。文本也可以被结构化。一包蜡笔有不同的颜色:红色 , 绿色 , 蓝色 。一篇博客可能被打上 分布式 和 搜索 的标签。电子商务产品有商品统一代码(UPCs)或其他有着严格格式的标识。通过结构化搜索,你的查询结果始终是是或非;是否应该属于集合。结构化搜索不关心文档的相关性或分数,它只是简单的包含或排除文档。这必须是有意义的逻辑,一个数字不能比同一个范围中的其他数字 更多。它只能包含在一个范围中或不在其中。类似的,对于结构化文本,一个值必须相等或不等。这里没有更匹配的概念。

从上面的定义我们可以看出来结构化查询最重要的就是是否匹配么人并不是很关心相关性和分值计算。所以接下来我们将会一一介绍不同的结构化查询。

Term查询

term 主要用于查找精确值,由于不需要计算分值,而且可以被缓存,所以速度很快,而且term查询主要针对的是数字,日期,布尔值或 的字符串(未经分析的文本数据类型)。

首先我们使用term查询一下:

GET bank/_search
{"query": {"term": {"firstname": {"value": "Burton"}}},"profile": "true"
}

返回结果:

{"took" : 1,"timed_out" : false,"_shards" : {"total" : 1,"successful" : 1,"skipped" : 0,"failed" : 0},"hits" : {"total" : {"value" : 0,"relation" : "eq"},"max_score" : null,"hits" : [ ]},"profile" : {"shards" : [{"id" : "[jW8PbSdhTOOpESX13DRBJQ][bank][0]","searches" : [{"query" : [{"type" : "TermQuery","description" : "firstname:Burton","time_in_nanos" : 8729,"breakdown" : {"set_min_competitive_score_count" : 0,"match_count" : 0,"shallow_advance_count" : 0,"set_min_competitive_score" : 0,"next_doc" : 0,"match" : 0,"next_doc_count" : 0,"score_count" : 0,"compute_max_score_count" : 0,"compute_max_score" : 0,"advance" : 0,"advance_count" : 0,"score" : 0,"build_scorer_count" : 2,"create_weight" : 7274,"shallow_advance" : 0,"create_weight_count" : 1,"build_scorer" : 1455}}],"rewrite_time" : 1222,"collector" : [{"name" : "SimpleTopScoreDocCollector","reason" : "search_top_hits","time_in_nanos" : 3132}]}],"aggregations" : [ ]}]}
}

我们发现结果好像并不尽如人意,那么我们再试一个,这次我们把他修改成年龄字段搜索:

GET bank/_search
{"query": {"term": {"age": {"value": 36}}},"profile": "true"
}

返回结果:

{"took" : 2,"timed_out" : false,"_shards" : {"total" : 1,"successful" : 1,"skipped" : 0,"failed" : 0},"hits" : {"total" : {"value" : 52,"relation" : "eq"},"max_score" : 1.0,"hits" : [{"_index" : "bank","_type" : "account","_id" : "6","_score" : 1.0,"_source" : {"account_number" : 6,"balance" : 5686,"firstname" : "Hattie","lastname" : "Bond","age" : 36,"gender" : "M","address" : "671 Bristol Street","employer" : "Netagy","email" : "hattiebond@netagy.com","city" : "Dante","state" : "TN"}},{"_index" : "bank","_type" : "account","_id" : "361","_score" : 1.0,"_source" : {"account_number" : 361,"balance" : 23659,"firstname" : "Noreen","lastname" : "Shelton","age" : 36,"gender" : "M","address" : "702 Tillary Street","employer" : "Medmex","email" : "noreenshelton@medmex.com","city" : "Derwood","state" : "NH"}},{"_index" : "bank","_type" : "account","_id" : "378","_score" : 1.0,"_source" : {"account_number" : 378,"balance" : 27100,"firstname" : "Watson","lastname" : "Simpson","age" : 36,"gender" : "F","address" : "644 Thomas Street","employer" : "Wrapture","email" : "watsonsimpson@wrapture.com","city" : "Keller","state" : "TX"}},{"_index" : "bank","_type" : "account","_id" : "397","_score" : 1.0,"_source" : {"account_number" : 397,"balance" : 37418,"firstname" : "Leonard","lastname" : "Gray","age" : 36,"gender" : "F","address" : "840 Morgan Avenue","employer" : "Recritube","email" : "leonardgray@recritube.com","city" : "Edenburg","state" : "AL"}},{"_index" : "bank","_type" : "account","_id" : "455","_score" : 1.0,"_source" : {"account_number" : 455,"balance" : 39556,"firstname" : "Lynn","lastname" : "Tran","age" : 36,"gender" : "M","address" : "741 Richmond Street","employer" : "Optyk","email" : "lynntran@optyk.com","city" : "Clinton","state" : "WV"}}]},"profile" : {"shards" : [{"id" : "[jW8PbSdhTOOpESX13DRBJQ][bank][0]","searches" : [{"query" : [{"type" : "PointRangeQuery","description" : "age:[36 TO 36]","time_in_nanos" : 101095,"breakdown" : {"set_min_competitive_score_count" : 0,"match_count" : 0,"shallow_advance_count" : 0,"set_min_competitive_score" : 0,"next_doc" : 10111,"match" : 0,"next_doc_count" : 52,"score_count" : 52,"compute_max_score_count" : 0,"compute_max_score" : 0,"advance" : 2175,"advance_count" : 2,"score" : 4530,"build_scorer_count" : 4,"create_weight" : 2346,"shallow_advance" : 0,"create_weight_count" : 1,"build_scorer" : 81933}}],"rewrite_time" : 1248,"collector" : [{"name" : "SimpleTopScoreDocCollector","reason" : "search_top_hits","time_in_nanos" : 76285}]}],"aggregations" : [ ]}]}
}

根据上面的结果,我们再一次验证了,term查询只针对精确值、布尔值、日期以及未经分析的字段,而如果我们用term去查询一些单词或者句子等,就会匹配不到对应的值,为什么呢?官网其实也给出了解释,在下图中就可以看到,其实是因为我们es默认的标准分词器可能将我们要查询的句子或者单词变成小写了,或者拆分了,而我们的term查询又是精确查询,所以不会分析我们的搜索字段的,从而导致term查询一些单词和短语时,很难得到满意的结果。当然这也是官方提醒我们要避免的,官方建议我们使用match来匹配查询一些单词和短语,效果要比term好。

传送门

如图所示:

简述结构化查询语言_es查询表结构_

这里我就不翻译了,如果想学习更多,可以自行阅读官方文档。

Terms查询

terms查询其实就是类似整合多个term查询。如例子所示:

GET bank/_search
{"query": {"terms": {"age": [36,27]}},"profile": "true"
}

返回结果:

{"took" : 3,"timed_out" : false,"_shards" : {"total" : 1,"successful" : 1,"skipped" : 0,"failed" : 0},"hits" : {"total" : {"value" : 91,"relation" : "eq"},"max_score" : 1.0,"hits" : [{"_index" : "bank","_type" : "account","_id" : "6","_score" : 1.0,"_source" : {"account_number" : 6,"balance" : 5686,"firstname" : "Hattie","lastname" : "Bond","age" : 36,"gender" : "M","address" : "671 Bristol Street","employer" : "Netagy","email" : "hattiebond@netagy.com","city" : "Dante","state" : "TN"}},{"_index" : "bank","_type" : "account","_id" : "20","_score" : 1.0,"_source" : {"account_number" : 20,"balance" : 16418,"firstname" : "Elinor","lastname" : "Ratliff","age" : 36,"gender" : "M","address" : "282 Kings Place","employer" : "Scentric","email" : "elinorratliff@scentric.com","city" : "Ribera","state" : "WA"}},{"_index" : "bank","_type" : "account","_id" : "102","_score" : 1.0,"_source" : {"account_number" : 102,"balance" : 29712,"firstname" : "Dena","lastname" : "Olson","age" : 27,"gender" : "F","address" : "759 Newkirk Avenue","employer" : "Hinway","email" : "denaolson@hinway.com","city" : "Choctaw","state" : "NJ"}},{"_index" : "bank","_type" : "account","_id" : "133","_score" : 1.0,"_source" : {"account_number" : 133,"balance" : 26135,"firstname" : "Deena","lastname" : "Richmond","age" : 36,"gender" : "F","address" : "646 Underhill Avenue","employer" : "Sunclipse","email" : "deenarichmond@sunclipse.com","city" : "Austinburg","state" : "SC"}},{"_index" : "bank","_type" : "account","_id" : "222","_score" : 1.0,"_source" : {"account_number" : 222,"balance" : 14764,"firstname" : "Rachelle","lastname" : "Rice","age" : 36,"gender" : "M","address" : "333 Narrows Avenue","employer" : "Enaut","email" : "rachellerice@enaut.com","city" : "Wright","state" : "AZ"}},{"_index" : "bank","_type" : "account","_id" : "239","_score" : 1.0,"_source" : {"account_number" : 239,"balance" : 25719,"firstname" : "Chang","lastname" : "Boyer","age" : 36,"gender" : "M","address" : "895 Brigham Street","employer" : "Qaboos","email" : "changboyer@qaboos.com","city" : "Belgreen","state" : "NH"}},{"_index" : "bank","_type" : "account","_id" : "328","_score" : 1.0,"_source" : {"account_number" : 328,"balance" : 12523,"firstname" : "Good","lastname" : "Campbell","age" : 27,"gender" : "F","address" : "438 Hicks Street","employer" : "Gracker","email" : "goodcampbell@gracker.com","city" : "Marion","state" : "CA"}},{"_index" : "bank","_type" : "account","_id" : "342","_score" : 1.0,"_source" : {"account_number" : 342,"balance" : 33670,"firstname" : "Vivian","lastname" : "Wells","age" : 36,"gender" : "M","address" : "570 Cobek Court","employer" : "Nutralab","email" : "vivianwells@nutralab.com","city" : "Fontanelle","state" : "OK"}},{"_index" : "bank","_type" : "account","_id" : "361","_score" : 1.0,"_source" : {"account_number" : 361,"balance" : 23659,"firstname" : "Noreen","lastname" : "Shelton","age" : 36,"gender" : "M","address" : "702 Tillary Street","employer" : "Medmex","email" : "noreenshelton@medmex.com","city" : "Derwood","state" : "NH"}},{"_index" : "bank","_type" : "account","_id" : "378","_score" : 1.0,"_source" : {"account_number" : 378,"balance" : 27100,"firstname" : "Watson","lastname" : "Simpson","age" : 36,"gender" : "F","address" : "644 Thomas Street","employer" : "Wrapture","email" : "watsonsimpson@wrapture.com","city" : "Keller","state" : "TX"}}]},"profile" : {"shards" : [{"id" : "[jW8PbSdhTOOpESX13DRBJQ][bank][0]","searches" : [{"query" : [{"type" : "PointInSetQuery","description" : "age:{27 36}","time_in_nanos" : 864841,"breakdown" : {"set_min_competitive_score_count" : 0,"match_count" : 0,"shallow_advance_count" : 0,"set_min_competitive_score" : 0,"next_doc" : 3060,"match" : 0,"next_doc_count" : 91,"score_count" : 91,"compute_max_score_count" : 0,"compute_max_score" : 0,"advance" : 2277,"advance_count" : 2,"score" : 2482,"build_scorer_count" : 4,"create_weight" : 52628,"shallow_advance" : 0,"create_weight_count" : 1,"build_scorer" : 804394}}],"rewrite_time" : 1505,"collector" : [{"name" : "SimpleTopScoreDocCollector","reason" : "search_top_hits","time_in_nanos" : 17392}]}],"aggregations" : [ ]}]}
}

当然在term中需要注意的在这里同样需要。terms也是同样是精确查询。这里提一嘴terms 的用法,先看的例子:

GET bank/_search
{"query": {"terms": {"age": {"index" : "bank","id" : "342","path" : "age"}}},"profile": "true"
}

返回结果:

{"took" : 4,"timed_out" : false,"_shards" : {"total" : 1,"successful" : 1,"skipped" : 0,"failed" : 0},"hits" : {"total" : {"value" : 52,"relation" : "eq"},"max_score" : 1.0,"hits" : [{"_index" : "bank","_type" : "account","_id" : "6","_score" : 1.0,"_source" : {"account_number" : 6,"balance" : 5686,"firstname" : "Hattie","lastname" : "Bond","age" : 36,"gender" : "M","address" : "671 Bristol Street","employer" : "Netagy","email" : "hattiebond@netagy.com","city" : "Dante","state" : "TN"}},{"_index" : "bank","_type" : "account","_id" : "20","_score" : 1.0,"_source" : {"account_number" : 20,"balance" : 16418,"firstname" : "Elinor","lastname" : "Ratliff","age" : 36,"gender" : "M","address" : "282 Kings Place","employer" : "Scentric","email" : "elinorratliff@scentric.com","city" : "Ribera","state" : "WA"}},{"_index" : "bank","_type" : "account","_id" : "133","_score" : 1.0,"_source" : {"account_number" : 133,"balance" : 26135,"firstname" : "Deena","lastname" : "Richmond","age" : 36,"gender" : "F","address" : "646 Underhill Avenue","employer" : "Sunclipse","email" : "deenarichmond@sunclipse.com","city" : "Austinburg","state" : "SC"}},{"_index" : "bank","_type" : "account","_id" : "222","_score" : 1.0,"_source" : {"account_number" : 222,"balance" : 14764,"firstname" : "Rachelle","lastname" : "Rice","age" : 36,"gender" : "M","address" : "333 Narrows Avenue","employer" : "Enaut","email" : "rachellerice@enaut.com","city" : "Wright","state" : "AZ"}},{"_index" : "bank","_type" : "account","_id" : "239","_score" : 1.0,"_source" : {"account_number" : 239,"balance" : 25719,"firstname" : "Chang","lastname" : "Boyer","age" : 36,"gender" : "M","address" : "895 Brigham Street","employer" : "Qaboos","email" : "changboyer@qaboos.com","city" : "Belgreen","state" : "NH"}},{"_index" : "bank","_type" : "account","_id" : "342","_score" : 1.0,"_source" : {"account_number" : 342,"balance" : 33670,"firstname" : "Vivian","lastname" : "Wells","age" : 36,"gender" : "M","address" : "570 Cobek Court","employer" : "Nutralab","email" : "vivianwells@nutralab.com","city" : "Fontanelle","state" : "OK"}},{"_index" : "bank","_type" : "account","_id" : "361","_score" : 1.0,"_source" : {"account_number" : 361,"balance" : 23659,"firstname" : "Noreen","lastname" : "Shelton","age" : 36,"gender" : "M","address" : "702 Tillary Street","employer" : "Medmex","email" : "noreenshelton@medmex.com","city" : "Derwood","state" : "NH"}},{"_index" : "bank","_type" : "account","_id" : "378","_score" : 1.0,"_source" : {"account_number" : 378,"balance" : 27100,"firstname" : "Watson","lastname" : "Simpson","age" : 36,"gender" : "F","address" : "644 Thomas Street","employer" : "Wrapture","email" : "watsonsimpson@wrapture.com","city" : "Keller","state" : "TX"}},{"_index" : "bank","_type" : "account","_id" : "397","_score" : 1.0,"_source" : {"account_number" : 397,"balance" : 37418,"firstname" : "Leonard","lastname" : "Gray","age" : 36,"gender" : "F","address" : "840 Morgan Avenue","employer" : "Recritube","email" : "leonardgray@recritube.com","city" : "Edenburg","state" : "AL"}},{"_index" : "bank","_type" : "account","_id" : "455","_score" : 1.0,"_source" : {"account_number" : 455,"balance" : 39556,"firstname" : "Lynn","lastname" : "Tran","age" : 36,"gender" : "M","address" : "741 Richmond Street","employer" : "Optyk","email" : "lynntran@optyk.com","city" : "Clinton","state" : "WV"}}]},"profile" : {"shards" : [{"id" : "[jW8PbSdhTOOpESX13DRBJQ][bank][0]","searches" : [{"query" : [{"type" : "PointInSetQuery","description" : "age:{36}","time_in_nanos" : 137631,"breakdown" : {"set_min_competitive_score_count" : 0,"match_count" : 0,"shallow_advance_count" : 0,"set_min_competitive_score" : 0,"next_doc" : 1715,"match" : 0,"next_doc_count" : 52,"score_count" : 52,"compute_max_score_count" : 0,"compute_max_score" : 0,"advance" : 1762,"advance_count" : 2,"score" : 1462,"build_scorer_count" : 4,"create_weight" : 1747,"shallow_advance" : 0,"create_weight_count" : 1,"build_scorer" : 130945}}],"rewrite_time" : 1454,"collector" : [{"name" : "SimpleTopScoreDocCollector","reason" : "search_top_hits","time_in_nanos" : 11493}]}],"aggregations" : [ ]}]}
}

我理解的意思就是查询与指定文档id下的指定的字段的值一样的文档有哪些。效率虽然高,但是限制也比较多,可自行查看官网描述的相关限制,传送门

range查询

range查询即范围查询,主要包括数字查询和日期查询,当然也可以查询文本,但是要将.ies设置为true。

查询数字

查询的结构如下:

GET bank/_search
{"query": {"range": {"age": {"gte" : 27,"lt" : 36}}},"profile": "true"
}

其中范围查询的参数有:

gte:大于等于

gt:大于

lt:小于

lte:小于等于

:主要用来格式化日期的

:时区

查询数字的返回结果为:

{"took" : 15,"timed_out" : false,"_shards" : {"total" : 1,"successful" : 1,"skipped" : 0,"failed" : 0},"hits" : {"total" : {"value" : 436,"relation" : "eq"},"max_score" : 1.0,"hits" : [{"_index" : "bank","_type" : "account","_id" : "13","_score" : 1.0,"_source" : {"account_number" : 13,"balance" : 32838,"firstname" : "Nanette","lastname" : "Bates","age" : 28,"gender" : "F","address" : "789 Madison Street","employer" : "Quility","email" : "nanettebates@quility.com","city" : "Nogal","state" : "VA"}},{"_index" : "bank","_type" : "account","_id" : "18","_score" : 1.0,"_source" : {"account_number" : 18,"balance" : 4180,"firstname" : "Dale","lastname" : "Adams","age" : 33,"gender" : "M","address" : "467 Hutchinson Court","employer" : "Boink","email" : "daleadams@boink.com","city" : "Orick","state" : "MD"}},{"_index" : "bank","_type" : "account","_id" : "32","_score" : 1.0,"_source" : {"account_number" : 32,"balance" : 48086,"firstname" : "Dillard","lastname" : "Mcpherson","age" : 34,"gender" : "F","address" : "702 Quentin Street","employer" : "Quailcom","email" : "dillardmcpherson@quailcom.com","city" : "Veguita","state" : "IN"}},{"_index" : "bank","_type" : "account","_id" : "51","_score" : 1.0,"_source" : {"account_number" : 51,"balance" : 14097,"firstname" : "Burton","lastname" : "Meyers","age" : 31,"gender" : "F","address" : "334 River Street","employer" : "Bezal","email" : "burtonmeyers@bezal.com","city" : "Jacksonburg","state" : "MO"}},{"_index" : "bank","_type" : "account","_id" : "56","_score" : 1.0,"_source" : {"account_number" : 56,"balance" : 14992,"firstname" : "Josie","lastname" : "Nelson","age" : 32,"gender" : "M","address" : "857 Tabor Court","employer" : "Emtrac","email" : "josienelson@emtrac.com","city" : "Sunnyside","state" : "UT"}},{"_index" : "bank","_type" : "account","_id" : "63","_score" : 1.0,"_source" : {"account_number" : 63,"balance" : 6077,"firstname" : "Hughes","lastname" : "Owens","age" : 30,"gender" : "F","address" : "510 Sedgwick Street","employer" : "Valpreal","email" : "hughesowens@valpreal.com","city" : "Guilford","state" : "KS"}},{"_index" : "bank","_type" : "account","_id" : "70","_score" : 1.0,"_source" : {"account_number" : 70,"balance" : 38172,"firstname" : "Deidre","lastname" : "Thompson","age" : 33,"gender" : "F","address" : "685 School Lane","employer" : "Netplode","email" : "deidrethompson@netplode.com","city" : "Chestnut","state" : "GA"}},{"_index" : "bank","_type" : "account","_id" : "94","_score" : 1.0,"_source" : {"account_number" : 94,"balance" : 41060,"firstname" : "Brittany","lastname" : "Cabrera","age" : 30,"gender" : "F","address" : "183 Kathleen Court","employer" : "Mixers","email" : "brittanycabrera@mixers.com","city" : "Cornucopia","state" : "AZ"}},{"_index" : "bank","_type" : "account","_id" : "102","_score" : 1.0,"_source" : {"account_number" : 102,"balance" : 29712,"firstname" : "Dena","lastname" : "Olson","age" : 27,"gender" : "F","address" : "759 Newkirk Avenue","employer" : "Hinway","email" : "denaolson@hinway.com","city" : "Choctaw","state" : "NJ"}},{"_index" : "bank","_type" : "account","_id" : "107","_score" : 1.0,"_source" : {"account_number" : 107,"balance" : 48844,"firstname" : "Randi","lastname" : "Rich","age" : 28,"gender" : "M","address" : "694 Jefferson Street","employer" : "Netplax","email" : "randirich@netplax.com","city" : "Bellfountain","state" : "SC"}}]},"profile" : {"shards" : [{"id" : "[jW8PbSdhTOOpESX13DRBJQ][bank][0]","searches" : [{"query" : [{"type" : "IndexOrDocValuesQuery","description" : "age:[27 TO 35]","time_in_nanos" : 1905910,"breakdown" : {"set_min_competitive_score_count" : 0,"match_count" : 0,"shallow_advance_count" : 0,"set_min_competitive_score" : 0,"next_doc" : 93290,"match" : 0,"next_doc_count" : 437,"score_count" : 436,"compute_max_score_count" : 0,"compute_max_score" : 0,"advance" : 4119,"advance_count" : 2,"score" : 87412,"build_scorer_count" : 4,"create_weight" : 4607,"shallow_advance" : 0,"create_weight_count" : 1,"build_scorer" : 1716482}}],"rewrite_time" : 10427,"collector" : [{"name" : "SimpleTopScoreDocCollector","reason" : "search_top_hits","time_in_nanos" : 447004}]}],"aggregations" : [ ]}]}
}

日期范围

由于这里我们的例子中没有日期相关的数据,所以我们再导入一份含有日期数据的文件到es中。即logs.jsonl

同样通过命令行导入的方式:

 curl -H 'Content-Type: application/x-ndjson'  -s -XPOST ip:9200/_bulk --data-binary @logs.jsonl

因为这里导入的数据比较大,可能会报数据量过大的错误,此时需要修改es的内存大小,因为我们在前面使用安装es的时候,启动的时候,设置了es的java虚拟机内存使用大小为256m,所以这里我们需要将es集群关闭之后,重新启动,如下所示:

docker stop ES01
docker rm ES01
docker run -d --restart=always -e ES_JAVA_OPTS="-Xms1g -Xmx1g" -p 9200:9200 -p 9300:9300 -v /data/es/config/es1.yml:/usr/share/elasticsearch/config/elasticsearch.yml -v /data/es/node1/data:/usr/share/elasticsearch/data -v /data/es/node1/plugins:/usr/share/elasticsearch/plugins --name ES01 elasticsearch:7.9.3

我们将这句-e ="-Xms1g -Xmx1g"已经修改为1g了,然后启动,其他两个节点同样需要这样的操作。

最后导入数据即可。

从图中可知我们已经导入成功了,

这里我们开始学习range的查询日期用法:

在这里我们查询日志的

GET logstash-2015.05.19/_search
{"query": {"range": {"utc_time": {"gte" : "2015-05-19T04:29:38.264Z","lte" : "2015-05-30T04:29:38.264Z"}}}
}

返回结果:

{"took" : 4,"timed_out" : false,"_shards" : {"total" : 1,"successful" : 1,"skipped" : 0,"failed" : 0},"hits" : {"total" : {"value" : 4531,"relation" : "eq"},"max_score" : 1.0,"hits" : [{"_index" : "logstash-2015.05.19","_type" : "log","_id" : "B-kR0IcB2l-Q2jxdeb9E","_score" : 1.0,"_source" : {"@timestamp" : "2015-05-19T04:29:38.264Z","ip" : "33.36.12.33","extension" : "png","response" : "503","geo" : {"coordinates" : {"lat" : 33.45033444,"lon" : -88.59136861},"src" : "NG","dest" : "PK","srcdest" : "NG:PK"},"@tags" : ["success","security"],"utc_time" : "2015-05-19T04:29:38.264Z","referer" : "http://twitter.com/success/kent-rominger","agent" : "Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.50 Safari/534.24","clientip" : "33.36.12.33","bytes" : 0,"host" : "media-for-the-masses.theacademyofperformingartsandscience.org","request" : "/uploads/satoshi-furukawa.png","url" : "https://media-for-the-masses.theacademyofperformingartsandscience.org/uploads/satoshi-furukawa.png","@message" : "33.36.12.33 - - [2015-05-19T04:29:38.264Z] \"GET /uploads/satoshi-furukawa.png HTTP/1.1\" 503 0 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.50 Safari/534.24\"","spaces" : "this   is   a   thing    with lots of     spaces       wwwwoooooo","xss" : """""","headings" : ["

kimiya-yui

","http://www.slate.com/success/roman-romanenko"],"links" : ["christopher-ferguson@www.slate.com","http://www.slate.com/info/karol-bobko","www.twitter.com"],"relatedContent" : [{"url" : "http://www.laweekly.com/music/jim-white-amoeba-3-24-2412442","og:type" : "article","og:title" : "Jim White, Amoeba, 3/24","og:description" : "Jim White Amoeba, March 24 Jim White's songs depend on a good deal of atmosphere, and no doubt when he plays tonight (Tuesday) at the Silent Movie Theat...","og:url" : "http://www.laweekly.com/music/jim-white-amoeba-3-24-2412442","article:published_time" : "2008-03-25T06:37:10-07:00","article:modified_time" : "2014-11-27T10:15:27-08:00","article:section" : "Music","og:image" : "http://images1.laweekly.com/imager/jim-white-amoeba-3-24/u/original/2475386/img_6075.jpg","og:image:height" : "360","og:image:width" : "480","og:site_name" : "LA Weekly","twitter:title" : "Jim White, Amoeba, 3/24","twitter:description" : "Jim White Amoeba, March 24 Jim White's songs depend on a good deal of atmosphere, and no doubt when he plays tonight (Tuesday) at the Silent Movie Theat...","twitter:card" : "summary","twitter:image" : "http://images1.laweekly.com/imager/jim-white-amoeba-3-24/u/original/2475386/img_6075.jpg","twitter:site" : "@laweekly"},{"url" : "http://www.laweekly.com/restaurants/the-vegan-beer-festival-returns-this-may-with-a-swanky-new-location-5470861","og:type" : "article","og:title" : "The Vegan Beer Festival Returns This May With a Swanky New Location","og:description" : "Now in its 6th year, the Vegan Beer Festival will take place this May with more animal-free food and drinks at a much improved location.","og:url" : "http://www.laweekly.com/restaurants/the-vegan-beer-festival-returns-this-may-with-a-swanky-new-location-5470861","article:published_time" : "2015-04-03T06:55:00-07:00","article:modified_time" : "2015-04-03T06:55:04-07:00","article:section" : "Restaurants","og:image" : "http://images1.laweekly.com/imager/u/original/5470943/vegan-beer.jpg","og:image:height" : "798","og:image:width" : "1200","og:site_name" : "LA Weekly","twitter:title" : "The Vegan Beer Festival Returns This May With a Swanky New Location","twitter:description" : "Now in its 6th year, the Vegan Beer Festival will take place this May with more animal-free food and drinks at a much improved location.","twitter:card" : "summary","twitter:image" : "http://images1.laweekly.com/imager/u/original/5470943/vegan-beer.jpg","twitter:site" : "@laweekly"}],"machine" : {"os" : "osx","ram" : 18253611008},"@version" : "1"}},{"_index" : "logstash-2015.05.19","_type" : "log","_id" : "COkR0IcB2l-Q2jxdeb9E","_score" : 1.0,"_source" : {"@timestamp" : "2015-05-19T09:36:57.086Z","ip" : "116.116.183.113","extension" : "jpg","response" : "200","geo" : {"coordinates" : {"lat" : 31.36399028,"lon" : -109.8831286},"src" : "US","dest" : "SL","srcdest" : "US:SL"},"@tags" : ["success","info"],"utc_time" : "2015-05-19T09:36:57.086Z","referer" : "http://facebook.com/success/aleksei-gubarev","agent" : "Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.50 Safari/534.24","clientip" : "116.116.183.113","bytes" : 3715,"host" : "media-for-the-masses.theacademyofperformingartsandscience.org","request" : "/uploads/vance-brand.jpg","url" : "https://media-for-the-masses.theacademyofperformingartsandscience.org/uploads/vance-brand.jpg","@message" : "116.116.183.113 - - [2015-05-19T09:36:57.086Z] \"GET /uploads/vance-brand.jpg HTTP/1.1\" 200 3715 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.50 Safari/534.24\"","spaces" : "this is a thing with lots of spaces wwwwoooooo","xss" : """""","headings" : ["

frank-de-winne

","http://www.slate.com/success/grigori-nelyubov"],"links" : ["gennady-strekalov@www.slate.com","http://nytimes.com/login/gemini-6a","www.facebook.com"],"relatedContent" : [{"url" : "http://www.laweekly.com/news/mistakes-were-made-2397282","og:type" : "article","og:title" : "Mistakes Were Made","og:description" : "Dysfunctional business as usual at Pellicano trial When we last left the trial of Anthony Pellicano and four co-defendants, the proceedings had been thr...","og:url" : "http://www.laweekly.com/news/mistakes-were-made-2397282","article:published_time" : "2008-04-28T14:26:06-07:00","article:modified_time" : "2014-11-26T18:18:39-08:00","article:section" : "News","og:site_name" : "LA Weekly","twitter:title" : "Mistakes Were Made","twitter:description" : "Dysfunctional business as usual at Pellicano trial When we last left the trial of Anthony Pellicano and four co-defendants, the proceedings had been thr...","twitter:card" : "summary","twitter:site" : "@laweekly"}],"machine" : {"os" : "ios","ram" : 20401094656},"@version" : "1"}},{"_index" : "logstash-2015.05.19","_type" : "log","_id" : "CekR0IcB2l-Q2jxdeb9E","_score" : 1.0,"_source" : {"@timestamp" : "2015-05-19T06:19:55.080Z","ip" : "22.50.26.143","extension" : "jpg","response" : "200","geo" : {"coordinates" : {"lat" : 35.02397611,"lon" : -80.08127333},"src" : "IN","dest" : "IN","srcdest" : "IN:IN"},"@tags" : ["success","info"],"utc_time" : "2015-05-19T06:19:55.080Z","referer" : "http://twitter.com/success/aleksandr-laveykin","agent" : "Mozilla/5.0 (X11; Linux x86_64; rv:6.0a1) Gecko/20110421 Firefox/6.0a1","clientip" : "22.50.26.143","bytes" : 8852,"host" : "media-for-the-masses.theacademyofperformingartsandscience.org","request" : "/uploads/barbara-morgan.jpg","url" : "https://media-for-the-masses.theacademyofperformingartsandscience.org/uploads/barbara-morgan.jpg","@message" : "22.50.26.143 - - [2015-05-19T06:19:55.080Z] \"GET /uploads/barbara-morgan.jpg HTTP/1.1\" 200 8852 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:6.0a1) Gecko/20110421 Firefox/6.0a1\"","spaces" : "this is a thing with lots of spaces wwwwoooooo","xss" : """""","headings" : ["

james-p-bagian

","http://www.slate.com/success/judith-resnik"],"links" : ["liu-boming@www.slate.com","http://facebook.com/info/svetlana-savitskaya","www.www.slate.com"],"relatedContent" : [{"url" : "http://www.laweekly.com/music/the-whole-shootin-match-2404141","og:type" : "article","og:title" : "The whole shootin' match","og:description" : "So, I need to tell you about the show of the festival. My mind is blown, dude! I'm sitting in this bar, reading my Archies comics, because I am desperat...","og:url" : "http://www.laweekly.com/music/the-whole-shootin-match-2404141","article:published_time" : "2007-03-16T12:03:12-07:00","article:modified_time" : "2014-11-27T06:53:31-08:00","article:section" : "Music","og:site_name" : "LA Weekly","twitter:title" : "The whole shootin' match","twitter:description" : "So, I need to tell you about the show of the festival. My mind is blown, dude! I'm sitting in this bar, reading my Archies comics, because I am desperat...","twitter:card" : "summary","twitter:site" : "@laweekly"},{"url" : "http://www.laweekly.com/arts/weed-patch-2374272","og:type" : "article","og:title" : "Weed Patch","og:description" : "O'Briens pub on Main Street, in an area of Santa Monica I like to refer to as "Venice Adjacent" was host last night to a sweet band called Weed Patch, w...","og:url" : "http://www.laweekly.com/arts/weed-patch-2374272","article:published_time" : "2006-05-19T13:05:37-07:00","article:modified_time" : "2014-11-25T18:06:55-08:00","article:section" : "Arts","og:image" : "http://images1.laweekly.com/imager/weed-patch/u/original/2444840/706878889_m_1.jpg","og:image:height" : "151","og:image:width" : "200","og:site_name" : "LA Weekly","twitter:title" : "Weed Patch","twitter:description" : "O'Briens pub on Main Street, in an area of Santa Monica I like to refer to as "Venice Adjacent" was host last night to a sweet band called Weed Patch, w...","twitter:card" : "summary","twitter:image" : "http://images1.laweekly.com/imager/weed-patch/u/original/2444840/706878889_m_1.jpg","twitter:site" : "@laweekly"},{"url" : "http://www.laweekly.com/music/ernie-krivda-at-catalina-tonight-2410071","og:type" : "article","og:title" : "Ernie Krivda at Catalina Tonight","og:description" : "By Brick Wahl Ya gotta love my buddy Dean, he's a nut. And inspired, brilliant, funny, knows everything and everybody Sicilian motormouth of a musician ...","og:url" : "http://www.laweekly.com/music/ernie-krivda-at-catalina-tonight-2410071","article:published_time" : "2007-11-14T13:35:04-08:00","article:modified_time" : "2014-11-27T07:25:01-08:00","article:section" : "Music","og:site_name" : "LA Weekly","twitter:title" : "Ernie Krivda at Catalina Tonight","twitter:description" : "By Brick Wahl Ya gotta love my buddy Dean, he's a nut. And inspired, brilliant, funny, knows everything and everybody Sicilian motormouth of a musician ...","twitter:card" : "summary","twitter:site" : "@laweekly"},{"url" : "http://www.laweekly.com/music/prince-added-to-saturdays-coachella-line-up-2411813","og:type" : "article","og:title" : "Prince added to Saturday's Coachella Line-Up","og:description" : "This just in: Prince has joined this year's line-up for the ninth COACHELLA VALLEY MUSIC & ARTS FESTIVAL at the Empire Polo Field in Indio, CA (Friday, ...","og:url" : "http://www.laweekly.com/music/prince-added-to-saturdays-coachella-line-up-2411813","article:published_time" : "2008-04-09T11:25:30-07:00","article:modified_time" : "2014-11-27T10:27:44-08:00","article:section" : "Music","og:site_name" : "LA Weekly","twitter:title" : "Prince added to Saturday's Coachella Line-Up","twitter:description" : "This just in: Prince has joined this year's line-up for the ninth COACHELLA VALLEY MUSIC & ARTS FESTIVAL at the Empire Polo Field in Indio, CA (Friday, ...","twitter:card" : "summary","twitter:site" : "@laweekly"},{"url" : "http://www.laweekly.com/news/california-supreme-court-legalizes-gay-marriage-2391634","og:type" : "article","og:title" : "California Supreme Court Legalizes Gay Marriage!","og:description" : "Citing the 60-year-old landmark case Perez v. Sharp, which struck down California's ban on interracial marriage, the California Supreme Court ruled toda...","og:url" : "http://www.laweekly.com/news/california-supreme-court-legalizes-gay-marriage-2391634","article:published_time" : "2008-05-15T10:18:54-07:00","article:modified_time" : "2014-11-26T16:34:12-08:00","article:section" : "News","og:site_name" : "LA Weekly","twitter:title" : "California Supreme Court Legalizes Gay Marriage!","twitter:description" : "Citing the 60-year-old landmark case Perez v. Sharp, which struck down California's ban on interracial marriage, the California Supreme Court ruled toda...","twitter:card" : "summary","twitter:site" : "@laweekly"}],"machine" : {"os" : "ios","ram" : 10737418240},"@version" : "1"}},{"_index" : "logstash-2015.05.19","_type" : "log","_id" : "CukR0IcB2l-Q2jxdeb9E","_score" : 1.0,"_source" : {"@timestamp" : "2015-05-19T06:49:46.347Z","ip" : "192.109.235.88","extension" : "jpg","response" : "200","geo" : {"coordinates" : {"lat" : 43.20925,"lon" : -112.3495861},"src" : "CN","dest" : "CN","srcdest" : "CN:CN"},"@tags" : ["success","info"],"utc_time" : "2015-05-19T06:49:46.347Z","referer" : "http://www.slate.com/error/donald-deke-slayton","agent" : "Mozilla/5.0 (X11; Linux x86_64; rv:6.0a1) Gecko/20110421 Firefox/6.0a1","clientip" : "192.109.235.88","bytes" : 5450,"host" : "media-for-the-masses.theacademyofperformingartsandscience.org","request" : "/uploads/aleksandr-laveykin.jpg","url" : "https://media-for-the-masses.theacademyofperformingartsandscience.org/uploads/aleksandr-laveykin.jpg","@message" : "192.109.235.88 - - [2015-05-19T06:49:46.347Z] \"GET /uploads/aleksandr-laveykin.jpg HTTP/1.1\" 200 5450 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:6.0a1) Gecko/20110421 Firefox/6.0a1\"","spaces" : "this is a thing with lots of spaces wwwwoooooo","xss" : """""","headings" : ["

zhang-xiaoguang

","http://facebook.com/success/maurizio-cheli"],"links" : ["michael-s-hopkins@www.slate.com","http://facebook.com/info/bruce-melnick","www.www.slate.com"],"relatedContent" : [{"url" : "http://www.laweekly.com/music/eddie-vedder-solo-at-the-wiltern-4-13-2408256","og:type" : "article","og:title" : "Eddie Vedder, Solo at the Wiltern, 4/13","og:description" : "Photos by Timothy Norris. Text by Ryan Colditz Eddie Vedder is taking it solo. Pearl Jam has broken up and all that is left is Eddie Vedder. Just kiddin...","og:url" : "http://www.laweekly.com/music/eddie-vedder-solo-at-the-wiltern-4-13-2408256","article:published_time" : "2008-04-15T10:30:54-07:00","article:modified_time" : "2014-11-27T09:43:47-08:00","article:section" : "Music","og:image" : "http://images1.laweekly.com/imager/eddie-vedder-solo-at-the-wiltern-4-13/u/original/2470767/eddieveddertn005.jpg","og:image:height" : "723","og:image:width" : "480","og:site_name" : "LA Weekly","twitter:title" : "Eddie Vedder, Solo at the Wiltern, 4/13","twitter:description" : "Photos by Timothy Norris. Text by Ryan Colditz Eddie Vedder is taking it solo. Pearl Jam has broken up and all that is left is Eddie Vedder. Just kiddin...","twitter:card" : "summary","twitter:image" : "http://images1.laweekly.com/imager/eddie-vedder-solo-at-the-wiltern-4-13/u/original/2470767/eddieveddertn005.jpg","twitter:site" : "@laweekly"},{"url" : "http://www.laweekly.com/arts/the-verdict-on-writers-all-bloody-nuts-phew-2371979","og:type" : "article","og:title" : "The Verdict on Writers: All Bloody Nuts (Phew)","og:description" : "LA Weekly is the definitive source of information for news, music, movies, restaurants, reviews, and events in Los Angeles.","og:url" : "http://www.laweekly.com/arts/the-verdict-on-writers-all-bloody-nuts-phew-2371979","article:published_time" : "2006-11-28T13:11:40-08:00","article:modified_time" : "2014-11-25T18:45:15-08:00","article:section" : "Arts","og:site_name" : "LA Weekly","twitter:title" : "The Verdict on Writers: All Bloody Nuts (Phew)","twitter:description" : "LA Weekly is the definitive source of information for news, music, movies, restaurants, reviews, and events in Los Angeles.","twitter:card" : "summary","twitter:site" : "@laweekly"},{"url" : "http://www.laweekly.com/news/san-fernando-valley-bloodbath-2391204","og:type" : "article","og:title" : "San Fernando Valley Bloodbath","og:description" : "Mass Murder in Winnetka takes life of popular SWAT officer, a former Villaraigosa bodyguard An LAPD SWAT officer was shot to death and another was wound...","og:url" : "http://www.laweekly.com/news/san-fernando-valley-bloodbath-2391204","article:published_time" : "2008-02-07T18:32:44-08:00","article:modified_time" : "2014-11-26T17:11:22-08:00","article:section" : "News","og:image" : "http://images1.laweekly.com/imager/san-fernando-valley-bloodbath/u/original/2421393/img_1591.jpg","og:image:height" : "360","og:image:width" : "480","og:site_name" : "LA Weekly","twitter:title" : "San Fernando Valley Bloodbath","twitter:description" : "Mass Murder in Winnetka takes life of popular SWAT officer, a former Villaraigosa bodyguard An LAPD SWAT officer was shot to death and another was wound...","twitter:card" : "summary","twitter:image" : "http://images1.laweekly.com/imager/san-fernando-valley-bloodbath/u/original/2421393/img_1591.jpg","twitter:site" : "@laweekly"}],"machine" : {"os" : "win 8","ram" : 10737418240},"@version" : "1"}},{"_index" : "logstash-2015.05.19","_type" : "log","_id" : "C-kR0IcB2l-Q2jxdeb9E","_score" : 1.0,"_source" : {"@timestamp" : "2015-05-19T11:48:41.963Z","ip" : "136.104.202.199","extension" : "jpg","response" : "200","geo" : {"coordinates" : {"lat" : 47.32815583,"lon" : -122.2265092},"src" : "US","dest" : "IN","srcdest" : "US:IN"},"@tags" : ["success","info"],"utc_time" : "2015-05-19T11:48:41.963Z","referer" : "http://facebook.com/success/dominic-gorie","agent" : "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)","clientip" : "136.104.202.199","bytes" : 6410,"host" : "media-for-the-masses.theacademyofperformingartsandscience.org","request" : "/uploads/carlos-i-noriega.jpg","url" : "https://media-for-the-masses.theacademyofperformingartsandscience.org/uploads/carlos-i-noriega.jpg","@message" : "136.104.202.199 - - [2015-05-19T11:48:41.963Z] \"GET /uploads/carlos-i-noriega.jpg HTTP/1.1\" 200 6410 \"-\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)\"","spaces" : "this is a thing with lots of spaces wwwwoooooo","xss" : """""","headings" : ["

garrett-reisman

","http://www.slate.com/success/yuri-glazkov"],"links" : ["dick-scobee@twitter.com","http://twitter.com/info/fernando-caldeiro","www.facebook.com"],"relatedContent" : [{"url" : "http://www.laweekly.com/music/marfa-film-fest-dispatch-world-premiere-of-heath-ledger-directed-music-video-2401553","og:type" : "article","og:title" : "Marfa Film Fest Dispatch: World Premiere of Heath Ledger-directed music video","og:description" : "(photo by Randall Roberts) Today's a travel day for me, having just experienced the best little festival I've ever attended, the first annual Marfa Film...","og:url" : "http://www.laweekly.com/music/marfa-film-fest-dispatch-world-premiere-of-heath-ledger-directed-music-video-2401553","article:published_time" : "2008-05-05T10:28:48-07:00","article:modified_time" : "2014-11-27T07:00:15-08:00","article:section" : "Music","og:image" : "http://images1.laweekly.com/imager/marfa-film-fest-dispatch-world-premiere-o/u/original/2463872/img_2162.jpg","og:image:height" : "768","og:image:width" : "1024","og:site_name" : "LA Weekly","twitter:title" : "Marfa Film Fest Dispatch: World Premiere of Heath Ledger-directed music video","twitter:description" : "(photo by Randall Roberts) Today's a travel day for me, having just experienced the best little festival I've ever attended, the first annual Marfa Film...","twitter:card" : "summary","twitter:image" : "http://images1.laweekly.com/imager/marfa-film-fest-dispatch-world-premiere-o/u/original/2463872/img_2162.jpg","twitter:site" : "@laweekly"}],"machine" : {"os" : "win 8","ram" : 6442450944},"@version" : "1"}},{"_index" : "logstash-2015.05.19","_type" : "log","_id" : "DOkR0IcB2l-Q2jxdeb9E","_score" : 1.0,"_source" : {"@timestamp" : "2015-05-19T12:21:09.414Z","ip" : "187.54.191.70","extension" : "jpg","response" : "200","geo" : {"coordinates" : {"lat" : 34.91496778,"lon" : -88.60348361},"src" : "IN","dest" : "IR","srcdest" : "IN:IR"},"@tags" : ["success","info"],"utc_time" : "2015-05-19T12:21:09.414Z","referer" : "http://twitter.com/success/james-dutton","agent" : "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)","clientip" : "187.54.191.70","bytes" : 3132,"host" : "media-for-the-masses.theacademyofperformingartsandscience.org","request" : "/uploads/sandra-magnus.jpg","url" : "https://media-for-the-masses.theacademyofperformingartsandscience.org/uploads/sandra-magnus.jpg","@message" : "187.54.191.70 - - [2015-05-19T12:21:09.414Z] \"GET /uploads/sandra-magnus.jpg HTTP/1.1\" 200 3132 \"-\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)\"","spaces" : "this is a thing with lots of spaces wwwwoooooo","xss" : """""","headings" : ["

frank-de-winne

","http://facebook.com/success/michael-coats"],"links" : ["vyacheslav-zudov@twitter.com","http://www.slate.com/info/roman-romanenko","www.www.slate.com"],"relatedContent" : [{"url" : "http://www.laweekly.com/arts/khaan-the-greatest-syllable-ever-told-2370737","og:type" : "article","og:title" : "KHAAN! The Greatest Syllable Ever Told","og:description" : "It's funny the first time Shatner yells it out. It is, after all, the named-turned-curse heard throughout a galaxy. That one word - that one syllable - ...","og:url" : "http://www.laweekly.com/arts/khaan-the-greatest-syllable-ever-told-2370737","article:published_time" : "2008-05-29T13:19:29-07:00","article:modified_time" : "2014-12-05T00:59:06-08:00","article:section" : "Arts","og:image" : "http://images1.laweekly.com/imager/khaan-the-greatest-syllable-ever-told/u/original/2433500/khan_c1.jpg","og:image:height" : "288","og:image:width" : "432","og:site_name" : "LA Weekly","twitter:title" : "KHAAN! The Greatest Syllable Ever Told","twitter:description" : "It's funny the first time Shatner yells it out. It is, after all, the named-turned-curse heard throughout a galaxy. That one word - that one syllable - ...","twitter:card" : "summary","twitter:image" : "http://images1.laweekly.com/imager/khaan-the-greatest-syllable-ever-told/u/original/2433500/khan_c1.jpg","twitter:site" : "@laweekly"},{"url" : "http://www.laweekly.com/music/mick-jones-carbon-silicon-troubadour-12-3-2406690","og:type" : "article","og:title" : "Mick Jones' Carbon/Silicon, Troubadour, 12/3","og:description" : "How long has it been since Mick Jones played L.A.? He said on stage he hadn't been here in 12 years, which would put us back into Big Audio Dynamite ter...","og:url" : "http://www.laweekly.com/music/mick-jones-carbon-silicon-troubadour-12-3-2406690","article:published_time" : "2007-12-04T11:16:05-08:00","article:modified_time" : "2014-11-27T08:46:09-08:00","article:section" : "Music","og:image" : "http://images1.laweekly.com/imager/mick-jones-carbon-silicon-troubadour-12/u/original/2469021/img_1768.jpg","og:image:height" : "640","og:image:width" : "480","og:site_name" : "LA Weekly","twitter:title" : "Mick Jones' Carbon/Silicon, Troubadour, 12/3","twitter:description" : "How long has it been since Mick Jones played L.A.? He said on stage he hadn't been here in 12 years, which would put us back into Big Audio Dynamite ter...","twitter:card" : "summary","twitter:image" : "http://images1.laweekly.com/imager/mick-jones-carbon-silicon-troubadour-12/u/original/2469021/img_1768.jpg","twitter:site" : "@laweekly"}],"machine" : {"os" : "win 8","ram" : 11811160064},"@version" : "1"}},{"_index" : "logstash-2015.05.19","_type" : "log","_id" : "DekR0IcB2l-Q2jxdeb9E","_score" : 1.0,"_source" : {"@timestamp" : "2015-05-19T12:28:36.273Z","ip" : "186.123.242.20","extension" : "css","response" : "200","geo" : {"coordinates" : {"lat" : 35.949925,"lon" : -96.77305278},"src" : "IT","dest" : "TN","srcdest" : "IT:TN"},"@tags" : ["success","info"],"utc_time" : "2015-05-19T12:28:36.273Z","referer" : "http://www.slate.com/success/john-david-f-bartoe","agent" : "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)","clientip" : "186.123.242.20","bytes" : 5052,"host" : "cdn.theacademyofperformingartsandscience.org","request" : "/styles/ads.css","url" : "https://cdn.theacademyofperformingartsandscience.org/styles/ads.css","@message" : "186.123.242.20 - - [2015-05-19T12:28:36.273Z] \"GET /styles/ads.css HTTP/1.1\" 200 5052 \"-\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)\"","spaces" : "this is a thing with lots of spaces wwwwoooooo","xss" : """""","headings" : ["

jon-mcbride

","http://twitter.com/success/william-pailes"],"links" : ["sergei-ryazanski@www.slate.com","http://twitter.com/info/donald-thomas","www.twitter.com"],"relatedContent" : [{"url" : "http://www.laweekly.com/arts/bald-and-er-bald-2373338","og:type" : "article","og:title" : "Bald and Er, Bald","og:description" : "Are we supposed to comment on this? I'm speechless. Kudos to The Post for avoiding the now cliched, "Britney Shears." And calling her "a buzz kill" was ...","og:url" : "http://www.laweekly.com/arts/bald-and-er-bald-2373338","article:published_time" : "2007-02-21T17:02:02-08:00","article:modified_time" : "2014-11-25T20:18:42-08:00","article:section" : "Arts","og:image" : "http://IMAGES1.laweekly.com/imager/bald-and-er-bald/u/original/2441881/2007_02_britneybald.jpg","og:image:height" : "330","og:image:width" : "517","og:site_name" : "LA Weekly","twitter:title" : "Bald and Er, Bald","twitter:description" : "Are we supposed to comment on this? I'm speechless. Kudos to The Post for avoiding the now cliched, "Britney Shears." And calling her "a buzz kill" was ...","twitter:card" : "summary","twitter:image" : "http://IMAGES1.laweekly.com/imager/bald-and-er-bald/u/original/2441881/2007_02_britneybald.jpg","twitter:site" : "@laweekly"}],"machine" : {"os" : "win 8","ram" : 11811160064},"@version" : "1"}},{"_index" : "logstash-2015.05.19","_type" : "log","_id" : "DukR0IcB2l-Q2jxdeb9E","_score" : 1.0,"_source" : {"@timestamp" : "2015-05-19T12:41:54.861Z","ip" : "162.97.220.195","extension" : "jpg","response" : "200","geo" : {"coordinates" : {"lat" : 34.39833889,"lon" : -96.14805972},"src" : "BI","dest" : "IN","srcdest" : "BI:IN"},"@tags" : ["success","info"],"utc_time" : "2015-05-19T12:41:54.861Z","referer" : "http://twitter.com/success/garrett-reisman","agent" : "Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.50 Safari/534.24","clientip" : "162.97.220.195","bytes" : 4797,"host" : "media-for-the-masses.theacademyofperformingartsandscience.org","request" : "/uploads/sidney-gutierrez.jpg","url" : "https://media-for-the-masses.theacademyofperformingartsandscience.org/uploads/sidney-gutierrez.jpg","@message" : "162.97.220.195 - - [2015-05-19T12:41:54.861Z] \"GET /uploads/sidney-gutierrez.jpg HTTP/1.1\" 200 4797 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.50 Safari/534.24\"","spaces" : "this is a thing with lots of spaces wwwwoooooo","xss" : """""","headings" : ["

donald-thomas

","http://facebook.com/warning/anton-shkaplerov"],"links" : ["james-wetherbee@twitter.com","http://twitter.com/security/william-frederick-fisher","www.facebook.com"],"relatedContent" : [{"url" : "http://www.laweekly.com/arts/takin-it-higher-2372017","og:type" : "article","og:title" : "Takin' it Higher","og:description" : "So the DVF party on Sat was a fun lil fete (see Steffie's post below) but heck, I haven't even told ya about my Grammy week craziness…. Well you ...","og:url" : "http://www.laweekly.com/arts/takin-it-higher-2372017","article:published_time" : "2006-02-13T19:02:50-08:00","article:modified_time" : "2014-11-25T18:10:27-08:00","article:section" : "Arts","og:image" : "http://images1.laweekly.com/imager/takin-it-higher/u/original/2437749/img_0962.jpg","og:image:height" : "225","og:image:width" : "300","og:site_name" : "LA Weekly","twitter:title" : "Takin' it Higher","twitter:description" : "So the DVF party on Sat was a fun lil fete (see Steffie's post below) but heck, I haven't even told ya about my Grammy week craziness…. Well you ...","twitter:card" : "summary","twitter:image" : "http://images1.laweekly.com/imager/takin-it-higher/u/original/2437749/img_0962.jpg","twitter:site" : "@laweekly"},{"url" : "http://www.laweekly.com/music/pause-and-rewind-the-show-2408308","og:type" : "article","og:title" : "Pause and Rewind: The Show","og:description" : "I remember watching The Show for the first and only time when I was a freshman in high school. I wasn't very impressed. This was 1995, Biggie was alive,...","og:url" : "http://www.laweekly.com/music/pause-and-rewind-the-show-2408308","article:published_time" : "2008-01-25T00:31:38-08:00","article:modified_time" : "2014-11-27T08:19:41-08:00","article:section" : "Music","og:site_name" : "LA Weekly","twitter:title" : "Pause and Rewind: The Show","twitter:description" : "I remember watching The Show for the first and only time when I was a freshman in high school. I wasn't very impressed. This was 1995, Biggie was alive,...","twitter:card" : "summary","twitter:site" : "@laweekly"}],"machine" : {"os" : "ios","ram" : 21474836480},"@version" : "1"}},{"_index" : "logstash-2015.05.19","_type" : "log","_id" : "D-kR0IcB2l-Q2jxdeb9E","_score" : 1.0,"_source" : {"@timestamp" : "2015-05-19T07:36:17.353Z","ip" : "169.232.223.103","extension" : "gif","response" : "200","geo" : {"coordinates" : {"lat" : 36.78833556,"lon" : -78.50155361},"src" : "BR","dest" : "IN","srcdest" : "BR:IN"},"@tags" : ["success","security"],"utc_time" : "2015-05-19T07:36:17.353Z","referer" : "http://www.slate.com/error/sidney-gutierrez","agent" : "Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.50 Safari/534.24","clientip" : "169.232.223.103","bytes" : 847,"host" : "motion-media.theacademyofperformingartsandscience.org","request" : "/canhaz/carl-walz.gif","url" : "https://motion-media.theacademyofperformingartsandscience.org/canhaz/carl-walz.gif","@message" : "169.232.223.103 - - [2015-05-19T07:36:17.353Z] \"GET /canhaz/carl-walz.gif HTTP/1.1\" 200 847 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.50 Safari/534.24\"","spaces" : "this is a thing with lots of spaces wwwwoooooo","xss" : """""","headings" : ["

lee-morin

","http://www.slate.com/success/jing-haipeng"],"links" : ["michael-baker@www.slate.com","http://www.slate.com/info/scott-kelly","www.www.slate.com"],"relatedContent" : [{"url" : "http://www.laweekly.com/arts/touched-by-a-tranny-2374416","og:type" : "article","og:title" : "Touched By A Tranny","og:description" : "We've been calling plus-size punny (lad)y Jackie Beat our "favorite drag queen" for years (and that's saying something... we know a lot of crossdressers...","og:url" : "http://www.laweekly.com/arts/touched-by-a-tranny-2374416","article:published_time" : "2008-05-15T15:10:44-07:00","article:modified_time" : "2014-11-25T18:13:13-08:00","article:section" : "Arts","og:site_name" : "LA Weekly","twitter:title" : "Touched By A Tranny","twitter:description" : "We've been calling plus-size punny (lad)y Jackie Beat our "favorite drag queen" for years (and that's saying something... we know a lot of crossdressers...","twitter:card" : "summary","twitter:site" : "@laweekly"},{"url" : "http://www.laweekly.com/arts/bravo-bebe-2371443","og:type" : "article","og:title" : "Bravo Bebe!","og:description" : "LA Weekly is the definitive source of information for news, music, movies, restaurants, reviews, and events in Los Angeles.","og:url" : "http://www.laweekly.com/arts/bravo-bebe-2371443","article:published_time" : "2006-10-19T12:10:54-07:00","article:modified_time" : "2014-11-25T17:43:53-08:00","article:section" : "Arts","og:site_name" : "LA Weekly","twitter:title" : "Bravo Bebe!","twitter:description" : "LA Weekly is the definitive source of information for news, music, movies, restaurants, reviews, and events in Los Angeles.","twitter:card" : "summary","twitter:site" : "@laweekly"}],"machine" : {"os" : "osx","ram" : 18253611008},"@version" : "1"}},{"_index" : "logstash-2015.05.19","_type" : "log","_id" : "EOkR0IcB2l-Q2jxdeb9E","_score" : 1.0,"_source" : {"@timestamp" : "2015-05-19T09:08:14.761Z","ip" : "152.36.85.152","extension" : "jpg","response" : "200","geo" : {"coordinates" : {"lat" : 42.38214444,"lon" : -77.6821125},"src" : "IR","dest" : "MX","srcdest" : "IR:MX"},"@tags" : ["success","info"],"utc_time" : "2015-05-19T09:08:14.761Z","referer" : "http://twitter.com/success/richard-linnehan","agent" : "Mozilla/5.0 (X11; Linux x86_64; rv:6.0a1) Gecko/20110421 Firefox/6.0a1","clientip" : "152.36.85.152","bytes" : 6895,"host" : "media-for-the-masses.theacademyofperformingartsandscience.org","request" : "/uploads/kenneth-ham.jpg","url" : "https://media-for-the-masses.theacademyofperformingartsandscience.org/uploads/kenneth-ham.jpg","@message" : "152.36.85.152 - - [2015-05-19T09:08:14.761Z] \"GET /uploads/kenneth-ham.jpg HTTP/1.1\" 200 6895 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:6.0a1) Gecko/20110421 Firefox/6.0a1\"","spaces" : "this is a thing with lots of spaces wwwwoooooo","xss" : """""","headings" : ["

john-casper

","http://www.slate.com/success/ronald-sega"],"links" : ["georgi-shonin@twitter.com","http://facebook.com/security/jean-fran-ois-clervoy","www.www.slate.com"],"relatedContent" : [{"url" : "http://www.laweekly.com/music/mex-emo-news-coverage-explodes-2401636","og:type" : "article","og:title" : "Mex-Emo News Coverage Explodes","og:description" : "L.A. Weekly blogger and former staff writer Daniel Hernandez uncovered a wild story about attacks on "emo" youths in Mexico City on LA Daily and his own...","og:url" : "http://www.laweekly.com/music/mex-emo-news-coverage-explodes-2401636","article:published_time" : "2008-03-28T11:10:05-07:00","article:modified_time" : "2014-11-27T07:00:43-08:00","article:section" : "Music","og:site_name" : "LA Weekly","twitter:title" : "Mex-Emo News Coverage Explodes","twitter:description" : "L.A. Weekly blogger and former staff writer Daniel Hernandez uncovered a wild story about attacks on "emo" youths in Mexico City on LA Daily and his own...","twitter:card" : "summary","twitter:site" : "@laweekly"},{"url" : "http://www.laweekly.com/arts/the-year-of-the-dog-2371873","og:type" : "article","og:title" : "The Year of the Dog","og:description" : "LA Weekly is the definitive source of information for news, music, movies, restaurants, reviews, and events in Los Angeles.","og:url" : "http://www.laweekly.com/arts/the-year-of-the-dog-2371873","article:published_time" : "2006-05-11T16:05:28-07:00","article:modified_time" : "2014-11-25T18:42:53-08:00","article:section" : "Arts","og:site_name" : "LA Weekly","twitter:title" : "The Year of the Dog","twitter:description" : "LA Weekly is the definitive source of information for news, music, movies, restaurants, reviews, and events in Los Angeles.","twitter:card" : "summary","twitter:site" : "@laweekly"},{"url" : "http://www.laweekly.com/music/raiders-of-the-lost-art-2405123","og:type" : "article","og:title" : "Raiders of the Lost Art","og:description" : "Sometime after 50 arrived, the art of the narrative wandered into a blizzard of coke raps, artificial hood mythologizing and pandering simplicity. Compl...","og:url" : "http://www.laweekly.com/music/raiders-of-the-lost-art-2405123","article:published_time" : "2007-11-29T08:09:55-08:00","article:modified_time" : "2014-11-27T07:28:26-08:00","article:section" : "Music","og:image" : "http://IMAGES1.laweekly.com/imager/raiders-of-the-lost-art/u/original/2467283/b0000013gt01_sclzzzzzzz_.jpg","og:image:height" : "455","og:image:width" : "455","og:site_name" : "LA Weekly","twitter:title" : "Raiders of the Lost Art","twitter:description" : "Sometime after 50 arrived, the art of the narrative wandered into a blizzard of coke raps, artificial hood mythologizing and pandering simplicity. Compl...","twitter:card" : "summary","twitter:image" : "http://IMAGES1.laweekly.com/imager/raiders-of-the-lost-art/u/original/2467283/b0000013gt01_sclzzzzzzz_.jpg","twitter:site" : "@laweekly"}],"machine" : {"os" : "ios","ram" : 21474836480},"@version" : "1"}}]} }

关于我们

最火推荐

小编推荐

联系我们


版权声明:本站内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 88@qq.com 举报,一经查实,本站将立刻删除。备案号:桂ICP备2021009421号
Powered By Z-BlogPHP.
复制成功
微信号:
我知道了