
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
<section> | |
<h1>Bash to the Future</h1> | |
<h2>Grant Sherrick</h2> | |
</section> | |
<section id="some-bash-history-pt1"> | |
<p id="slide-category" class="callouts">Bash History</p> | |
<h2>Bash is a product of the GNU project.</h2> | |
<br> | |
<ul> | |
<li class="fragment">Bash is covered under a GPL license.</li> |
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
<section> | |
<h1>A Deep Dive into an Alert on Prometheus</h1> | |
<h2>Grant Sherrick</h2> | |
</section> | |
<section id="where-we-started"> | |
<h2>We started with an alert.</h2> | |
<br> | |
<pre><code>- alert: EntitledErrorRateIncreased | |
expr: sum(rate(http_requests_total{app="entitled",path!="/metrics/healthcheck",statusClass="5XX"}[1h]) | |
* 60 * 60) > 5 |
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
<section> | |
<h1>WTF Kafka Connect?!</h1> | |
<h2>Grant Sherrick</h2> | |
</section> | |
<section id="where-we-began"> | |
<h2>We started with trying to get our data from Kafka to S3.</h2> | |
<h2 class="fragment">We ran into a few issues...</h2> | |
<ul> | |
<li class="fragment">the Dockerfile</li> | |
<li class="fragment">Data Flushing</li> |
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
<section> | |
<h1>Deep in the Heart of Kafka</h1> | |
<h2>Grant Sherrick</h2> | |
</section> | |
<section id="what-has-confused-me"> | |
<h2>I have found Kafka to be pretty confusing...</h2> | |
<ul class="fragment"> | |
<li>Kafka/Confluent Relationship</li> | |
<li>Zookeeper</li> | |
<li>Consumer Groups</li> |
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
<section> | |
<h1>A Journey into Helm</h1> | |
<h2>Grant Sherrick</h2> | |
</section> | |
<section data-transition="linear"> | |
<section id="where-we-started"> | |
<h2>We started with a git repo.</h2> | |
<br> | |
<pre><code>the-greatest-kafka-consumer | |
├── Dockerfile |