Last active
June 2, 2022 00:34
-
-
Save yunghoy/a425f91824d26461bb2e3653bc56ebbf to your computer and use it in GitHub Desktop.
Revisions
-
yunghoy revised this gist
Sep 7, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -27,7 +27,7 @@ async function main() { const channel = await conn.createChannel(); await channel.assertExchange(EXCHANGE_NAME, EXCHANGE_TYPE, EXCHANGE_OPTION); // await channel.bindExchange('exchange_name_another_one', EXCHANGE_NAME, '', {}); const q = await channel.assertQueue('', {exclusive: true}); -
yunghoy revised this gist
Sep 7, 2016 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,6 @@ alias babel-node='babel-node --presets stage-0' ------ RECV ------ // babel-node recv2.js "#" // babel-node recv2.js "kern.*" -
yunghoy revised this gist
Sep 7, 2016 . 1 changed file with 40 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ ------ RECV ------ // babel-node recv2.js "#" // babel-node recv2.js "kern.*" const amqp = require('amqplib'); @@ -39,4 +39,42 @@ async function main() { main(); ------ END OF RECV ------ ------ SEND ------ // babel-node send2.js "kern.critical" "A critical kernel error" const amqp = require('amqplib'); const args = process.argv.slice(2); const key = (args.length > 0) ? args[0] : 'anonymous.info'; const msg = args.slice(1).join(' ') || 'Hello World!'; const EXCHANGE_NAME = 'exchange_name'; const EXCHANGE_TYPE = 'x-recent-history'; const EXCHANGE_OPTION = { durable: true, autoDelete: true, arguments: { 'x-recent-history-length': 10 } }; async function main() { const conn = await amqp.connect('amqp://localhost'); const channel = await conn.createChannel(); await channel.assertExchange(EXCHANGE_NAME, EXCHANGE_TYPE, EXCHANGE_OPTION); channel.publish(EXCHANGE_NAME, key, new Buffer(msg)); console.log(" [x] Sent %s:'%s'", key, msg); setTimeout(() => { conn.close(); process.exit(0); }, 500); }; main(); ------ END OF SEND ------ -
yunghoy created this gist
Sep 7, 2016 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,42 @@ --- // babel-node recv2.js "#" // babel-node recv2.js "kern.*" const amqp = require('amqplib'); const args = process.argv.slice(2); if (args.length == 0) { console.log("Usage: receive_logs_topic.js <facility>.<severity>"); process.exit(1); } const EXCHANGE_NAME = 'exchange_name'; const EXCHANGE_TYPE = 'x-recent-history'; const EXCHANGE_OPTION = { durable: true, autoDelete: true, arguments: { 'x-recent-history-length': 10 } }; async function main() { const conn = await amqp.connect('amqp://localhost'); const channel = await conn.createChannel(); await channel.assertExchange(EXCHANGE_NAME, EXCHANGE_TYPE, EXCHANGE_OPTION); // ch.bindExchange('test', ex, '', {}); const q = await channel.assertQueue('', {exclusive: true}); console.log(' [*] Waiting for logs. To exit press CTRL+C'); args.forEach((key) => channel.bindQueue(q.queue, EXCHANGE_NAME, key)); channel.consume(q.queue, function(msg) { console.log(" [x] %s:'%s'", msg.fields.routingKey, msg.content.toString()); }, {noAck: true}); } main(); ---