Skip to content

Commit f05bcfd

Browse files
committed
Merge branch 'sos' into facelift
2 parents ecc58a8 + c92280d commit f05bcfd

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

public/output.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,20 +92,26 @@ <h1 class="type_heading">
9292
<mark class="type_mark">Runtime</mark>
9393
</dt>
9494
<dd class="type_copy">
95-
This is a Node.js app running on IBM Bluemix. <a href="https://nodejs.org/en/" class="type_link" target="_blank">Node.js</a> code is JavaScript running on the server side. Node.js has a rich collection of add-on libraries that can be baked into your applications using the <a href="https://npmjs.org/" class="type_link">npm</a> package manager. This application uses the <a href="http://expressjs.com/" class="type_link" target="_blank">Express</a> web framework and the <a href="https://www.npmjs.com/package/cloudant" class="type_link" target="_blank">Cloudant Node.js library</a> to power this web app.
95+
This is a Node.js app running on IBM Bluemix. <a href="https://nodejs.org/en/" class="type_link" target="_blank">Node.js</a> code is JavaScript running on the server side. Node.js has a rich collection of add-on libraries that can be baked into your applications using the <a href="https://npmjs.org/" class="type_link">npm</a> package manager. This application uses the <a href="http://expressjs.com/" class="type_link" target="_blank">Express</a> web framework and the <a href="https://www.npmjs.com/package/simple-service-registry" class="type_link" target="_blank">Simple Service Registry</a> to power this web app.
9696
</dd>
9797
<dt>
9898
<mark class="type_mark">Queues</mark>
9999
</dt>
100100
<dd class="type_copy">
101-
By default this application outputs the events to the Terminal, but support is also available for <a target="_blank" class="type_link" href="https://www.compose.io/articles/get-started-with-redis-on-compose/">Redis by Compose</a>, <a target="_blank" class="type_link" href="https://www.compose.io/articles/getting-started-with-rabbitmq/">RabbitMQ by Compose</a>, and <a target="_blank" class="type_link" href="https://developer.ibm.com/messaging/message-hub/">IBM Message Hub</a>.
101+
By default this application outputs the events to the Terminal, but support is also available for <a target="_blank" class="type_link" href="https://www.compose.io/articles/get-started-with-redis-on-compose/">Redis by Compose</a>, <a target="_blank" class="type_link" href="https://www.compose.io/articles/getting-started-with-rabbitmq/">RabbitMQ by Compose</a>, and <a target="_blank" class="type_link" href="https://developer.ibm.com/messaging/message-hub/">IBM Message Hub</a>. The <a target="_blank" class="type_link" href="https://github.com/ibm-cds-labs/simple-logging-storage">Simple Logging Storage</a> micro service is available to assist with the downstream collection of data.
102102
</dd>
103103
<dt>
104104
<mark class="type_mark">Code</mark>
105105
</dt>
106106
<dd class="type_copy">
107107
Simple Logging Service is an open-source project published under the Apache-2.0 license. This means that it is free for you to use, copy or modify in any way. Feel free to download the <a href="https://github.com/ibm-cds-labs/simple-logging-service/" target="_blank" class="type_link">code on Github</a> and alter it to suit your own purposes. Contributions to this project are welcome: either raise an <a href="https://github.com/ibm-cds-labs/simple-logging-service/issues" class="type_link" target="_blank">Issue on Github</a> or if you fix or improve something, <a href="https://github.com/ibm-cds-labs/simple-logging-service#fork-destination-box" class="type_link" target="_blank">Fork the code</a>, alter it and send us a pull request.
108108
</dd>
109+
<dt>
110+
<mark class="type_mark">Service Discovery</mark>
111+
</dt>
112+
<dd class="type_copy">
113+
Simple Logging Service is one of a suite of example micro services that have been developed by the IBM Cloud Data Services team. It is possible to combine some of these services together to create a larger, distributed system using automated service discovery. The Simple Logging Service can be used to extend the <a target="_blank" class="type_link" href="https://github.com/ibm-cds-labs/simple-search-service">Simple Search Service</a> to allow for the logging of searches.
114+
</dd>
109115
</dl>
110116
</section>
111117
</script>

server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ app.get("/tracker", function (req, res) {
8686

8787
});
8888

89-
app.get("/output", function(request, response) {
89+
app.get("/", function(request, response) {
9090

9191
return response.sendFile(path.join(__dirname, 'public', 'output.html'));
9292

0 commit comments

Comments
 (0)