Skip to content

Instantly share code, notes, and snippets.

View koolhead17's full-sized avatar

koolhead17 koolhead17

View GitHub Profile
@koolhead17
koolhead17 / config.json
Last active September 11, 2016 21:43
Minio Config for RabbitMQ
{
"version": "6",
"credential": {
"accessKey": "MYACCESSKEY",
"secretKey": "MYSECRETKEY"
},
"region": "us-east-1",
"logger": {
"console": {
"enable": true,
@koolhead17
koolhead17 / config.json
Last active September 13, 2016 22:14
Minio Config Snippet for RabbitMQ
"amqp": {
"1": {
"enable": true,
"url": "amqp://myuser:mypassword@localhost:5672",
"exchange": "bucketevents",
"routingKey": "bucketlogs",
"exchangeType": "fanout",
"mandatory": false,
"immediate": false,
"durable": false,
@koolhead17
koolhead17 / rabbit.py
Last active September 11, 2016 21:43
#!/usr/bin/env python
import pika
connection = pika.BlockingConnection(pika.ConnectionParameters(
host='localhost'))
channel = connection.channel()
channel.exchange_declare(exchange='bucketevents',
type='fanout')
@koolhead17
koolhead17 / config.json
Last active September 10, 2016 01:03
Minio Config with Elasticsearch
{
"version": "6",
"credential": {
"accessKey": "MYACCESSKEY",
"secretKey": "MYSECRETSKEY"
},
"region": "us-east-1",
"logger": {
"console": {
"enable": true,
@koolhead17
koolhead17 / config.json
Last active September 19, 2016 17:34
Minio Config Snippet for Elasticsearch
"elasticsearch": {
"1": {
"enable": true,
"url": "http://127.0.0.1:9200",
"index": "bucketevents"
}
},
@koolhead17
koolhead17 / elasticsearch
Last active September 19, 2016 18:07
Snippet for Elasticsearch Index content
$ curl -XGET '127.0.0.1:9200/bucketevents/_search?pretty=1'
{
"took" : 3,
"timed_out" : false,
"_shards" : {
"total" : 5,
"successful" : 5,
"failed" : 0
},
"hits" : {
@koolhead17
koolhead17 / config.json
Created September 10, 2016 02:49
Minio Config with Redis
{
"version": "6",
"credential": {
"accessKey": "YI7S1CKXB76RGOGT6R8W",
"secretKey": "FJ9PWUVNXGPfiI72WMRFepN3LsFgW3MjsxSALroV"
},
"region": "us-east-1",
"logger": {
"console": {
"enable": true,
@koolhead17
koolhead17 / config.json
Last active September 19, 2016 20:28
Minio Config Snippet with Redis
"redis": {
"1": {
"enable": true,
"address": "127.0.0.1:6379",
"password": "yoursecret",
"key": "bucketevents"
}
}
@koolhead17
koolhead17 / Redis
Last active September 19, 2016 21:48
Redis monitor for Minio
$ redis-cli -a yoursecret
127.0.0.1:6379> monitor
OK
1474321638.556108 [0 127.0.0.1:40190] "AUTH" "yoursecret"
1474321638.556477 [0 127.0.0.1:40190] "RPUSH" "bucketevents" "{\"Records\":[{\"eventVersion\":\"2.0\",\"eventSource\":\"aws:s3\",\"awsRegion\":\"us-east-1\",\"eventTime\":\"2016-09-19T21:47:18.555Z\",\"eventName\":\"s3:ObjectCreated:Put\",\"userIdentity\":{\"principalId\":\"minio\"},\"requestParameters\":{\"sourceIPAddress\":\"[::1]:39250\"},\"responseElements\":{},\"s3\":{\"s3SchemaVersion\":\"1.0\",\"configurationId\":\"Config\",\"bucket\":{\"name\":\"images\",\"ownerIdentity\":{\"principalId\":\"minio\"},\"arn\":\"arn:aws:s3:::images\"},\"object\":{\"key\":\"myphoto.jpg\",\"size\":23745,\"sequencer\":\"1475D7B80ECBD853\"}}}],\"level\":\"info\",\"msg\":\"\",\"time\":\"2016-09-19T14:47:18-07:00\"}\n"
@koolhead17
koolhead17 / s3-upload-aws4.sh
Created September 12, 2016 21:34 — forked from vszakats/s3-upload-aws4.sh
AWS S3 Upload using signature v4
#!/bin/sh
# To the extent possible under law, Viktor Szakats (vszakats.net)
# has waived all copyright and related or neighboring rights to this
# script.
# CC0 - https://creativecommons.org/publicdomain/zero/1.0/
# Upload a file to Amazon AWS S3 using Signature Version 4
#
# docs: