Skip to content

Instantly share code, notes, and snippets.

View tuncerbasdag's full-sized avatar

Tuncer Başdağ tuncerbasdag

View GitHub Profile
@Nitish18
Nitish18 / Python_elasticsearch_scrollAPI
Created September 23, 2017 19:04
Python script to test scroll api of elasticsearch
from elasticsearch import Elasticsearch as ES
import json
# Elastic Setup config
host = "localhost"
port = 9200
index = "your_index"
doc_type = "your_doc_type"
es = ES(host=host, port=port, timeout=100)
@rebornix
rebornix / logstash.conf
Created January 15, 2016 05:58
Logstash configuration for IIS log.
input {
file {
type => "IISLog"
path => "C:/inetpub/logs/LogFiles/W3SVC*/*.log"
start_position => "beginning"
}
}
filter {