This file contains 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
-- Logs begin at Mon 2020-03-16 15:16:30 PDT, end at Tue 2020-03-24 11:36:26 PDT. -- | |
Mar 23 16:57:13 ip-10-0-0-191 etcd[1223]: {"level":"info","ts":"2020-03-23T23:57:13.975Z","caller":"raft/raft.go:922","msg":"3c8915009d29bbba is starting a new election at term 664"} | |
Mar 23 16:57:13 ip-10-0-0-191 etcd[1223]: {"level":"info","ts":"2020-03-23T23:57:13.976Z","caller":"raft/raft.go:712","msg":"3c8915009d29bbba became candidate at term 665"} | |
Mar 23 16:57:13 ip-10-0-0-191 etcd[1223]: {"level":"info","ts":"2020-03-23T23:57:13.976Z","caller":"raft/raft.go:823","msg":"3c8915009d29bbba received MsgVoteResp from 3c8915009d29bbba at term 665"} | |
Mar 23 16:57:13 ip-10-0-0-191 etcd[1223]: {"level":"info","ts":"2020-03-23T23:57:13.977Z","caller":"raft/raft.go:810","msg":"3c8915009d29bbba [logterm: 1, index: 3] sent MsgVote request to 78ea405b479ca574 at term 665"} | |
Mar 23 16:57:13 ip-10-0-0-191 etcd[1223]: {"level":"info","ts":"2020-03-23T23:57:13.977Z","caller":"raft/raft.go:810","msg":"3c8915009d29bbba [logterm: 1, index: 3] |
This file contains 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
-- Logs begin at Mon 2020-03-16 15:16:30 PDT, end at Tue 2020-03-24 11:41:22 PDT. -- | |
Mar 23 16:57:13 ip-10-0-0-191 etcd[1223]: {"level":"info","ts":"2020-03-23T23:57:13.975Z","caller":"raft/raft.go:922","msg":"3c8915009d29bbba is starting a new election at term 664"} | |
Mar 23 16:57:13 ip-10-0-0-191 etcd[1223]: {"level":"info","ts":"2020-03-23T23:57:13.976Z","caller":"raft/raft.go:712","msg":"3c8915009d29bbba became candidate at term 665"} | |
Mar 23 16:57:13 ip-10-0-0-191 etcd[1223]: {"level":"info","ts":"2020-03-23T23:57:13.976Z","caller":"raft/raft.go:823","msg":"3c8915009d29bbba received MsgVoteResp from 3c8915009d29bbba at term 665"} | |
Mar 23 16:57:13 ip-10-0-0-191 etcd[1223]: {"level":"info","ts":"2020-03-23T23:57:13.977Z","caller":"raft/raft.go:810","msg":"3c8915009d29bbba [logterm: 1, index: 3] sent MsgVote request to 78ea405b479ca574 at term 665"} | |
Mar 23 16:57:13 ip-10-0-0-191 etcd[1223]: {"level":"info","ts":"2020-03-23T23:57:13.977Z","caller":"raft/raft.go:810","msg":"3c8915009d29bbba [logterm: 1, index: 3] |
This file contains 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
-- Logs begin at Mon 2020-03-16 15:16:30 PDT, end at Tue 2020-03-24 11:46:23 PDT. -- | |
Mar 23 16:56:06 ip-10-0-0-191 systemd[1]: etcd.service: Service hold-off time over, scheduling restart. | |
Mar 23 16:56:06 ip-10-0-0-191 systemd[1]: etcd.service: Scheduled restart job, restart counter is at 280. | |
Mar 23 16:56:06 ip-10-0-0-191 systemd[1]: Stopped etcd. | |
Mar 23 16:56:06 ip-10-0-0-191 systemd[1]: Starting etcd... | |
Mar 23 16:56:06 ip-10-0-0-191 etcd[1223]: running etcd on unsupported architecture "arm64" since ETCD_UNSUPPORTED_ARCH is set | |
Mar 23 16:56:06 ip-10-0-0-191 etcd[1223]: {"level":"info","ts":"2020-03-23T23:56:06.863Z","caller":"etcdmain/etcd.go:100","msg":"server has been already initialized","data-dir":"/var/lib/etcd","dir-type":"member"} | |
Mar 23 16:56:06 ip-10-0-0-191 etcd[1223]: {"level":"info","ts":"2020-03-23T23:56:06.863Z","caller":"embed/etcd.go:113","msg":"configuring peer listeners","listen-peer-urls":["https://10.0.0.191:2380"]} | |
Mar 23 16:56:06 ip-10-0-0-191 etcd[1223]: {"level":"info","ts":"2020-03- |
This file contains 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//Transitional//EN"> | |
<html> | |
<head> | |
<meta name="generator" content="ccze 0.2.1"> | |
<style type="text/css"> | |
body { font: 10pt courier; white-space: nowrap } | |
.ccze_date { | |
color: cyan | |
} |
This file contains 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
#!/bin/bash | |
# Like the 'aws' cli except caches results | |
# http://redsymbol.net/articles/unofficial-bash-strict-mode/ | |
set -euo pipefail | |
IFS=$'\n\t' | |
#set -x |
This file contains 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
#!/bin/bash | |
set -fuo pipefail | |
IFS=$'\n\t' | |
export AWS_DEFAULT_OUTPUT="json" | |
DEFAULT_NAMESPACE='cfn' | |
DEFAULT_TEMPLATE='cfn.yaml' |