Skip to content

Instantly share code, notes, and snippets.

View ndegory's full-sized avatar

Nicolas Degory ndegory

  • San Francisco Bay Area
View GitHub Profile
@ndegory
ndegory / kubernetes-bookmarks.html
Created June 28, 2022 23:43
Kubernetes Bookmarks for CKA and CKS
<!DOCTYPE NETSCAPE-Bookmark-file-1>
<!-- This is an automatically generated file.
It will be read and overwritten.
DO NOT EDIT! -->
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<meta http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'none'; img-src data: *; object-src 'none'"></meta>
<TITLE>Bookmarks</TITLE>
<H1>Bookmarks Menu</H1>
@ndegory
ndegory / telegraf.conf
Created November 14, 2016 14:44
Telegraf configuration for Docker input plugin test
[global_tags]
[agent]
interval = "10s"
round_interval = true
metric_batch_size = 1000
metric_buffer_limit = 10000
collection_jitter = "0s"
flush_interval = "10s"
flush_jitter = "0s"
@ndegory
ndegory / docker-compose-telegraf-1.12.3.txt
Created November 14, 2016 14:39
Stdout of Telegraf Docker input plugin with Docker 1.12.3
2016/11/14 14:37:15 I! Using config file: /etc/telegraf/telegraf.conf
2016/11/14 14:37:15 E! Database creation failed: Post http://influxdb:8086/query?db=&q=CREATE+DATABASE+%22telegraf%22: dial tcp 172.20.0.2:8086: getsockopt: connection refused
2016/11/14 14:37:15 I! Starting Telegraf (version 1.1.0)
2016/11/14 14:37:15 I! Loaded outputs: influxdb
2016/11/14 14:37:15 I! Loaded inputs: inputs.docker
2016/11/14 14:37:15 I! Tags enabled: host=036ac316aed4
2016/11/14 14:37:15 I! Agent Config: Interval:10s, Quiet:false, Hostname:"036ac316aed4", Flush Interval:10s
2016/11/14 14:37:30 I! Output [influxdb] buffer fullness: 24 / 10000 metrics. Total gathered metrics: 24. Total dropped metrics: 0.
2016/11/14 14:37:30 I! Output [influxdb] wrote batch of 24 metrics in 19.200448ms
2016/11/14 14:37:40 I! Output [influxdb] buffer fullness: 22 / 10000 metrics. Total gathered metrics: 46. Total dropped metrics: 0.
@ndegory
ndegory / docker-compose-telegraf.txt
Created November 14, 2016 14:33
Stdout of Telegraf Docker input plugin with Docker 1.13.0-rc1
Creating network "tmp_default" with the default driver
Creating tmp_influxdb_1
2016/11/14 14:26:48 I! Using config file: /etc/telegraf/telegraf.conf
2016/11/14 14:26:48 E! Database creation failed: Post http://influxdb:8086/query?db=&q=CREATE+DATABASE+%22telegraf%22: dial tcp 172.20.0.2:8086: getsockopt: connection refused
2016/11/14 14:26:48 I! Starting Telegraf (version 1.1.0)
2016/11/14 14:26:48 I! Loaded outputs: influxdb
2016/11/14 14:26:48 I! Loaded inputs: inputs.docker
2016/11/14 14:26:48 I! Tags enabled: host=09989b9cc212
2016/11/14 14:26:48 I! Agent Config: Interval:10s, Quiet:false, Hostname:"09989b9cc212", Flush Interval:10s
Error reading remote info: json: cannot unmarshal object into Go value of type string
@ndegory
ndegory / docker-compose-telegraf.yml
Created November 14, 2016 14:31
Compose file for Telegraf Docker input plugin
version: "2"
services:
influxdb:
image: appcelerator/influxdb-amp:1.1.0
telegraf:
image: telegraf:latest
ports:
- "8094:8094"
volumes: