Skip to content

Instantly share code, notes, and snippets.

View mathieue's full-sized avatar

Mathieu Elie mathieue

View GitHub Profile
output.file:
path: "chemin/vers/le/dossier/de/sortie"
filename: winlogbeat
rotate_every_kb: 10000
number_of_files: 7
codec.json:
pretty: false
output.file:
path: "chemin/vers/le/dossier/de/sortie"
@mathieue
mathieue / UpdateLogstashLogging.ps1
Created November 27, 2023 14:48
UpdateLogstashLogging.ps1
$headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
$headers.Add("Content-Type", "application/json")
$body = '{ "logger.logstash.inputs.jdbc" : "ERROR" }'
$url = 'http://localhost:9600/_node/logging?pretty'
$response = Invoke-RestMethod -Uri $url -Method 'PUT' -Headers $headers -Body $body
@mathieue
mathieue / playlist-converter-node.js
Last active January 14, 2019 14:04
Export a playlist to any service calling Playlist Converter Api with nodejs.
console.log("runing playlist converter api demo....");
var name = "Super Playlist";
var tracks = [];
tracks.push("Shape of You Ed Sheeran");
tracks.push("One Dance Drake");
let tracksJoined = tracks.join("\n");
TP SECU
Dans le fichier de configuration elasticsearch.yml
xpack.security.enabled: true
Relancer elasticsearch.
Se connecter a kibana: est-il accessible ?
Se connecter a elasticsearch sur le port 9200: est-il accessible ?
curl -X POST 'http://localhost:9200/cours/note' -d '{"nom": "Eric","ville":"Paris","latlon": "48.864716,2.349014","discipline":"Mathematiques","note":12}'
curl -X POST 'http://localhost:9200/cours/note' -d '{"nom": "Martin","ville":"Paris","latlon": "48.864716,2.349014","discipline":"Mathematiques","note":13}'
curl -X POST 'http://localhost:9200/cours/note' -d '{"nom": "Patrick","ville":"Paris","latlon": "48.864716,2.349014","discipline":"Mathematiques","note":9}'
curl -X POST 'http://localhost:9200/cours/note' -d '{"nom": "Sebastien","ville":"Paris","latlon": "48.864716,2.349014","discipline":"Mathematiques","note":12}'
curl -X POST 'http://localhost:9200/cours/note' -d '{"nom": "Stephane","ville":"Bordeaux","latlon": "44.836151,-0.580816","discipline":"Mathematiques","note":11}'
curl -X POST 'http://localhost:9200/cours/note' -d '{"nom": "Francois","ville":"Bordeaux","latlon": "44.836151,-0.580816","discipline":"Mathematiques","note":18}'
curl -X POST 'http://localhost:9200/cours/note' -d '{"nom": "S
input {
tcp {
port => 242
}
file {
type => "syslog"
path => [ "/var/log/*.log", "/var/log/messages", "/var/log/syslog" ]
start_position => "beginning"
}
@mathieue
mathieue / index.html
Created September 24, 2014 12:48
d3.js force layout experiments
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.node {
fill: #000;
}
</style>
@mathieue
mathieue / arcs.csv
Last active August 29, 2015 14:06 — forked from mhkeller/arcs.csv
source_lng source_lat target_lng target_lat
-99.5606025 41.068178502813595 -106.503961875 33.051502817366334
-99.5606025 41.068178502813595 -97.27544625 34.29490081496779
-99.5606025 41.068178502813595 -92.793024375 34.837711658059135
-99.5606025 41.068178502813595 -100.3076728125 41.85852354782116
-99.5606025 41.068178502813595 -104.6143134375 43.18636214435451
-99.5606025 41.068178502813595 -106.152399375 45.57291634897
-99.5606025 41.068178502813595 -105.5811103125 42.3800618087319
-99.5606025 41.068178502813595 -74.610651328125 42.160561343227656
-99.5606025 41.068178502813595 -78.148248984375 40.20112201100485
@mathieue
mathieue / README.md
Created September 9, 2014 09:56
d3 js hello world
@mathieue
mathieue / README.MD
Last active August 29, 2015 14:06
Hello world d3