-
logstash運(yùn)行
查看全部 -
filter配置Grok是例
查看全部 -
Filter配置
查看全部 -
Input和Output配置
查看全部 -
logstash入門
查看全部 -
Packetbeat運(yùn)行
查看全部 -
Packetbeat解析http協(xié)議
查看全部 -
Packetbeat簡(jiǎn)介
查看全部 -
head -n 2 ~/Downloads/nginx_logs/nginx.log| .filebeat命令
查看全部 -
filebeat配置
查看全部 -
filebeat解壓后文件目錄
查看全部 -
Filebeat收集nginx log
查看全部 -
Filebeat Module簡(jiǎn)介
查看全部 -
Filebeat+Elasticsearch Ingest Node
查看全部 -
Filebeat Output配置簡(jiǎn)介
查看全部 -
filebeat Input配置簡(jiǎn)介
查看全部 -
Filebeat簡(jiǎn)介
查看全部 -
Beats簡(jiǎn)介
查看全部 -
Elasticsearch Query
查看全部 -
Elasticsearch CRUD
查看全部 -
Elasticsearch常用術(shù)語(yǔ)
查看全部 -
Kibana配置說(shuō)明
查看全部 -
Kibana安裝與運(yùn)行
查看全部 -
本地啟動(dòng)集群的方式
查看全部 -
Elasticsearch配置說(shuō)明
查看全部 -
GET /accounts/_search
{
? "query": {"match_all": {}}
}
GET /accounts/_search?q=Doe
GET /accounts/_search?q=name:Lily
GET /accounts/_search
{
? "query":{
? ? "match":{
? ? ? "name":"Lily"??
? ? }
? }
}
GET /accounts/_search
{
? "query": {
? ? "bool": {
? ? ? "must": [
? ? ? ? {
? ? ? ? ? "match": {
? ? ? ? ? ? "name": "Lily"
? ? ? ? ? }
? ? ? ? }
? ? ? ],
? ? ? "should": [
? ? ? ? {
? ? ? ? ? "match": {
? ? ? ? ? ? "lastname": "Doe"
? ? ? ? ? }
? ? ? ? }
? ? ? ],
? ? ? "must_not": [
? ? ? ? {
? ? ? ? ? "match": {
? ? ? ? ? ? "job_desscription": 111
? ? ? ? ? }
? ? ? ? }
? ? ? ]
? ? }
? }
}
查看全部 -
新版語(yǔ)句:
POST /accounts/_doc/1
{
? "name":"John",
? "lastname":"Doe",
? "job_desscription":"Systems administrator and Linux specialit"
}
GET /accounts/_doc/1
POST /accounts/_update/1
{?
? "doc":{
? ? "name":"Tom"
? }
}
DELETE /accounts/_doc/1
查看全部 -
head -n 2 /Library/software/nginx/logs/access.log | ./filebeat -e -c nginx.yml
nginx.yml 文件內(nèi)容
filebeat.prospectors:
- input_type: stdin
output.console:
pretty: true
查看全部
舉報(bào)