Skip to content

Commit f9586dd

Browse files
author
Andy Chambers
committed
Enable google analytics
1 parent b4e5e0f commit f9586dd

File tree

2 files changed

+19
-8
lines changed

2 files changed

+19
-8
lines changed

_layouts/default.html

+10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4+
<!-- Global site tag (gtag.js) - Google Analytics -->
5+
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-151752680-1"></script>
6+
<script>
7+
window.dataLayer = window.dataLayer || [];
8+
function gtag(){dataLayer.push(arguments);}
9+
gtag('js', new Date());
10+
11+
gtag('config', 'UA-151752680-1');
12+
</script>
13+
414
<title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.name }} – {{ site.description }}</title>
515

616
{% include meta.html %}

_posts/2019-11-07-test-machine-test-env.md

+9-8
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@ layout: post
33
title: A Test Environment for Kafka Applications
44
---
55

6-
In [Testing Event Driven Systems](https://www.confluent.io/blog/testing-event-driven-systems),
7-
I introduced the test-machine and included a simple example for
8-
demonstration purposes. I made the claim that however your system is
9-
implemented, as long as its input and output can be represented in
10-
Kafka, the test-machine would be an effective tool for testing it. Now
11-
we’ve had some time to put that claim to the...ahem test, I thought
12-
it might be interesting to explore some actual use-cases in a bit more
13-
detail.
6+
In [Testing Event Driven
7+
Systems](https://www.confluent.io/blog/testing-event-driven-systems),
8+
I introduced the test-machine, (a Clojure library for testing kafka
9+
applications) and included a simple example for demonstration
10+
purposes. I made the claim that however your system is implemented, as
11+
long as its input and output can be represented in Kafka, the
12+
test-machine would be an effective tool for testing it. Now we’ve had
13+
some time to put that claim to the...ahem test, I thought it might be
14+
interesting to explore some actual use-cases in a bit more detail.
1415

1516
Having spent a year or so of using the test-machine, I can now say
1617
with increased confidence that it is an effective tool for

0 commit comments

Comments
 (0)