Skip to content

Commit

Permalink
docs: add ioredis example
Browse files Browse the repository at this point in the history
  • Loading branch information
naseemkullah committed Jan 5, 2020
1 parent 7124f5f commit c0c64f5
Show file tree
Hide file tree
Showing 9 changed files with 320 additions and 0 deletions.
106 changes: 106 additions & 0 deletions examples/ioredis/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
# Overview

OpenTelemetry IORedis Instrumentation allows the user to automatically collect trace data and export them to the backend of choice (we can use Zipkin or Jaeger for this example), to give observability to distributed systems.

This is a simple example that demonstrates tracing calls to a Redis cache via an Express API. The example
shows key aspects of tracing such as
- Root Span (on Client)
- Child Span (on Client)
- Child Span from a Remote Parent (on Server)
- SpanContext Propagation (from Client to Server)
- Span Events
- Span Attributes

## Installation

```sh
$ # from this directory
$ npm install
```

Setup [Zipkin Tracing](https://zipkin.io/pages/quickstart.html)
or
Setup [Jaeger Tracing](https://www.jaegertracing.io/docs/latest/getting-started/#all-in-one)

## Run the Application

### Zipkin

- Start redis via docker

```sh
# from this directory
npm run docker:start
```

- Run the server

```sh
# from this directory
$ npm run zipkin:server
```

- Run the client

```sh
# from this directory
npm run zipkin:client
```

- Cleanup docker

```sh
# from this directory
npm run docker:stop
```

#### Zipkin UI
`zipkin:server` script should output the `traceid` in the terminal (e.g `traceid: 4815c3d576d930189725f1f1d1bdfcc6`).
Go to Zipkin with your browser [http://localhost:9411/zipkin/traces/(your-trace-id)]() (e.g http://localhost:9411/zipkin/traces/4815c3d576d930189725f1f1d1bdfcc6)

<p align="center"><img src="./images/zipkin.png?raw=true"/></p>

### Jaeger

- Start redis via docker

```sh
# from this directory
npm run docker:start
```

- Run the server

```sh
# from this directory
$ npm run jaeger:server
```

- Run the client

```sh
# from this directory
npm run jaeger:client
```

- Cleanup docker

```sh
# from this directory
npm run docker:stop
```

#### Jaeger UI

`jaeger:server` script should output the `traceid` in the terminal (e.g `traceid: 4815c3d576d930189725f1f1d1bdfcc6`).
Go to Jaeger with your browser [http://localhost:16686/trace/(your-trace-id)]() (e.g http://localhost:16686/trace/4815c3d576d930189725f1f1d1bdfcc6)

<p align="center"><img src="images/jaeger.png?raw=true"/></p>

## Useful links
- For more information on OpenTelemetry, visit: <https://opentelemetry.io/>
- For more information on OpenTelemetry for Node.js, visit: <https://github.com/open-telemetry/opentelemetry-js/tree/master/packages/opentelemetry-node>

## LICENSE

Apache License 2.0
29 changes: 29 additions & 0 deletions examples/ioredis/client.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
'use strict';

// Require tracer before any other modules
const tracer = require('./tracer')('ioredis-client-service');

const types = require('@opentelemetry/types');
const axios = require('axios').default;

function makeRequest() {
const span = tracer.startSpan('client.makeRequest()', {
parent: tracer.getCurrentSpan(),
kind: types.SpanKind.CLIENT,
});

tracer.withSpan(span, async () => {
try {
const res = await axios.get('http://localhost:8080/run_test');
span.setStatus({ code: types.CanonicalCode.OK });
console.log(res.statusText);
} catch (e) {
span.setStatus({ code: types.CanonicalCode.UNKNOWN, message: e.message });
}
span.end();
console.log('Sleeping 5 seconds before shutdown to ensure all records are flushed.');
setTimeout(() => { console.log('Completed.'); }, 5000);
});
}

makeRequest();
36 changes: 36 additions & 0 deletions examples/ioredis/express-tracer-handlers.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
'use strict';

const types = require('@opentelemetry/types');

function getMiddlewareTracer(tracer) {
return (req, res, next) => {
const span = tracer.startSpan(`express.middleware.tracer(${req.method} ${req.path})`, {
parent: tracer.getCurrentSpan(),
kind: types.SpanKind.SERVER,
});

console.log(`traceid: ${span.context().traceId}`);

// End this span before sending out the response
const originalSend = res.send;
res.send = function send(...args) {
span.end();
originalSend.apply(res, args);
};

tracer.withSpan(span, next);
};
}

function getErrorTracer(tracer) {
return (err, _req, res, _next) => {
console.log('Caught error', err.message);
const span = tracer.getCurrentSpan();
if (span) {
span.setStatus({ code: types.CanonicalCode.INTERNAL, message: err.message });
}
res.status(500).send(err.message);
};
}

module.exports = { getMiddlewareTracer, getErrorTracer };
Binary file added examples/ioredis/images/jaeger.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added examples/ioredis/images/zipkin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
50 changes: 50 additions & 0 deletions examples/ioredis/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"name": "ioredis-example",
"private": true,
"version": "0.3.2",
"description": "Example of HTTP integration with OpenTelemetry",
"main": "index.js",
"scripts": {
"docker:start": "docker run -d -p 6379:6379 --name otjsredis redis:alpine",
"docker:stop": "docker stop otjsredis && docker rm otjsredis",
"zipkin:server": "cross-env EXPORTER=zipkin node ./server.js",
"zipkin:client": "cross-env EXPORTER=zipkin node ./client.js",
"jaeger:server": "cross-env EXPORTER=jaeger node ./server.js",
"jaeger:client": "cross-env EXPORTER=jaeger node ./client.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/open-telemetry/opentelemetry-js.git"
},
"keywords": [
"opentelemetry",
"redis",
"ioredis",
"tracing"
],
"engines": {
"node": ">=8"
},
"author": "OpenTelemetry Authors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/open-telemetry/opentelemetry-js/issues"
},
"dependencies": {
"@opentelemetry/core": "^0.3.2",
"@opentelemetry/exporter-jaeger": "^0.3.2",
"@opentelemetry/exporter-zipkin": "^0.3.2",
"@opentelemetry/node": "^0.3.2",
"@opentelemetry/plugin-http": "^0.3.2",
"@opentelemetry/plugin-ioredis": "^0.3.2",
"@opentelemetry/tracing": "^0.3.2",
"@opentelemetry/types": "^0.3.2",
"axios": "^0.19.0",
"express": "^4.17.1",
"ioredis": "^4.14.1"
},
"homepage": "https://github.com/open-telemetry/opentelemetry-js#readme",
"devDependencies": {
"cross-env": "^6.0.0"
}
}
7 changes: 7 additions & 0 deletions examples/ioredis/redis.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
'use strict';

const Redis = require('ioredis');

const redis = new Redis('redis://localhost:6379');

module.exports = redis;
61 changes: 61 additions & 0 deletions examples/ioredis/server.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
'use strict';

// Require tracer before any other modules
const tracer = require('./tracer')('ioredis-server-service');

const express = require('express');
const axios = require('axios').default;
const tracerHandlers = require('./express-tracer-handlers');
const redis = require('./redis');

const app = express();
const port = process.env.PORT || 8080;

/**
* Redis Routes are set up async since we resolve the client once it is successfully connected
*/
async function setupRoutes() {
app.get('/run_test', async (req, res) => {
const uuid = Math.random()
.toString(36)
.substring(2, 15)
+ Math.random()
.toString(36)
.substring(2, 15);
await axios.get(`http://localhost:${port}/set?args=uuid,${uuid}`);
const body = await axios.get(`http://localhost:${port}/get?args=uuid`);

if (body.data !== uuid) {
throw new Error('UUID did not match!');
} else {
res.sendStatus(200);
}
});

app.get('/:cmd', (req, res) => {
if (!req.query.args) {
res.status(400).send('No args provided');
return;
}

const { cmd } = req.params;
const args = req.query.args.split(',');
redis[cmd].call(redis, ...args, (err, result) => {
if (err) {
res.sendStatus(400);
} else if (result) {
res.status(200).send(result);
} else {
throw new Error('Empty redis response');
}
});
});
}

// Setup express routes & middleware
app.use(tracerHandlers.getMiddlewareTracer(tracer));
setupRoutes().then(() => {
app.use(tracerHandlers.getErrorTracer(tracer));
app.listen(port);
console.log(`Listening on http://localhost:${port}`);
});
31 changes: 31 additions & 0 deletions examples/ioredis/tracer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
'use strict';

const opentelemetry = require('@opentelemetry/core');
const { NodeTracer } = require('@opentelemetry/node');
const { SimpleSpanProcessor } = require('@opentelemetry/tracing');
const { JaegerExporter } = require('@opentelemetry/exporter-jaeger');
const { ZipkinExporter } = require('@opentelemetry/exporter-zipkin');

const EXPORTER = process.env.EXPORTER || '';

module.exports = (serviceName) => {
const tracer = new NodeTracer();

let exporter;
if (EXPORTER.toLowerCase().startsWith('z')) {
exporter = new ZipkinExporter({
serviceName,
});
} else {
exporter = new JaegerExporter({
serviceName,
});
}

tracer.addSpanProcessor(new SimpleSpanProcessor(exporter));

// Initialize the OpenTelemetry APIs to use the BasicTracer bindings
opentelemetry.initGlobalTracer(tracer);

return opentelemetry.getTracer();
};

0 comments on commit c0c64f5

Please sign in to comment.