Skip to content

Instantly share code, notes, and snippets.

View Akintola's full-sized avatar
🏠
Working from home

Franck ADJIBAO Akintola

🏠
Working from home
View GitHub Profile
@Akintola
Akintola / logstash.conf
Last active October 8, 2021 01:04
First Logstash config test file
input {
file {
path => "/path/to/your/log/file"
start_position => "beginning"
}
}
filter {
grok {
match => {"message" => "%{COMBINEDAPACHELOG}"}
curl -H "Content-Type: application/json" "127.0.0.1:9200/mangas/_doc/1?pretty" -d '
{
"id": 1,
"title": "One piece",
"author": "Eiichiro Oda",
"url": "https://myanimelist.net/manga/13/One_Piece"
}'
curl -XPOST -H "Content-Type: application/json" "127.0.0.1:9200/mangas/_doc/1/_update?pretty" -d '
{
"doc": {
"url": "https://myanimelist.net/manga/14/One_Piece"
}
}'
curl -XPOST -H "Content-Type: application/json" "127.0.0.1:9200/_bulk?pretty" -d '
{ "create" : { "_index" : "mangas", "_id" : "1" } }
{ "id": "1", "title" : "One Piece", "year":1997 , "genre":["Action", "Adventure", "Comedy"] }
{ "create" : { "_index" : "mangas", "_id" : "2" } }
{ "id": "2", "title" : "Slam Dunk", "year":1990 , "genre":["Comedy", "Drama", "School"] }
{ "create" : { "_index" : "mangas", "_id" : "3" } }
{ "id": "3", "title" : "20th Century Boys", "year":1999 , "genre":["Mystery", "Drama", "Historical"] }
{ "create" : { "_index" : "mangas", "_id" : "4" } }
{ "id": "4", "title" : "Kaguya-sama: Love is War", "year":2015 , "genre":["Comedy", "Romance", "School"] }
curl -H "Content-Type: application/json" -XGET "127.0.0.1:9200/mangas/_search?pretty" -d '
{
"sort" : [
{
"year" : "desc"
}
]
}'
curl -XPUT -H "Content-Type: application/json" "127.0.0.1:9200/mangas_reindexed?pretty" -d '
{
"mappings": {
"properties": {
"title": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
curl -XGET -H "Content-Type: application/json" "127.0.0.1:9200/mangas/_search?pretty" -d '
{
"query": {
"match": {
"title": "Journey"
}
}
}'
curl -XGET -H "Content-Type: application/json" "127.0.0.1:9200/mangas/_search?pretty" -d '
{
"query": {
"term": {
"year": 1990
}
}
}'
curl -XGET -H "Content-Type: application/json" "127.0.0.1:9200/mangas/_search?pretty" -d '
{
"query": {
"term": {
"title": "One Piece"
}
}
}'
curl -XGET -H "Content-Type: application/json" "127.0.0.1:9200/mangas_reindexed/_search?pretty" -d '
{
"query": {
"term": {
"title.raw": "One Piece"
}
}
}'