Skip to content

Instantly share code, notes, and snippets.

@bfleming-ciena
bfleming-ciena / gist:06ab3531a1c30c3b998a
Created February 18, 2015 20:06
Simple example using python scp module to do wildcard scp with progress
from paramiko import SSHClient
from scp import SCPClient
def progress(filename, size, sent):
print filename + " " + str(size) + " " + str(sent)
if __name__ == "__main__":
ssh = SSHClient()
ssh.load_system_host_keys()
global
log 127.0.0.1:514 local1
defaults
mode http
log global
option httplog
option http-server-close
option dontlognull
option redispatch
@bfleming-ciena
bfleming-ciena / gist:b8be26b7da3b731ba32f
Created September 8, 2015 19:47
iam ec2 tart policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1441741040000",
"Effect": "Allow",
"Action": [
"ec2:StartInstances"
],
"Condition": {
@bfleming-ciena
bfleming-ciena / gist:c1d3e5a5b77a156473a8
Last active September 8, 2018 18:59
Pull estimated AWS charges Billing
#list metrics
aws --profile dev --region us-east-1 cloudwatch list-metrics --namespace "AWS/Billing"
# Estimated charges
aws --region us-east-1 cloudwatch get-metric-statistics --namespace "AWS/Billing" --metric-name "EstimatedCharges" --dimension "Name=Currency,Value=USD" --start-time $(gdate +"%Y-%m-%dT%H:%M:00" --date="-12 hours") --end-time $(gdate +"%Y-%m-%dT%H:%M:00") --statistic Maximum --period 60 --output text | sort -r -k 3 | head -n 1 | cut -f 2
# Marketplace Charges
aws --profile dev --region us-east-1 cloudwatch get-metric-statistics --namespace "AWS/Billing" --metric-name "EstimatedCharges" --dimensions Name=ServiceName,Value=AWSMarketplace Name=Currency,Value=USD --start-time $(gdate +"%Y-%m-%dT%H:%M:00" --date="-12 hours") --end-time $(gdate +"%Y-%m-%dT%H:%M:00") --statistic Maximum --period 60 --output text
# Redshift
@bfleming-ciena
bfleming-ciena / gist:75d9e3128b1122d6a4d1
Last active December 1, 2015 23:47
aws describe-tags example --filter option
# Seems impossible to find an example like this. Didn't want to use boto, just wanted to use bash to pull the value of a tag out. Holy crap this is long.
aws ec2 describe-tags --region us-west-2 --filters '[{"name":"resource-id","values":["i-abc12345"]},{"name":"key","values":["MY_TAG"]}]' | jq '.Tags[].Value'
# The primary network interface
auto eth0
iface eth0 inet dhcp
iface eth0:0 inet static
address 10.9.248.180
#/25 is our VPC subnet.
netmask 255.255.255.128
ip route show
default via 10.9.248.1 dev eth0
10.9.248.0/25 dev eth0 proto kernel scope link src 10.9.248.101
after ifup eth0:0
ip route show
default via 10.9.248.1 dev eth0
10.9.248.0/25 dev eth0 proto kernel scope link src 10.9.248.101
10.9.248.128/25 dev eth0 proto kernel scope link src 10.9.248.180
@bfleming-ciena
bfleming-ciena / kafka.service
Created July 11, 2017 18:21
systemd service for kafka that uses environment settings in-line
[Unit]
Description=Apache Kafka server (broker)
Documentation=http://kafka.apache.org/documentation.html
Requires=network.target remote-fs.target
After=network.target remote-fs.target
[Service]
Type=simple
PIDFile=/var/run/kafka.pid
User=kafka
gitfs_remotes:
- http://ourrepo/repos/sxa/repo.git:
- saltenv:
- csdev:
- ref: salt-csdev
- root: 'salt/env'
@bfleming-ciena
bfleming-ciena / gist:018882175ffa8efb57a7d594385cd6c7
Last active March 19, 2018 19:50
K8s Prometheus CoreOS Operator - Adding external nodes to be monitored.
-- My need was to include nodes outside of my k8s cluster for monitoring.
-- Thanks to @amalucelli for originally posting this.
-- https://github.com/coreos/prometheus-operator/issues/834
--
-- This is tested with k8s 1.9, and .17 prometheus operator, using the pre-built deployment at
-- https://github.com/coreos/prometheus-operator/blob/master/contrib/kube-prometheus/README.md
-- Steps: Deploy per the script above, and then apply these objects. Should appear in granfa after a short time.
kind: Service
apiVersion: v1