- Taking Human Performance Seriously In Software - John Allspaw
- Chaos Engineering Traps - Nora Jones
- A story of one SLO - Piotr Holubowicz
- Tradeoffs on the Road to Observability - Liz Fong-Jones
- Software Supply Chain Observability with Grafeas and Kritis - Aysylu Greenberg
- Logs, Metrics, and the Evolution of Observability at Coinbase - Luke Demi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###################### | |
### DESIGN CHANGES ### | |
###################### | |
# panes | |
set -g pane-border-fg black | |
set -g pane-active-border-fg brightred | |
## Status bar design | |
# status line |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###################### | |
### DESIGN CHANGES ### | |
###################### | |
# panes | |
set -g pane-border-fg black | |
set -g pane-active-border-fg brightred | |
## Status bar design | |
# status line |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "null_resource" "subnets" { | |
triggers { | |
subnets = "${var.private_subnets.us-west-2a},${var.private_subnets.us-west-2b},${var.private_subnets.us-west-2c}" | |
} | |
} | |
resource "aws_elasticache_subnet_group" "elasticache" { | |
name = "${var.name}-${var.envtag}" | |
description = "${var.name} subnet group for ${var.envtag}" | |
subnet_ids = [ "${compact("${split(",","${null_resource.subnets.triggers.subnets}")}")}" ] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
botocore.parsers.ResponseParserError: Unable to parse response (not well-formed (invalid token): line 1, column 0), invalid XML received: | |
{ | |
"CreateDBInstanceResponse": { | |
"CreateDBInstanceResult": { | |
"DBInstance": { | |
"AllocatedStorage": 10, | |
"AutoMinorVersionUpgrade": "True", | |
"AvailabilityZone": "None", | |
"BackupRetentionPeriod": "1", | |
"CharacterSetName": null, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import socket | |
# The general premise behind this is that kafka needs a unique broker id, and well, the ip address | |
# of the system has to be unique. They're both 32bit numbers, so why not? | |
broker_id = int(socket.inet_aton(socket.gethostbyname(socket.gethostname())).encode('hex'),16) | |
print "kafka_brokerid=%s" % str(broker_id) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remove parameters on resources that aren't exported or tagged public | |
ExtFilterDefine resources-remove-parameters-nonexported-nonpublic mode=output \ | |
intype=application/json outtype=application/json \ | |
cmd="/usr/bin/jq map(if\ .exported\ or\ (.tags\ |\ contains([\"public\"]))\ then\ .\ else\ .parameters={}\ end)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SOLIPSISTIC PUBLIC LICENSE | |
Version 1, April 2013 | |
Copyright (C) 2013 | |
Everyone is permitted to copy and distiribute verbatim copies of | |
this license document. Modified copies of this document are | |
permitted provided that they denouce BOTH the original AND | |
their copy as mere sense data with no verifiable cause outside the mind. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:filters - (Array<) One or more filters. | |
architecture - The instance architecture (i386 | x86_64). | |
availability-zone - The Availability Zone of the instance. | |
block-device-mapping.attach-time - The attach time for an Amazon EBS volume mapped to the instance. | |
block-device-mapping.delete-on-termination - A Boolean that indicates whether the Amazon EBS volume is deleted on instance termination. |
NewerOlder